]> git.saurik.com Git - wxWidgets.git/commitdiff
added wxUSE_COMBOBCONTROL and wxUSE_OWNERDRAWNCOMBOBOX to wx/setup.h files
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 9 May 2006 00:04:35 +0000 (00:04 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 9 May 2006 00:04:35 +0000 (00:04 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39119 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/setup_inc.h

index d85e3305116c8d04ea5c4359d2108069bbd8624c..1065d4359ba4f8d3b27aadb40d5732004cc187b8 100644 (file)
 // Recommended setting: 1 (it doesn't cost almost anything)
 #define wxUSE_MINIFRAME 1
 
+// wxComboControl and related classes: combobox with custom popup window and
+// not necessarily a listbox.
+//
+// Default is 1.
+//
+// Recommended setting: 1 but can be safely set to 0 except for wxUniv where it
+//                      it used by wxComboBox
+#define wxUSE_COMBOCONTROL 1
+
+// wxOwnerDrawnComboBox is a custom combobox allowing to paint the combobox
+// items.
+//
+// Default is 1.
+//
+// Recommended setting: 1 but can be safely set to 0
+#define wxUSE_OWNERDRAWNCOMBOBOX 1
+
 // ----------------------------------------------------------------------------
 // Miscellaneous GUI stuff
 // ----------------------------------------------------------------------------