style=wx.TE_MULTILINE | wx.TE_READONLY)
ok = wx.Button(self, wx.ID_OK, "OK")
+ ok.SetDefault()
lc = layoutf.Layoutf('t=t5#1;b=t5#2;l=l5#1;r=r5#1', (self,ok))
text.SetConstraints(lc)
- lc = layoutf.Layoutf('b=b5#1;x%w50#1;w!80;h!25', (self,))
+ lc = layoutf.Layoutf('b=b5#1;x%w50#1;w!80;h*', (self,))
ok.SetConstraints(lc)
self.SetAutoLayout(1)
self.Layout()
lst, wx.LB_MULTIPLE)
ok = wx.Button(self, wx.ID_OK, "OK")
+ ok.SetDefault()
cancel = wx.Button(self, wx.ID_CANCEL, "Cancel")
- lc = layoutf.Layoutf('t=t10#1;l=l5#1;r=r5#1;h!%d' % (height,), (self,))
- stat.SetConstraints(lc)
-
- lc = layoutf.Layoutf('t=b10#2;l=l5#1;r=r5#1;b=t5#3', (self, stat, ok))
- self.lbox.SetConstraints(lc)
-
- lc = layoutf.Layoutf('b=b5#1;x%w25#1;w!80;h!25', (self,))
- ok.SetConstraints(lc)
-
- lc = layoutf.Layoutf('b=b5#1;x%w75#1;w!80;h!25', (self,))
- cancel.SetConstraints(lc)
+
+ dlgsizer = wx.BoxSizer(wx.VERTICAL)
+ dlgsizer.Add(stat, 0, wx.ALL, 4)
+ dlgsizer.Add(self.lbox, 1, wx.EXPAND | wx.ALL, 4)
+
+ btnsizer = wx.StdDialogButtonSizer()
+ btnsizer.AddButton(ok)
+ btnsizer.AddButton(cancel)
+ btnsizer.Realize()
+
+ dlgsizer.Add(btnsizer, 0, wx.ALL | wx.ALIGN_RIGHT, 4)
+
+ self.SetSizer(dlgsizer)
self.SetAutoLayout(1)
self.lst = lst
## this dialog is always modal, while wxFindReplaceDialog is
## modeless and so doesn't lend itself to a function wrapper
def findDialog(parent=None, searchText='', wholeWordsOnly=0, caseSensitive=0):
- dlg = wx.Dialog(parent, -1, "Find", wx.DefaultPosition, (370, 120))
+ dlg = wx.Dialog(parent, -1, "Find", wx.DefaultPosition, (380, 120))
wx.StaticText(dlg, -1, 'Find what:', (7, 10))
- wSearchText = wx.TextCtrl(dlg, -1, searchText, (70, 7), (195, -1))
+ wSearchText = wx.TextCtrl(dlg, -1, searchText, (80, 7), (195, -1))
wSearchText.SetValue(searchText)
- wx.Button(dlg, wx.ID_OK, "Find Next", (280, 5), wx.DefaultSize).SetDefault()
- wx.Button(dlg, wx.ID_CANCEL, "Cancel", (280, 35), wx.DefaultSize)
+ wx.Button(dlg, wx.ID_OK, "Find Next", (285, 5), wx.DefaultSize).SetDefault()
+ wx.Button(dlg, wx.ID_CANCEL, "Cancel", (285, 35), wx.DefaultSize)
+
wWholeWord = wx.CheckBox(dlg, -1, 'Match whole word only',
(7, 35), wx.DefaultSize, wx.NO_BORDER)
wSearchText.SetFocus()
result = DialogResults(dlg.ShowModal())
- result.text = wSearchText.GetValue()
- result.wholeword = wWholeWord.GetValue()
- result.casesensitive = wCase.GetValue()
+ result.searchText = wSearchText.GetValue()
+ result.wholeWordsOnly = wWholeWord.GetValue()
+ result.caseSensitive = wCase.GetValue()
dlg.Destroy()
return result
fontData.SetInitialFont(wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT))
if font is not None:
- aFontData.SetInitialFont(font)
+ fontData.SetInitialFont(font)
dialog = wx.FontDialog(parent, fontData)
result = DialogResults(dialog.ShowModal())
def singleChoiceDialog(parent=None, message='', title='', lst=[],
style=wx.OK | wx.CANCEL | wx.CENTRE):
- dialog = wx.SingleChoiceDialog(parent, message, title, lst, style)
+ dialog = wx.SingleChoiceDialog(parent, message, title, list(lst), style | wx.DEFAULT_DIALOG_STYLE)
result = DialogResults(dialog.ShowModal())
result.selection = dialog.GetStringSelection()
dialog.Destroy()
class MyApp(wx.App):
def OnInit(self):
- self.frame = frame = wx.Frame(None, -1, "Dialogs", size=(400, 200))
+ self.frame = frame = wx.Frame(None, -1, "Dialogs", size=(400, 240))
panel = wx.Panel(frame, -1)
self.panel = panel