summaryrefslogtreecommitdiff
path: root/wx+/font_size.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
commit0887aee8c54d0ed51bb2031431e2bcdafebb4c6e (patch)
tree69537ceb9787bb25ac363cc4e6cdaf0804d78363 /wx+/font_size.h
parent5.12 (diff)
downloadFreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.gz
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.bz2
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.zip
5.13
Diffstat (limited to 'wx+/font_size.h')
-rw-r--r--wx+/font_size.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/wx+/font_size.h b/wx+/font_size.h
new file mode 100644
index 00000000..773be928
--- /dev/null
+++ b/wx+/font_size.h
@@ -0,0 +1,25 @@
+// **************************************************************************
+// * This file is part of the FreeFileSync project. It is distributed under *
+// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
+// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
+// **************************************************************************
+
+#ifndef FONT_SIZE_HEADER_23849632846734343234532
+#define FONT_SIZE_HEADER_23849632846734343234532
+
+#include <zen/basic_math.h>
+#include <wx/window.h>
+
+namespace zen
+{
+//set portable font size in multiples of the operating system's default font size
+inline
+void setRelativeFontSize(wxWindow& control, double factor)
+{
+ wxFont fnt = control.GetFont();
+ fnt.SetPointSize(numeric::round(wxNORMAL_FONT->GetPointSize() * factor));
+ control.SetFont(fnt);
+};
+}
+
+#endif //FONT_SIZE_HEADER_23849632846734343234532
bgstack15