DoAppend(choices[i]);
}
- // call it after appending the strings to the listbox, otherwise it doesn't
- // work correctly
- SetBestSize( size );
-
m_parent->DoAddChild( this );
- PostCreation();
- InheritAttributes();
-
- Show( TRUE );
+ PostCreation(size);
+ SetBestSize(size); // need this too because this is a wxControlWithItems
return TRUE;
}
y += widget->allocation.y;
}
+
+// static
+wxVisualAttributes
+wxListBox::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
+{
+ return GetDefaultAttributesFromGTKWidget(gtk_list_new, true);
+}
+
#endif // wxUSE_LISTBOX