API reference - Class QComboBoxNotation used in Ruby API documentation Description: Binding of QComboBox Class hierarchy: QComboBox » QWidget » QObject Sub-classes: InsertPolicy, SizeAdjustPolicy
Public constructors
Public methods
Public static methods and constants
Protected methods (static, non-static and constructors)
Deprecated methods (protected, public, static, non-static and constructors)
Detailed description[static,const] new QComboBox_SizeAdjustPolicy ptr AdjustToContentsDescription: Enum constant QComboBox::AdjustToContents [static,const] new QComboBox_SizeAdjustPolicy ptr AdjustToContentsOnFirstShowDescription: Enum constant QComboBox::AdjustToContentsOnFirstShow [static,const] new QComboBox_SizeAdjustPolicy ptr AdjustToMinimumContentsLengthDescription: Enum constant QComboBox::AdjustToMinimumContentsLength [static,const] new QComboBox_SizeAdjustPolicy ptr AdjustToMinimumContentsLengthWithIconDescription: Enum constant QComboBox::AdjustToMinimumContentsLengthWithIcon [static,const] new QComboBox_InsertPolicy ptr InsertAfterCurrentDescription: Enum constant QComboBox::InsertAfterCurrent [static,const] new QComboBox_InsertPolicy ptr InsertAlphabeticallyDescription: Enum constant QComboBox::InsertAlphabetically [static,const] new QComboBox_InsertPolicy ptr InsertAtBottomDescription: Enum constant QComboBox::InsertAtBottom [static,const] new QComboBox_InsertPolicy ptr InsertAtCurrentDescription: Enum constant QComboBox::InsertAtCurrent [static,const] new QComboBox_InsertPolicy ptr InsertAtTopDescription: Enum constant QComboBox::InsertAtTop [static,const] new QComboBox_InsertPolicy ptr InsertBeforeCurrentDescription: Enum constant QComboBox::InsertBeforeCurrent [static,const] new QComboBox_InsertPolicy ptr NoInsertDescription: Enum constant QComboBox::NoInsert void _createDescription: Ensures the C++ object is created Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. void _destroyDescription: Explicitly destroys the object Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. If the object is not owned by the script, this method will do nothing. [const] bool _destroyed?Description: Returns a value indicating whether the object was already destroyed This method returns true, if the object was destroyed, either explicitly or by the C++ side. The latter may happen, if the object is owned by a C++ object which got destroyed itself. [const] bool _is_const_object?Description: Returns a value indicating whether the reference is a const reference This method returns true, if self is a const reference. In that case, only const methods may be called on self. void _manageDescription: Marks the object as managed by the script side. After calling this method on an object, the script side will be responsible for the management of the object. This method may be called if an object is returned from a C++ function and the object is known not to be owned by any C++ instance. If necessary, the script side may delete the object if the script's reference is no longer required. Usually it's not required to call this method. It has been introduced in version 0.24. void _unmanageDescription: Marks the object as no longer owned by the script side. Calling this method will make this object no longer owned by the script's memory management. Instead, the object must be managed in some other way. Usually this method may be called if it is known that some C++ object holds and manages this object. Technically speaking, this method will turn the script's reference into a weak reference. After the script engine decides to delete the reference, the object itself will still exist. If the object is not managed otherwise, memory leaks will occur. Usually it's not required to call this method. It has been introduced in version 0.24. [virtual] void actionEvent(QActionEvent ptr arg1)Description: Virtual method void QComboBox::actionEvent(QActionEvent *) This method can be reimplemented in a derived class. [event] void activated(int index)Description: Signal declaration for QComboBox::activated(int index) You can bind a procedure to this signal. [event] void activated_qs(string arg1)Description: Signal declaration for QComboBox::activated(const QString &) You can bind a procedure to this signal. void addItem(string text,const QVariant userData = QVariant())Description: Method void QComboBox::addItem(const QString &text, const QVariant &userData) void addItem(const QIcon icon,string text,const QVariant userData = QVariant())Description: Method void QComboBox::addItem(const QIcon &icon, const QString &text, const QVariant &userData) void addItems(string[] texts)Description: Method void QComboBox::addItems(const QStringList &texts) [const] bool autoCompletionDescription: Method bool QComboBox::autoCompletion() Python specific notes:The object exposes a readable attribute 'autoCompletion'. This is the getter. void autoCompletion=(bool enable)Description: Method void QComboBox::setAutoCompletion(bool enable) Python specific notes:The object exposes a writable attribute 'autoCompletion'. This is the setter. [const] Qt_CaseSensitivity autoCompletionCaseSensitivityDescription: Method Qt::CaseSensitivity QComboBox::autoCompletionCaseSensitivity() Python specific notes:The object exposes a readable attribute 'autoCompletionCaseSensitivity'. This is the getter. void autoCompletionCaseSensitivity=(const Qt_CaseSensitivity sensitivity)Description: Method void QComboBox::setAutoCompletionCaseSensitivity(Qt::CaseSensitivity sensitivity) Python specific notes:The object exposes a writable attribute 'autoCompletionCaseSensitivity'. This is the setter. [virtual] void changeEvent(QEvent ptr e)Description: Virtual method void QComboBox::changeEvent(QEvent *e) This method can be reimplemented in a derived class. [virtual] void childEvent(QChildEvent ptr arg1)Description: Virtual method void QComboBox::childEvent(QChildEvent *) This method can be reimplemented in a derived class. void clearDescription: Method void QComboBox::clear() void clearEditTextDescription: Method void QComboBox::clearEditText() [virtual] void closeEvent(QCloseEvent ptr arg1)Description: Virtual method void QComboBox::closeEvent(QCloseEvent *) This method can be reimplemented in a derived class. [const] QCompleter ptr completerDescription: Method QCompleter *QComboBox::completer() Python specific notes:The object exposes a readable attribute 'completer'. This is the getter. void completer=(QCompleter ptr c)Description: Method void QComboBox::setCompleter(QCompleter *c) Python specific notes:The object exposes a writable attribute 'completer'. This is the setter. [virtual] void contextMenuEvent(QContextMenuEvent ptr e)Description: Virtual method void QComboBox::contextMenuEvent(QContextMenuEvent *e) This method can be reimplemented in a derived class. [const] int countDescription: Method int QComboBox::count() Python specific notes:The object exposes a readable attribute 'count'. This is the getter. void createDescription: Ensures the C++ object is created Use of this method is deprecated. Use _create instead [const] int currentIndexDescription: Method int QComboBox::currentIndex() Python specific notes:The object exposes a readable attribute 'currentIndex'. This is the getter. void currentIndex=(int index)Description: Method void QComboBox::setCurrentIndex(int index) Python specific notes:The object exposes a writable attribute 'currentIndex'. This is the setter. [event] void currentIndexChanged(int index)Description: Signal declaration for QComboBox::currentIndexChanged(int index) You can bind a procedure to this signal. [event] void currentIndexChanged_qs(string arg1)Description: Signal declaration for QComboBox::currentIndexChanged(const QString &) You can bind a procedure to this signal. [const] string currentTextDescription: Method QString QComboBox::currentText() Python specific notes:The object exposes a readable attribute 'currentText'. This is the getter. [event] void customContextMenuRequested(const QPoint pos)Description: Signal declaration for QComboBox::customContextMenuRequested(const QPoint &pos) You can bind a procedure to this signal. [virtual] void customEvent(QEvent ptr arg1)Description: Virtual method void QComboBox::customEvent(QEvent *) This method can be reimplemented in a derived class. void destroyDescription: Explicitly destroys the object Use of this method is deprecated. Use _destroy instead [event] void destroyed(QObject ptr arg1)Description: Signal declaration for QComboBox::destroyed(QObject *) You can bind a procedure to this signal. [const] bool destroyed?Description: Returns a value indicating whether the object was already destroyed Use of this method is deprecated. Use _destroyed? instead [virtual] void disconnectNotify(string signal)Description: Virtual method void QComboBox::disconnectNotify(const char *signal) This method can be reimplemented in a derived class. [virtual] void dragEnterEvent(QDragEnterEvent ptr arg1)Description: Virtual method void QComboBox::dragEnterEvent(QDragEnterEvent *) This method can be reimplemented in a derived class. [virtual] void dragLeaveEvent(QDragLeaveEvent ptr arg1)Description: Virtual method void QComboBox::dragLeaveEvent(QDragLeaveEvent *) This method can be reimplemented in a derived class. [virtual] void dragMoveEvent(QDragMoveEvent ptr arg1)Description: Virtual method void QComboBox::dragMoveEvent(QDragMoveEvent *) This method can be reimplemented in a derived class. [virtual] void dropEvent(QDropEvent ptr arg1)Description: Virtual method void QComboBox::dropEvent(QDropEvent *) This method can be reimplemented in a derived class. [const] bool duplicatesEnabledDescription: Method bool QComboBox::duplicatesEnabled() Python specific notes:The object exposes a readable attribute 'duplicatesEnabled'. This is the getter. void duplicatesEnabled=(bool enable)Description: Method void QComboBox::setDuplicatesEnabled(bool enable) Python specific notes:The object exposes a writable attribute 'duplicatesEnabled'. This is the setter. [event] void editTextChanged(string arg1)Description: Signal declaration for QComboBox::editTextChanged(const QString &) You can bind a procedure to this signal. [const] bool editableDescription: Method bool QComboBox::isEditable() Python specific notes:The object exposes a readable attribute 'editable'. This is the getter. void editable=(bool editable)Description: Method void QComboBox::setEditable(bool editable) Python specific notes:The object exposes a writable attribute 'editable'. This is the setter. [virtual] void enabledChange(bool arg1)Description: Virtual method void QComboBox::enabledChange(bool) This method can be reimplemented in a derived class. [virtual] void enterEvent(QEvent ptr arg1)Description: Virtual method void QComboBox::enterEvent(QEvent *) This method can be reimplemented in a derived class. [virtual] bool event(QEvent ptr event)Description: Virtual method bool QComboBox::event(QEvent *event) This method can be reimplemented in a derived class. [virtual] bool eventFilter(QObject ptr arg1,QEvent ptr arg2)Description: Virtual method bool QComboBox::eventFilter(QObject *, QEvent *) This method can be reimplemented in a derived class. [const] int findData(const QVariant data,int role = Qt::UserRole,const Qt_QFlags_MatchFlag flags = Qt::MatchExactly|Qt::MatchCaseSensitive)Description: Method int QComboBox::findData(const QVariant &data, int role, QFlags<Qt::MatchFlag> flags) [const] int findText(string text,const Qt_QFlags_MatchFlag flags = Qt::MatchExactly|Qt::MatchCaseSensitive)Description: Method int QComboBox::findText(const QString &text, QFlags<Qt::MatchFlag> flags) [virtual] void focusInEvent(QFocusEvent ptr e)Description: Virtual method void QComboBox::focusInEvent(QFocusEvent *e) This method can be reimplemented in a derived class. bool focusNextChildDescription: Method bool QComboBox::focusNextChild() This method is protected and can only be called from inside a derived class. [virtual] bool focusNextPrevChild(bool next)Description: Virtual method bool QComboBox::focusNextPrevChild(bool next) This method can be reimplemented in a derived class. [virtual] void focusOutEvent(QFocusEvent ptr e)Description: Virtual method void QComboBox::focusOutEvent(QFocusEvent *e) This method can be reimplemented in a derived class. bool focusPreviousChildDescription: Method bool QComboBox::focusPreviousChild() This method is protected and can only be called from inside a derived class. [virtual] void fontChange(const QFont arg1)Description: Virtual method void QComboBox::fontChange(const QFont &) This method can be reimplemented in a derived class. [const] bool frameDescription: Method bool QComboBox::hasFrame() Python specific notes:The object exposes a readable attribute 'frame'. This is the getter. void frame=(bool arg1)Description: Method void QComboBox::setFrame(bool) Python specific notes:The object exposes a writable attribute 'frame'. This is the setter. [const] bool hasFrameDescription: Method bool QComboBox::hasFrame() Python specific notes:The object exposes a readable attribute 'frame'. This is the getter. [virtual,const] int heightForWidth(int arg1)Description: Virtual method int QComboBox::heightForWidth(int) This method can be reimplemented in a derived class. [virtual] void hideEvent(QHideEvent ptr e)Description: Virtual method void QComboBox::hideEvent(QHideEvent *e) This method can be reimplemented in a derived class. [virtual] void hidePopupDescription: Virtual method void QComboBox::hidePopup() This method can be reimplemented in a derived class. [event] void highlighted(int index)Description: Signal declaration for QComboBox::highlighted(int index) You can bind a procedure to this signal. [event] void highlighted_qs(string arg1)Description: Signal declaration for QComboBox::highlighted(const QString &) You can bind a procedure to this signal. [const] QSize iconSizeDescription: Method QSize QComboBox::iconSize() Python specific notes:The object exposes a readable attribute 'iconSize'. This is the getter. void iconSize=(const QSize size)Description: Method void QComboBox::setIconSize(const QSize &size) Python specific notes:The object exposes a writable attribute 'iconSize'. This is the setter. [const] void initStyleOption(QStyleOptionComboBox ptr option)Description: Method void QComboBox::initStyleOption(QStyleOptionComboBox *option) This method is protected and can only be called from inside a derived class. [virtual] void inputMethodEvent(QInputMethodEvent ptr arg1)Description: Virtual method void QComboBox::inputMethodEvent(QInputMethodEvent *) This method can be reimplemented in a derived class. [virtual,const] QVariant inputMethodQuery(const Qt_InputMethodQuery arg1)Description: Virtual method QVariant QComboBox::inputMethodQuery(Qt::InputMethodQuery) This method can be reimplemented in a derived class. void insertItem(int index,string text,const QVariant userData = QVariant())Description: Method void QComboBox::insertItem(int index, const QString &text, const QVariant &userData) void insertItem(int index,const QIcon icon,string text,const QVariant userData = QVariant())Description: Method void QComboBox::insertItem(int index, const QIcon &icon, const QString &text, const QVariant &userData) void insertItems(int index,string[] texts)Description: Method void QComboBox::insertItems(int index, const QStringList &texts) [const] QComboBox_InsertPolicy insertPolicyDescription: Method QComboBox::InsertPolicy QComboBox::insertPolicy() Python specific notes:The object exposes a readable attribute 'insertPolicy'. This is the getter. void insertPolicy=(const QComboBox_InsertPolicy policy)Description: Method void QComboBox::setInsertPolicy(QComboBox::InsertPolicy policy) Python specific notes:The object exposes a writable attribute 'insertPolicy'. This is the setter. void insertSeparator(int index)Description: Method void QComboBox::insertSeparator(int index) [const] bool isEditable?Description: Method bool QComboBox::isEditable() Python specific notes:The object exposes a readable attribute 'editable'. This is the getter. [const] bool is_const_object?Description: Returns a value indicating whether the reference is a const reference Use of this method is deprecated. Use _is_const_object? instead [const] QVariant itemData(int index,int role = Qt::UserRole)Description: Method QVariant QComboBox::itemData(int index, int role) [const] QAbstractItemDelegate ptr itemDelegateDescription: Method QAbstractItemDelegate *QComboBox::itemDelegate() Python specific notes:The object exposes a readable attribute 'itemDelegate'. This is the getter. void itemDelegate=(QAbstractItemDelegate ptr delegate)Description: Method void QComboBox::setItemDelegate(QAbstractItemDelegate *delegate) Python specific notes:The object exposes a writable attribute 'itemDelegate'. This is the setter. [const] QIcon itemIcon(int index)Description: Method QIcon QComboBox::itemIcon(int index) [const] string itemText(int index)Description: Method QString QComboBox::itemText(int index) [virtual] void keyPressEvent(QKeyEvent ptr e)Description: Virtual method void QComboBox::keyPressEvent(QKeyEvent *e) This method can be reimplemented in a derived class. [virtual] void keyReleaseEvent(QKeyEvent ptr e)Description: Virtual method void QComboBox::keyReleaseEvent(QKeyEvent *e) This method can be reimplemented in a derived class. [virtual] void languageChangeDescription: Virtual method void QComboBox::languageChange() This method can be reimplemented in a derived class. [virtual] void leaveEvent(QEvent ptr arg1)Description: Virtual method void QComboBox::leaveEvent(QEvent *) This method can be reimplemented in a derived class. [const] QLineEdit ptr lineEditDescription: Method QLineEdit *QComboBox::lineEdit() Python specific notes:The object exposes a readable attribute 'lineEdit'. This is the getter. void lineEdit=(QLineEdit ptr edit)Description: Method void QComboBox::setLineEdit(QLineEdit *edit) Python specific notes:The object exposes a writable attribute 'lineEdit'. This is the setter. [const] int maxCountDescription: Method int QComboBox::maxCount() Python specific notes:The object exposes a readable attribute 'maxCount'. This is the getter. void maxCount=(int max)Description: Method void QComboBox::setMaxCount(int max) Python specific notes:The object exposes a writable attribute 'maxCount'. This is the setter. [const] int maxVisibleItemsDescription: Method int QComboBox::maxVisibleItems() Python specific notes:The object exposes a readable attribute 'maxVisibleItems'. This is the getter. void maxVisibleItems=(int maxItems)Description: Method void QComboBox::setMaxVisibleItems(int maxItems) Python specific notes:The object exposes a writable attribute 'maxVisibleItems'. This is the setter. [virtual,const] int metric(const QPaintDevice_PaintDeviceMetric arg1)Description: Virtual method int QComboBox::metric(QPaintDevice::PaintDeviceMetric) This method can be reimplemented in a derived class. [const] int minimumContentsLengthDescription: Method int QComboBox::minimumContentsLength() Python specific notes:The object exposes a readable attribute 'minimumContentsLength'. This is the getter. void minimumContentsLength=(int characters)Description: Method void QComboBox::setMinimumContentsLength(int characters) Python specific notes:The object exposes a writable attribute 'minimumContentsLength'. This is the setter. [virtual,const] QSize minimumSizeHintDescription: Virtual method QSize QComboBox::minimumSizeHint() This method can be reimplemented in a derived class. [const] QAbstractItemModel ptr modelDescription: Method QAbstractItemModel *QComboBox::model() Python specific notes:The object exposes a readable attribute 'model'. This is the getter. void model=(QAbstractItemModel ptr model)Description: Method void QComboBox::setModel(QAbstractItemModel *model) Python specific notes:The object exposes a writable attribute 'model'. This is the setter. [const] int modelColumnDescription: Method int QComboBox::modelColumn() Python specific notes:The object exposes a readable attribute 'modelColumn'. This is the getter. void modelColumn=(int visibleColumn)Description: Method void QComboBox::setModelColumn(int visibleColumn) Python specific notes:The object exposes a writable attribute 'modelColumn'. This is the setter. [virtual] void mouseDoubleClickEvent(QMouseEvent ptr arg1)Description: Virtual method void QComboBox::mouseDoubleClickEvent(QMouseEvent *) This method can be reimplemented in a derived class. [virtual] void mouseMoveEvent(QMouseEvent ptr arg1)Description: Virtual method void QComboBox::mouseMoveEvent(QMouseEvent *) This method can be reimplemented in a derived class. [virtual] void mousePressEvent(QMouseEvent ptr e)Description: Virtual method void QComboBox::mousePressEvent(QMouseEvent *e) This method can be reimplemented in a derived class. [virtual] void mouseReleaseEvent(QMouseEvent ptr e)Description: Virtual method void QComboBox::mouseReleaseEvent(QMouseEvent *e) This method can be reimplemented in a derived class. [virtual] void moveEvent(QMoveEvent ptr arg1)Description: Virtual method void QComboBox::moveEvent(QMoveEvent *) This method can be reimplemented in a derived class. [static] new QComboBox new(QWidget ptr parent = 0)Description: Constructor QComboBox::QComboBox(QWidget *parent) This method creates an object of class QComboBox. Python specific notes:This method is the default initializer of the object [virtual,const] QPaintEngine ptr paintEngineDescription: Virtual method QPaintEngine *QComboBox::paintEngine() This method can be reimplemented in a derived class. [virtual] void paintEvent(QPaintEvent ptr e)Description: Virtual method void QComboBox::paintEvent(QPaintEvent *e) This method can be reimplemented in a derived class. [virtual] void paletteChange(const QPalette arg1)Description: Virtual method void QComboBox::paletteChange(const QPalette &) This method can be reimplemented in a derived class. void qt_create(unsigned long arg1 = 0,bool initializeWindow = true,bool destroyOldWindow = true)Description: Method void QComboBox::create(WId, bool initializeWindow, bool destroyOldWindow) This method is protected and can only be called from inside a derived class. void qt_destroy(bool destroyWindow = true,bool destroySubWindows = true)Description: Method void QComboBox::destroy(bool destroyWindow, bool destroySubWindows) This method is protected and can only be called from inside a derived class. [const] int receivers(string signal)Description: Method int QComboBox::receivers(const char *signal) This method is protected and can only be called from inside a derived class. void removeItem(int index)Description: Method void QComboBox::removeItem(int index) void resetInputContextDescription: Method void QComboBox::resetInputContext() This method is protected and can only be called from inside a derived class. [virtual] void resizeEvent(QResizeEvent ptr e)Description: Virtual method void QComboBox::resizeEvent(QResizeEvent *e) This method can be reimplemented in a derived class. [const] QModelIndex rootModelIndexDescription: Method QModelIndex QComboBox::rootModelIndex() Python specific notes:The object exposes a readable attribute 'rootModelIndex'. This is the getter. void rootModelIndex=(const QModelIndex index)Description: Method void QComboBox::setRootModelIndex(const QModelIndex &index) Python specific notes:The object exposes a writable attribute 'rootModelIndex'. This is the setter. [const] QObject ptr senderDescription: Method QObject *QComboBox::sender() This method is protected and can only be called from inside a derived class. void setAutoCompletion(bool enable)Description: Method void QComboBox::setAutoCompletion(bool enable) Python specific notes:The object exposes a writable attribute 'autoCompletion'. This is the setter. void setAutoCompletionCaseSensitivity(const Qt_CaseSensitivity sensitivity)Description: Method void QComboBox::setAutoCompletionCaseSensitivity(Qt::CaseSensitivity sensitivity) Python specific notes:The object exposes a writable attribute 'autoCompletionCaseSensitivity'. This is the setter. void setCompleter(QCompleter ptr c)Description: Method void QComboBox::setCompleter(QCompleter *c) Python specific notes:The object exposes a writable attribute 'completer'. This is the setter. void setCurrentIndex(int index)Description: Method void QComboBox::setCurrentIndex(int index) Python specific notes:The object exposes a writable attribute 'currentIndex'. This is the setter. void setDuplicatesEnabled(bool enable)Description: Method void QComboBox::setDuplicatesEnabled(bool enable) Python specific notes:The object exposes a writable attribute 'duplicatesEnabled'. This is the setter. void setEditText(string text)Description: Method void QComboBox::setEditText(const QString &text) void setEditable(bool editable)Description: Method void QComboBox::setEditable(bool editable) Python specific notes:The object exposes a writable attribute 'editable'. This is the setter. void setFrame(bool arg1)Description: Method void QComboBox::setFrame(bool) Python specific notes:The object exposes a writable attribute 'frame'. This is the setter. void setIconSize(const QSize size)Description: Method void QComboBox::setIconSize(const QSize &size) Python specific notes:The object exposes a writable attribute 'iconSize'. This is the setter. void setInsertPolicy(const QComboBox_InsertPolicy policy)Description: Method void QComboBox::setInsertPolicy(QComboBox::InsertPolicy policy) Python specific notes:The object exposes a writable attribute 'insertPolicy'. This is the setter. void setItemData(int index,const QVariant value,int role = Qt::UserRole)Description: Method void QComboBox::setItemData(int index, const QVariant &value, int role) void setItemDelegate(QAbstractItemDelegate ptr delegate)Description: Method void QComboBox::setItemDelegate(QAbstractItemDelegate *delegate) Python specific notes:The object exposes a writable attribute 'itemDelegate'. This is the setter. void setItemIcon(int index,const QIcon icon)Description: Method void QComboBox::setItemIcon(int index, const QIcon &icon) void setItemText(int index,string text)Description: Method void QComboBox::setItemText(int index, const QString &text) void setLineEdit(QLineEdit ptr edit)Description: Method void QComboBox::setLineEdit(QLineEdit *edit) Python specific notes:The object exposes a writable attribute 'lineEdit'. This is the setter. void setMaxCount(int max)Description: Method void QComboBox::setMaxCount(int max) Python specific notes:The object exposes a writable attribute 'maxCount'. This is the setter. void setMaxVisibleItems(int maxItems)Description: Method void QComboBox::setMaxVisibleItems(int maxItems) Python specific notes:The object exposes a writable attribute 'maxVisibleItems'. This is the setter. void setMinimumContentsLength(int characters)Description: Method void QComboBox::setMinimumContentsLength(int characters) Python specific notes:The object exposes a writable attribute 'minimumContentsLength'. This is the setter. void setModel(QAbstractItemModel ptr model)Description: Method void QComboBox::setModel(QAbstractItemModel *model) Python specific notes:The object exposes a writable attribute 'model'. This is the setter. void setModelColumn(int visibleColumn)Description: Method void QComboBox::setModelColumn(int visibleColumn) Python specific notes:The object exposes a writable attribute 'modelColumn'. This is the setter. void setRootModelIndex(const QModelIndex index)Description: Method void QComboBox::setRootModelIndex(const QModelIndex &index) Python specific notes:The object exposes a writable attribute 'rootModelIndex'. This is the setter. void setSizeAdjustPolicy(const QComboBox_SizeAdjustPolicy policy)Description: Method void QComboBox::setSizeAdjustPolicy(QComboBox::SizeAdjustPolicy policy) Python specific notes:The object exposes a writable attribute 'sizeAdjustPolicy'. This is the setter. void setValidator(const QValidator ptr v)Description: Method void QComboBox::setValidator(const QValidator *v) Python specific notes:The object exposes a writable attribute 'validator'. This is the setter. void setView(QAbstractItemView ptr itemView)Description: Method void QComboBox::setView(QAbstractItemView *itemView) Python specific notes:The object exposes a writable attribute 'view'. This is the setter. [virtual] void setVisible(bool visible)Description: Virtual method void QComboBox::setVisible(bool visible) This method can be reimplemented in a derived class. [virtual] void showEvent(QShowEvent ptr e)Description: Virtual method void QComboBox::showEvent(QShowEvent *e) This method can be reimplemented in a derived class. [virtual] void showPopupDescription: Virtual method void QComboBox::showPopup() This method can be reimplemented in a derived class. [const] QComboBox_SizeAdjustPolicy sizeAdjustPolicyDescription: Method QComboBox::SizeAdjustPolicy QComboBox::sizeAdjustPolicy() Python specific notes:The object exposes a readable attribute 'sizeAdjustPolicy'. This is the getter. void sizeAdjustPolicy=(const QComboBox_SizeAdjustPolicy policy)Description: Method void QComboBox::setSizeAdjustPolicy(QComboBox::SizeAdjustPolicy policy) Python specific notes:The object exposes a writable attribute 'sizeAdjustPolicy'. This is the setter. [virtual,const] QSize sizeHintDescription: Virtual method QSize QComboBox::sizeHint() This method can be reimplemented in a derived class. [static] QMetaObject staticMetaObjectDescription: Obtains the static MetaObject for this class. [virtual] void styleChange(QStyle arg1)Description: Virtual method void QComboBox::styleChange(QStyle &) This method can be reimplemented in a derived class. [virtual] void tabletEvent(QTabletEvent ptr arg1)Description: Virtual method void QComboBox::tabletEvent(QTabletEvent *) This method can be reimplemented in a derived class. [virtual] void timerEvent(QTimerEvent ptr arg1)Description: Virtual method void QComboBox::timerEvent(QTimerEvent *) This method can be reimplemented in a derived class. [static] string tr(string s,string c = 0)Description: Static method QString QComboBox::tr(const char *s, const char *c) This method is static and can be called without an instance. [static] string tr(string s,string c,int n)Description: Static method QString QComboBox::tr(const char *s, const char *c, int n) This method is static and can be called without an instance. [static] string trUtf8(string s,string c = 0)Description: Static method QString QComboBox::trUtf8(const char *s, const char *c) This method is static and can be called without an instance. [static] string trUtf8(string s,string c,int n)Description: Static method QString QComboBox::trUtf8(const char *s, const char *c, int n) This method is static and can be called without an instance. void updateMicroFocusDescription: Method void QComboBox::updateMicroFocus() This method is protected and can only be called from inside a derived class. [const] const QValidator ptr validatorDescription: Method const QValidator *QComboBox::validator() Python specific notes:The object exposes a readable attribute 'validator'. This is the getter. void validator=(const QValidator ptr v)Description: Method void QComboBox::setValidator(const QValidator *v) Python specific notes:The object exposes a writable attribute 'validator'. This is the setter. [const] QAbstractItemView ptr viewDescription: Method QAbstractItemView *QComboBox::view() Python specific notes:The object exposes a readable attribute 'view'. This is the getter. void view=(QAbstractItemView ptr itemView)Description: Method void QComboBox::setView(QAbstractItemView *itemView) Python specific notes:The object exposes a writable attribute 'view'. This is the setter. [virtual] void wheelEvent(QWheelEvent ptr e)Description: Virtual method void QComboBox::wheelEvent(QWheelEvent *e) This method can be reimplemented in a derived class. [virtual] void windowActivationChange(bool arg1)Description: Virtual method void QComboBox::windowActivationChange(bool) This method can be reimplemented in a derived class. |