git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38803
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
self.log = log
wx.Panel.__init__(self, parent, -1)
self.log = log
wx.Panel.__init__(self, parent, -1)
- sizer = wx.FlexGridSizer(0, 3, 4, 4)
+ sizer = wx.FlexGridSizer(0, 3, 2, 2)
box = wx.BoxSizer(wx.VERTICAL)
fs = self.GetFont().GetPointSize()
bf = wx.Font(fs+4, wx.SWISS, wx.NORMAL, wx.BOLD)
t = wx.StaticText(self, -1, "StandardPaths")
t.SetFont(bf)
box = wx.BoxSizer(wx.VERTICAL)
fs = self.GetFont().GetPointSize()
bf = wx.Font(fs+4, wx.SWISS, wx.NORMAL, wx.BOLD)
t = wx.StaticText(self, -1, "StandardPaths")
t.SetFont(bf)
- box.Add(t, 0, wx.CENTER|wx.ALL, 5)
+ box.Add(t, 0, wx.CENTER|wx.ALL, 4)
box.Add(wx.StaticLine(self, -1), 0, wx.EXPAND)
# get the global (singleton) instance of wx.StandardPaths
box.Add(wx.StaticLine(self, -1), 0, wx.EXPAND)
# get the global (singleton) instance of wx.StandardPaths
sizer.Add(wx.StaticText(self, -1, "%s%s:" %(name, repr(args))),
0, wx.ALIGN_RIGHT|wx.ALIGN_CENTER_VERTICAL)
sizer.Add(wx.TextCtrl(self, -1, func(*args),
sizer.Add(wx.StaticText(self, -1, "%s%s:" %(name, repr(args))),
0, wx.ALIGN_RIGHT|wx.ALIGN_CENTER_VERTICAL)
sizer.Add(wx.TextCtrl(self, -1, func(*args),
- size=(275,-1), style=wx.TE_READONLY))
+ size=(275,-1), style=wx.TE_READONLY),
+ 0, wx.ALIGN_RIGHT|wx.ALIGN_CENTER_VERTICAL)
btn = wx.Button(self, wx.ID_HELP)
sizer.Add(btn)
btn = wx.Button(self, wx.ID_HELP)
sizer.Add(btn)
'GetLocalDataDir',
'GetUserDataDir',
'GetUserLocalDataDir',
'GetLocalDataDir',
'GetUserDataDir',
'GetUserLocalDataDir',
'GetPluginsDir',
'GetInstallPrefix',
'GetResourcesDir',
'GetPluginsDir',
'GetInstallPrefix',
'GetResourcesDir',
wx.StandardPaths.ResourceCat_Messages )
self.Bind(wx.EVT_BUTTON, self.OnShowDoc, id=wx.ID_HELP)
wx.StandardPaths.ResourceCat_Messages )
self.Bind(wx.EVT_BUTTON, self.OnShowDoc, id=wx.ID_HELP)
- box.Add(sizer, 0, wx.CENTER|wx.ALL, 20)
+ box.Add(sizer, 0, wx.CENTER|wx.ALL, 10)
cleaner for wxPython as well, and allowed me to remove some ugly code
under the covers.
cleaner for wxPython as well, and allowed me to remove some ugly code
under the covers.
+Added wx.StandardPaths.GetDocumentsDir.
+
different under Unix for the message catalog category (namely the
standard prefix/share/locale/lang/LC_MESSAGES.)", "");
different under Unix for the message catalog category (namely the
standard prefix/share/locale/lang/LC_MESSAGES.)", "");
+ DocDeclStr(
+ virtual wxString , GetDocumentsDir() const,
+ "Return the Documents directory for the current user.
+
+C:\Documents and Settings\username\Documents under Windows,
+$HOME under Unix and ~/Documents under Mac", "");
+