You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
374 B

  1. import wx
  2. def standard_layout(title, subtitle, widget):
  3. container = wx.BoxSizer(wx.VERTICAL)
  4. container.Add(title)
  5. container.AddSpacer(2)
  6. if subtitle:
  7. container.Add(subtitle, 1, wx.EXPAND)
  8. container.AddSpacer(2)
  9. else:
  10. container.AddStretchSpacer(1)
  11. container.Add(widget, 0, wx.EXPAND)
  12. return container