summaryrefslogtreecommitdiff
path: root/wx+/rtl.h
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-11-20 08:36:44 -0500
committerB Stack <bgstack15@gmail.com>2019-11-20 08:36:44 -0500
commited50041589974d31296cb30dc1897f7fba6336c2 (patch)
treee2c5c7b1f98e64011b1ee8ca4e9bb9157510dfe7 /wx+/rtl.h
parentMerge branch '10.17' into 'master' (diff)
downloadFreeFileSync-ed50041589974d31296cb30dc1897f7fba6336c2.tar.gz
FreeFileSync-ed50041589974d31296cb30dc1897f7fba6336c2.tar.bz2
FreeFileSync-ed50041589974d31296cb30dc1897f7fba6336c2.zip
add upstream 10.18
Diffstat (limited to 'wx+/rtl.h')
-rw-r--r--wx+/rtl.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/wx+/rtl.h b/wx+/rtl.h
index 0cae9bac..0adb6037 100644
--- a/wx+/rtl.h
+++ b/wx+/rtl.h
@@ -20,6 +20,7 @@ void drawBitmapRtlNoMirror(wxDC& dc, const wxBitmap& bmp, const wxRect& rect, in
//wxDC::DrawIcon DOES mirror by default -> implement RTL support when needed
wxBitmap mirrorIfRtl(const wxBitmap& bmp);
+wxImage mirrorIfRtl(const wxImage& bmp);
//manual text flow correction: https://www.w3.org/International/articles/inline-bidi-markup/
@@ -93,6 +94,15 @@ void drawBitmapRtlNoMirror(wxDC& dc, const wxBitmap& bmp, const wxRect& rect, in
}
+inline
+wxImage mirrorIfRtl(const wxImage& bmp)
+{
+ if (wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft)
+ return bmp.Mirror();
+ else
+ return bmp;}
+
+
inline
wxBitmap mirrorIfRtl(const wxBitmap& bmp)
{
bgstack15