X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/19cc8ed9e1e5501e5181c61ac69cc5a1a9b5772b..6a9e7de98807c5aab7cbe087cf5d3a75c4aaeaf7:/wxPython/wx/lib/dialogs.py?ds=sidebyside diff --git a/wxPython/wx/lib/dialogs.py b/wxPython/wx/lib/dialogs.py index 6cf2f1e6d6..0800864987 100644 --- a/wxPython/wx/lib/dialogs.py +++ b/wxPython/wx/lib/dialogs.py @@ -38,10 +38,11 @@ class ScrolledMessageDialog(wx.Dialog): 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() @@ -66,20 +67,22 @@ class MultipleChoiceDialog(wx.Dialog): 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) - self.SetAutoLayout(1) + 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.lst = lst self.Layout()