]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wx/tools/XRCed/globals.py
2 # Purpose: XRC editor, global variables
3 # Author: Roman Rolinsky <rolinsky@mema.ucl.ac.be>
19 # Minimal wxWidgets version
20 MinWxVersion
= (2,6,0)
21 if wx
.VERSION
[:3] < MinWxVersion
:
23 ******************************* WARNING **************************************
24 This version of XRCed may not work correctly on your version of wxWidgets.
25 Please upgrade wxWidgets to %d.%d.%d or higher.
26 ******************************************************************************''' % MinWxVersion
28 # Can be changed to set other default encoding different
30 # you comment above and can uncomment this:
31 defaultEncoding
= wx
.GetDefaultPyEncoding()
48 testWinPos
= wx
.DefaultPosition
50 currentEncoding
= defaultEncoding
53 self
._sysFont
= wx
.SystemSettings
.GetFont(wx
.SYS_SYSTEM_FONT
)
54 self
._labelFont
= wx
.Font(self
._sysFont
.GetPointSize(), wx
.DEFAULT
, wx
.NORMAL
, wx
.BOLD
)
55 self
._modernFont
= wx
.Font(self
._sysFont
.GetPointSize(), wx
.MODERN
, wx
.NORMAL
, wx
.NORMAL
)
56 self
._smallerFont
= wx
.Font(self
._sysFont
.GetPointSize()-2, wx
.DEFAULT
, wx
.NORMAL
, wx
.NORMAL
)
59 if not hasattr(self
, "_sysFont"): self
._makeFonts
()
62 if not hasattr(self
, "_labelFont"): self
._makeFonts
()
63 return self
._labelFont
65 if not hasattr(self
, "_modernFont"): self
._makeFonts
()
66 return self
._modernFont
67 def smallerFont(self
):
68 if not hasattr(self
, "_smallerFont"): self
._makeFonts
()
69 return self
._smallerFont