+void MyTreeCtrl::CreateStateImageList(bool del)
+{
+ if ( del )
+ {
+ SetStateImageList(NULL);
+ return;
+ }
+
+ wxImageList *states;
+ wxBusyCursor wait;
+
+ if (m_alternateStates)
+ {
+ wxIcon icons[5];
+ icons[0] = wxIcon(state1_xpm); // yellow
+ icons[1] = wxIcon(state2_xpm); // green
+ icons[2] = wxIcon(state3_xpm); // red
+ icons[3] = wxIcon(state4_xpm); // blue
+ icons[4] = wxIcon(state5_xpm); // black
+
+ int width = icons[0].GetWidth(),
+ height = icons[0].GetHeight();
+
+ // Make an state image list containing small icons
+ states = new wxImageList(width, height, true);
+
+ for ( size_t i = 0; i < WXSIZEOF(icons); i++ )
+ states->Add(icons[i]);
+ }
+ else
+ {
+ wxIcon icons[2];
+ icons[0] = wxIcon(unchecked_xpm);
+ icons[1] = wxIcon(checked_xpm);
+
+ int width = icons[0].GetWidth(),
+ height = icons[0].GetHeight();
+
+ // Make an state image list containing small icons
+ states = new wxImageList(width, height, true);
+
+ for ( size_t i = 0; i < WXSIZEOF(icons); i++ )
+ states->Add(icons[i]);
+ }
+
+ AssignStateImageList(states);
+}
+