_treeList = [
- ('New since last release', ['ColourSelect', 'ImageBrowser',
+ ('New since last release', ['ColourSelect', 'ImageBrowser', 'infoframe',
+ 'ColourDB', 'wxToggleButton',
]),
('Managed Windows', ['wxFrame', 'wxDialog', 'wxMiniFrame']),
'wxComboBox', 'wxGauge', 'wxListBox', 'wxListCtrl', 'wxTextCtrl',
'wxTreeCtrl', 'wxSpinButton', 'wxSpinCtrl', 'wxStaticText',
'wxStaticBitmap', 'wxRadioBox', 'wxSlider', 'wxToolBar',
- 'wxCalendarCtrl',
+ 'wxCalendarCtrl', 'wxToggleButton',
]),
('Window Layout', ['wxLayoutConstraints', 'LayoutAnchors', 'Sizers', ]),
self.cwd = os.getcwd()
self.curOverview = ""
- icon = wxIconFromXPMData(images.getMondrianData())
+ if 1:
+ icon = wxIconFromXPMData(images.getMondrianData())
+ else:
+ # another way to do it
+ bmp = images.getMondrianBitmap()
+ icon = wxEmptyIcon()
+ icon.CopyFromBitmap(bmp)
+
self.SetIcon(icon)
if wxPlatform == '__WXMSW__':