X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a6794ed8e99b58b6bfa736e63aa80cfa68ac3034..26ee65c723cf55822c540506f064ec11d9b26858:/wxPython/src/combo.i diff --git a/wxPython/src/combo.i b/wxPython/src/combo.i index d14a2487ce..33c70d7387 100644 --- a/wxPython/src/combo.i +++ b/wxPython/src/combo.i @@ -49,6 +49,13 @@ enum { wxCC_POPUP_ON_MOUSE_UP = 0x0002, // All text is not automatically selected on click wxCC_NO_TEXT_AUTO_SELECT = 0x0004, + // Drop-button stays down as long as popup is displayed. + wxCC_BUTTON_STAYS_DOWN = 0x0008, + // Drop-button covers the entire control. + wxCC_FULL_BUTTON = 0x0010, + // Drop-button goes over the custom-border (used under WinVista). + wxCC_BUTTON_COVERS_BORDER = 0x0020, + };