X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f27895d28959ea2d8ddf4c2c5b5ad3958bcaadb4..cc8ce392c535b7a614337e3bdba04b670e2e34d0:/wxPython/src/mac/combo.py diff --git a/wxPython/src/mac/combo.py b/wxPython/src/mac/combo.py index 7191c102ed..17854ae6d5 100644 --- a/wxPython/src/mac/combo.py +++ b/wxPython/src/mac/combo.py @@ -2,7 +2,7 @@ # Don't modify this file, modify the SWIG interface instead. """ -ComboCtrl class that can have any type ofconst wxBitmap& bitmap, popup widget, and also an +ComboCtrl class that can have any type of popup widget, and also an owner-drawn combobox control. """ @@ -65,6 +65,9 @@ __docfilter__ = wx.__DocFilter(globals()) CC_BUTTON_OUTSIDE_BORDER = _combo.CC_BUTTON_OUTSIDE_BORDER CC_POPUP_ON_MOUSE_UP = _combo.CC_POPUP_ON_MOUSE_UP CC_NO_TEXT_AUTO_SELECT = _combo.CC_NO_TEXT_AUTO_SELECT +CC_BUTTON_STAYS_DOWN = _combo.CC_BUTTON_STAYS_DOWN +CC_FULL_BUTTON = _combo.CC_FULL_BUTTON +CC_BUTTON_COVERS_BORDER = _combo.CC_BUTTON_COVERS_BORDER CC_MF_ON_BUTTON = _combo.CC_MF_ON_BUTTON CC_MF_ON_CLICK_AREA = _combo.CC_MF_ON_CLICK_AREA class ComboCtrlFeatures(object): @@ -958,7 +961,7 @@ class BitmapComboBox(OwnerDrawnComboBox): def GetItemBitmap(*args, **kwargs): """ - GetItemBitmap(self, unsigned int n) -> Bitmap + GetItemBitmap(self, int n) -> Bitmap Returns the image of the item with the given index. """ @@ -966,7 +969,7 @@ class BitmapComboBox(OwnerDrawnComboBox): def Insert(*args, **kwargs): """ - Insert(self, String item, Bitmap bitmap, unsigned int pos, PyObject clientData=None) -> int + Insert(self, String item, Bitmap bitmap, int pos, PyObject clientData=None) -> int Insert an item into the control before the item at the ``pos`` index, optionally associating some data object with the item. @@ -975,7 +978,7 @@ class BitmapComboBox(OwnerDrawnComboBox): def SetItemBitmap(*args, **kwargs): """ - SetItemBitmap(self, unsigned int n, Bitmap bitmap) + SetItemBitmap(self, int n, Bitmap bitmap) Sets the image for the given item. """