API reference - Class QTableWidgetNotation used in Ruby API documentation Description: Binding of QTableWidget Class hierarchy: QTableWidget » QTableView » QAbstractItemView » QAbstractScrollArea » QFrame » QWidget » QObject
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 descriptionvoid _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 QTableWidget::actionEvent(QActionEvent *) This method can be reimplemented in a derived class. [event] void activated(const QModelIndex index)Description: Signal declaration for QTableWidget::activated(const QModelIndex &index) You can bind a procedure to this signal. [event] void cellActivated(int row,int column)Description: Signal declaration for QTableWidget::cellActivated(int row, int column) You can bind a procedure to this signal. [event] void cellChanged(int row,int column)Description: Signal declaration for QTableWidget::cellChanged(int row, int column) You can bind a procedure to this signal. [event] void cellClicked(int row,int column)Description: Signal declaration for QTableWidget::cellClicked(int row, int column) You can bind a procedure to this signal. [event] void cellDoubleClicked(int row,int column)Description: Signal declaration for QTableWidget::cellDoubleClicked(int row, int column) You can bind a procedure to this signal. [event] void cellEntered(int row,int column)Description: Signal declaration for QTableWidget::cellEntered(int row, int column) You can bind a procedure to this signal. [event] void cellPressed(int row,int column)Description: Signal declaration for QTableWidget::cellPressed(int row, int column) You can bind a procedure to this signal. [const] QWidget ptr cellWidget(int row,int column)Description: Method QWidget *QTableWidget::cellWidget(int row, int column) [virtual] void changeEvent(QEvent ptr arg1)Description: Virtual method void QTableWidget::changeEvent(QEvent *) This method can be reimplemented in a derived class. [virtual] void childEvent(QChildEvent ptr arg1)Description: Virtual method void QTableWidget::childEvent(QChildEvent *) This method can be reimplemented in a derived class. void clearDescription: Method void QTableWidget::clear() void clearContentsDescription: Method void QTableWidget::clearContents() [event] void clicked(const QModelIndex index)Description: Signal declaration for QTableWidget::clicked(const QModelIndex &index) You can bind a procedure to this signal. [virtual] void closeEditor(QWidget ptr editor,const QAbstractItemDelegate_EndEditHint hint)Description: Virtual method void QTableWidget::closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint) This method can be reimplemented in a derived class. [virtual] void closeEvent(QCloseEvent ptr arg1)Description: Virtual method void QTableWidget::closeEvent(QCloseEvent *) This method can be reimplemented in a derived class. void closePersistentEditor(QTableWidgetItem ptr item)Description: Method void QTableWidget::closePersistentEditor(QTableWidgetItem *item) [const] int column(const QTableWidgetItem ptr item)Description: Method int QTableWidget::column(const QTableWidgetItem *item) [const] int columnCountDescription: Method int QTableWidget::columnCount() Python specific notes:The object exposes a readable attribute 'columnCount'. This is the getter. void columnCount=(int columns)Description: Method void QTableWidget::setColumnCount(int columns) Python specific notes:The object exposes a writable attribute 'columnCount'. This is the setter. void columnCountChanged(int oldCount,int newCount)Description: Method void QTableWidget::columnCountChanged(int oldCount, int newCount) This method is protected and can only be called from inside a derived class. void columnMoved(int column,int oldIndex,int newIndex)Description: Method void QTableWidget::columnMoved(int column, int oldIndex, int newIndex) This method is protected and can only be called from inside a derived class. void columnResized(int column,int oldWidth,int newWidth)Description: Method void QTableWidget::columnResized(int column, int oldWidth, int newWidth) This method is protected and can only be called from inside a derived class. [virtual] void commitData(QWidget ptr editor)Description: Virtual method void QTableWidget::commitData(QWidget *editor) This method can be reimplemented in a derived class. [virtual] void contextMenuEvent(QContextMenuEvent ptr arg1)Description: Virtual method void QTableWidget::contextMenuEvent(QContextMenuEvent *) This method can be reimplemented in a derived class. void createDescription: Ensures the C++ object is created Use of this method is deprecated. Use _create instead [event] void currentCellChanged(int currentRow,int currentColumn,int previousRow,int previousColumn)Description: Signal declaration for QTableWidget::currentCellChanged(int currentRow, int currentColumn, int previousRow, int previousColumn) You can bind a procedure to this signal. [virtual] void currentChanged(const QModelIndex current,const QModelIndex previous)Description: Virtual method void QTableWidget::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) This method can be reimplemented in a derived class. [const] int currentColumnDescription: Method int QTableWidget::currentColumn() [const] QTableWidgetItem ptr currentItemDescription: Method QTableWidgetItem *QTableWidget::currentItem() Python specific notes:The object exposes a readable attribute 'currentItem'. This is the getter. void currentItem=(QTableWidgetItem ptr item)Description: Method void QTableWidget::setCurrentItem(QTableWidgetItem *item) Python specific notes:The object exposes a writable attribute 'currentItem'. This is the setter. [event] void currentItemChanged(QTableWidgetItem ptr current,QTableWidgetItem ptr previous)Description: Signal declaration for QTableWidget::currentItemChanged(QTableWidgetItem *current, QTableWidgetItem *previous) You can bind a procedure to this signal. [const] int currentRowDescription: Method int QTableWidget::currentRow() [event] void customContextMenuRequested(const QPoint pos)Description: Signal declaration for QTableWidget::customContextMenuRequested(const QPoint &pos) You can bind a procedure to this signal. [virtual] void customEvent(QEvent ptr arg1)Description: Virtual method void QTableWidget::customEvent(QEvent *) This method can be reimplemented in a derived class. [virtual] void dataChanged(const QModelIndex topLeft,const QModelIndex bottomRight)Description: Virtual method void QTableWidget::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) 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 QTableWidget::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 [const] QPoint dirtyRegionOffsetDescription: Method QPoint QTableWidget::dirtyRegionOffset() This method is protected and can only be called from inside a derived class. [virtual] void disconnectNotify(string signal)Description: Virtual method void QTableWidget::disconnectNotify(const char *signal) This method can be reimplemented in a derived class. void doAutoScrollDescription: Method void QTableWidget::doAutoScroll() This method is protected and can only be called from inside a derived class. [virtual] void doItemsLayoutDescription: Virtual method void QTableWidget::doItemsLayout() This method can be reimplemented in a derived class. [event] void doubleClicked(const QModelIndex index)Description: Signal declaration for QTableWidget::doubleClicked(const QModelIndex &index) You can bind a procedure to this signal. [virtual] void dragEnterEvent(QDragEnterEvent ptr event)Description: Virtual method void QTableWidget::dragEnterEvent(QDragEnterEvent *event) This method can be reimplemented in a derived class. [virtual] void dragLeaveEvent(QDragLeaveEvent ptr event)Description: Virtual method void QTableWidget::dragLeaveEvent(QDragLeaveEvent *event) This method can be reimplemented in a derived class. [virtual] void dragMoveEvent(QDragMoveEvent ptr event)Description: Virtual method void QTableWidget::dragMoveEvent(QDragMoveEvent *event) This method can be reimplemented in a derived class. void drawFrame(QPainter ptr arg1)Description: Method void QTableWidget::drawFrame(QPainter *) This method is protected and can only be called from inside a derived class. [virtual] void dropEvent(QDropEvent ptr event)Description: Virtual method void QTableWidget::dropEvent(QDropEvent *event) This method can be reimplemented in a derived class. [const] unsigned int dropIndicatorPositionDescription: Method QAbstractItemView::DropIndicatorPosition QTableWidget::dropIndicatorPosition() This method is protected and can only be called from inside a derived class. [virtual] bool dropMimeData(int row,int column,const QMimeData ptr data,const Qt_DropAction action)Description: Virtual method bool QTableWidget::dropMimeData(int row, int column, const QMimeData *data, Qt::DropAction action) This method can be reimplemented in a derived class. [virtual] bool edit(const QModelIndex index,const QAbstractItemView_EditTrigger trigger,QEvent ptr event)Description: Virtual method bool QTableWidget::edit(const QModelIndex &index, QAbstractItemView::EditTrigger trigger, QEvent *event) This method can be reimplemented in a derived class. void editItem(QTableWidgetItem ptr item)Description: Method void QTableWidget::editItem(QTableWidgetItem *item) [virtual] void editorDestroyed(QObject ptr editor)Description: Virtual method void QTableWidget::editorDestroyed(QObject *editor) This method can be reimplemented in a derived class. [virtual] void enabledChange(bool arg1)Description: Virtual method void QTableWidget::enabledChange(bool) This method can be reimplemented in a derived class. [virtual] void enterEvent(QEvent ptr arg1)Description: Virtual method void QTableWidget::enterEvent(QEvent *) This method can be reimplemented in a derived class. [event] void entered(const QModelIndex index)Description: Signal declaration for QTableWidget::entered(const QModelIndex &index) You can bind a procedure to this signal. [virtual] bool event(QEvent ptr e)Description: Virtual method bool QTableWidget::event(QEvent *e) This method can be reimplemented in a derived class. [virtual] bool eventFilter(QObject ptr arg1,QEvent ptr arg2)Description: Virtual method bool QTableWidget::eventFilter(QObject *, QEvent *) This method can be reimplemented in a derived class. void executeDelayedItemsLayoutDescription: Method void QTableWidget::executeDelayedItemsLayout() This method is protected and can only be called from inside a derived class. [const] QTableWidgetItem ptr[] findItems(string text,const Qt_QFlags_MatchFlag flags)Description: Method QList<QTableWidgetItem *> QTableWidget::findItems(const QString &text, QFlags<Qt::MatchFlag> flags) [virtual] void focusInEvent(QFocusEvent ptr event)Description: Virtual method void QTableWidget::focusInEvent(QFocusEvent *event) This method can be reimplemented in a derived class. bool focusNextChildDescription: Method bool QTableWidget::focusNextChild() This method is protected and can only be called from inside a derived class. [virtual] bool focusNextPrevChild(bool next)Description: Virtual method bool QTableWidget::focusNextPrevChild(bool next) This method can be reimplemented in a derived class. [virtual] void focusOutEvent(QFocusEvent ptr event)Description: Virtual method void QTableWidget::focusOutEvent(QFocusEvent *event) This method can be reimplemented in a derived class. bool focusPreviousChildDescription: Method bool QTableWidget::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 QTableWidget::fontChange(const QFont &) This method can be reimplemented in a derived class. [virtual,const] int heightForWidth(int arg1)Description: Virtual method int QTableWidget::heightForWidth(int) This method can be reimplemented in a derived class. [virtual] void hideEvent(QHideEvent ptr arg1)Description: Virtual method void QTableWidget::hideEvent(QHideEvent *) This method can be reimplemented in a derived class. [const] QTableWidgetItem ptr horizontalHeaderItem(int column)Description: Method QTableWidgetItem *QTableWidget::horizontalHeaderItem(int column) [virtual,const] int horizontalOffsetDescription: Virtual method int QTableWidget::horizontalOffset() This method can be reimplemented in a derived class. [virtual] void horizontalScrollbarAction(int action)Description: Virtual method void QTableWidget::horizontalScrollbarAction(int action) This method can be reimplemented in a derived class. [virtual] void horizontalScrollbarValueChanged(int value)Description: Virtual method void QTableWidget::horizontalScrollbarValueChanged(int value) This method can be reimplemented in a derived class. [const] int horizontalStepsPerItemDescription: Method int QTableWidget::horizontalStepsPerItem() This method is protected and can only be called from inside a derived class. [virtual,const] QModelIndex indexAt(const QPoint p)Description: Virtual method QModelIndex QTableWidget::indexAt(const QPoint &p) This method can be reimplemented in a derived class. [const] QModelIndex indexFromItem(QTableWidgetItem ptr item)Description: Method QModelIndex QTableWidget::indexFromItem(QTableWidgetItem *item) This method is protected and can only be called from inside a derived class. [virtual] void inputMethodEvent(QInputMethodEvent ptr event)Description: Virtual method void QTableWidget::inputMethodEvent(QInputMethodEvent *event) This method can be reimplemented in a derived class. [virtual,const] QVariant inputMethodQuery(const Qt_InputMethodQuery query)Description: Virtual method QVariant QTableWidget::inputMethodQuery(Qt::InputMethodQuery query) This method can be reimplemented in a derived class. void insertColumn(int column)Description: Method void QTableWidget::insertColumn(int column) void insertRow(int row)Description: Method void QTableWidget::insertRow(int row) [virtual,const] bool isIndexHidden(const QModelIndex index)Description: Virtual method bool QTableWidget::isIndexHidden(const QModelIndex &index) This method can be reimplemented in a derived class. [const] bool isItemSelected?(const QTableWidgetItem ptr item)Description: Method bool QTableWidget::isItemSelected(const QTableWidgetItem *item) [const] bool isSortingEnabled?Description: Method bool QTableWidget::isSortingEnabled() Python specific notes:The object exposes a readable attribute 'sortingEnabled'. 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] QTableWidgetItem ptr item(int row,int column)Description: Method QTableWidgetItem *QTableWidget::item(int row, int column) [event] void itemActivated(QTableWidgetItem ptr item)Description: Signal declaration for QTableWidget::itemActivated(QTableWidgetItem *item) You can bind a procedure to this signal. [const] QTableWidgetItem ptr itemAt(const QPoint p)Description: Method QTableWidgetItem *QTableWidget::itemAt(const QPoint &p) [const] QTableWidgetItem ptr itemAt(int x,int y)Description: Method QTableWidgetItem *QTableWidget::itemAt(int x, int y) [event] void itemChanged(QTableWidgetItem ptr item)Description: Signal declaration for QTableWidget::itemChanged(QTableWidgetItem *item) You can bind a procedure to this signal. [event] void itemClicked(QTableWidgetItem ptr item)Description: Signal declaration for QTableWidget::itemClicked(QTableWidgetItem *item) You can bind a procedure to this signal. [event] void itemDoubleClicked(QTableWidgetItem ptr item)Description: Signal declaration for QTableWidget::itemDoubleClicked(QTableWidgetItem *item) You can bind a procedure to this signal. [event] void itemEntered(QTableWidgetItem ptr item)Description: Signal declaration for QTableWidget::itemEntered(QTableWidgetItem *item) You can bind a procedure to this signal. [const] QTableWidgetItem ptr itemFromIndex(const QModelIndex index)Description: Method QTableWidgetItem *QTableWidget::itemFromIndex(const QModelIndex &index) This method is protected and can only be called from inside a derived class. [event] void itemPressed(QTableWidgetItem ptr item)Description: Signal declaration for QTableWidget::itemPressed(QTableWidgetItem *item) You can bind a procedure to this signal. [const] const QTableWidgetItem ptr itemPrototypeDescription: Method const QTableWidgetItem *QTableWidget::itemPrototype() Python specific notes:The object exposes a readable attribute 'itemPrototype'. This is the getter. void itemPrototype=(const QTableWidgetItem ptr item)Description: Method void QTableWidget::setItemPrototype(const QTableWidgetItem *item) Python specific notes:The object exposes a writable attribute 'itemPrototype'. This is the setter. [event] void itemSelectionChangedDescription: Signal declaration for QTableWidget::itemSelectionChanged() You can bind a procedure to this signal. [const] QTableWidgetItem ptr[] items(const QMimeData ptr data)Description: Method QList<QTableWidgetItem *> QTableWidget::items(const QMimeData *data) This method is protected and can only be called from inside a derived class. [virtual] void keyPressEvent(QKeyEvent ptr event)Description: Virtual method void QTableWidget::keyPressEvent(QKeyEvent *event) This method can be reimplemented in a derived class. [virtual] void keyReleaseEvent(QKeyEvent ptr arg1)Description: Virtual method void QTableWidget::keyReleaseEvent(QKeyEvent *) This method can be reimplemented in a derived class. [virtual] void keyboardSearch(string search)Description: Virtual method void QTableWidget::keyboardSearch(const QString &search) This method can be reimplemented in a derived class. [virtual] void languageChangeDescription: Virtual method void QTableWidget::languageChange() This method can be reimplemented in a derived class. [virtual] void leaveEvent(QEvent ptr arg1)Description: Virtual method void QTableWidget::leaveEvent(QEvent *) This method can be reimplemented in a derived class. [virtual,const] int metric(const QPaintDevice_PaintDeviceMetric arg1)Description: Virtual method int QTableWidget::metric(QPaintDevice::PaintDeviceMetric) This method can be reimplemented in a derived class. [virtual,const] QMimeData ptr mimeData(QTableWidgetItem ptr[] items)Description: Virtual method QMimeData *QTableWidget::mimeData(const QList<QTableWidgetItem *> items) This method can be reimplemented in a derived class. [virtual,const] string[] mimeTypesDescription: Virtual method QStringList QTableWidget::mimeTypes() This method can be reimplemented in a derived class. [virtual,const] QSize minimumSizeHintDescription: Virtual method QSize QTableWidget::minimumSizeHint() This method can be reimplemented in a derived class. [virtual] void mouseDoubleClickEvent(QMouseEvent ptr event)Description: Virtual method void QTableWidget::mouseDoubleClickEvent(QMouseEvent *event) This method can be reimplemented in a derived class. [virtual] void mouseMoveEvent(QMouseEvent ptr event)Description: Virtual method void QTableWidget::mouseMoveEvent(QMouseEvent *event) This method can be reimplemented in a derived class. [virtual] void mousePressEvent(QMouseEvent ptr event)Description: Virtual method void QTableWidget::mousePressEvent(QMouseEvent *event) This method can be reimplemented in a derived class. [virtual] void mouseReleaseEvent(QMouseEvent ptr event)Description: Virtual method void QTableWidget::mouseReleaseEvent(QMouseEvent *event) This method can be reimplemented in a derived class. [virtual] QModelIndex moveCursor(unsigned int cursorAction,const Qt_QFlags_KeyboardModifier modifiers)Description: Virtual method QModelIndex QTableWidget::moveCursor(QAbstractItemView::CursorAction cursorAction, QFlags<Qt::KeyboardModifier> modifiers) This method can be reimplemented in a derived class. [virtual] void moveEvent(QMoveEvent ptr arg1)Description: Virtual method void QTableWidget::moveEvent(QMoveEvent *) This method can be reimplemented in a derived class. [static] new QTableWidget new(QWidget ptr parent = 0)Description: Constructor QTableWidget::QTableWidget(QWidget *parent) This method creates an object of class QTableWidget. Python specific notes:This method is the default initializer of the object [static] new QTableWidget new(int rows,int columns,QWidget ptr parent = 0)Description: Constructor QTableWidget::QTableWidget(int rows, int columns, QWidget *parent) This method creates an object of class QTableWidget. Python specific notes:This method is the default initializer of the object void openPersistentEditor(QTableWidgetItem ptr item)Description: Method void QTableWidget::openPersistentEditor(QTableWidgetItem *item) [virtual,const] QPaintEngine ptr paintEngineDescription: Virtual method QPaintEngine *QTableWidget::paintEngine() This method can be reimplemented in a derived class. [virtual] void paintEvent(QPaintEvent ptr e)Description: Virtual method void QTableWidget::paintEvent(QPaintEvent *e) This method can be reimplemented in a derived class. [virtual] void paletteChange(const QPalette arg1)Description: Virtual method void QTableWidget::paletteChange(const QPalette &) This method can be reimplemented in a derived class. [event] void pressed(const QModelIndex index)Description: Signal declaration for QTableWidget::pressed(const QModelIndex &index) You can bind a procedure to this signal. void qt_create(unsigned long arg1 = 0,bool initializeWindow = true,bool destroyOldWindow = true)Description: Method void QTableWidget::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 QTableWidget::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 QTableWidget::receivers(const char *signal) This method is protected and can only be called from inside a derived class. void removeCellWidget(int row,int column)Description: Method void QTableWidget::removeCellWidget(int row, int column) void removeColumn(int column)Description: Method void QTableWidget::removeColumn(int column) void removeRow(int row)Description: Method void QTableWidget::removeRow(int row) [virtual] void resetDescription: Virtual method void QTableWidget::reset() This method can be reimplemented in a derived class. void resetInputContextDescription: Method void QTableWidget::resetInputContext() This method is protected and can only be called from inside a derived class. [virtual] void resizeEvent(QResizeEvent ptr event)Description: Virtual method void QTableWidget::resizeEvent(QResizeEvent *event) This method can be reimplemented in a derived class. [const] int row(const QTableWidgetItem ptr item)Description: Method int QTableWidget::row(const QTableWidgetItem *item) [const] int rowCountDescription: Method int QTableWidget::rowCount() Python specific notes:The object exposes a readable attribute 'rowCount'. This is the getter. void rowCount=(int rows)Description: Method void QTableWidget::setRowCount(int rows) Python specific notes:The object exposes a writable attribute 'rowCount'. This is the setter. void rowCountChanged(int oldCount,int newCount)Description: Method void QTableWidget::rowCountChanged(int oldCount, int newCount) This method is protected and can only be called from inside a derived class. void rowMoved(int row,int oldIndex,int newIndex)Description: Method void QTableWidget::rowMoved(int row, int oldIndex, int newIndex) This method is protected and can only be called from inside a derived class. void rowResized(int row,int oldHeight,int newHeight)Description: Method void QTableWidget::rowResized(int row, int oldHeight, int newHeight) This method is protected and can only be called from inside a derived class. [virtual] void rowsAboutToBeRemoved(const QModelIndex parent,int start,int end)Description: Virtual method void QTableWidget::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end) This method can be reimplemented in a derived class. [virtual] void rowsInserted(const QModelIndex parent,int start,int end)Description: Virtual method void QTableWidget::rowsInserted(const QModelIndex &parent, int start, int end) This method can be reimplemented in a derived class. void scheduleDelayedItemsLayoutDescription: Method void QTableWidget::scheduleDelayedItemsLayout() This method is protected and can only be called from inside a derived class. [virtual] void scrollContentsBy(int dx,int dy)Description: Virtual method void QTableWidget::scrollContentsBy(int dx, int dy) This method can be reimplemented in a derived class. void scrollDirtyRegion(int dx,int dy)Description: Method void QTableWidget::scrollDirtyRegion(int dx, int dy) This method is protected and can only be called from inside a derived class. [virtual] void scrollTo(const QModelIndex index,const QAbstractItemView_ScrollHint hint)Description: Virtual method void QTableWidget::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint) This method can be reimplemented in a derived class. void scrollToItem(const QTableWidgetItem ptr item,const QAbstractItemView_ScrollHint hint = QAbstractItemView::EnsureVisible)Description: Method void QTableWidget::scrollToItem(const QTableWidgetItem *item, QAbstractItemView::ScrollHint hint) [virtual] void selectAllDescription: Virtual method void QTableWidget::selectAll() This method can be reimplemented in a derived class. [virtual,const] QModelIndex[] selectedIndexesDescription: Virtual method QList<QModelIndex> QTableWidget::selectedIndexes() This method can be reimplemented in a derived class. QTableWidgetItem ptr[] selectedItemsDescription: Method QList<QTableWidgetItem *> QTableWidget::selectedItems() [const] QTableWidgetSelectionRange[] selectedRangesDescription: Method QList<QTableWidgetSelectionRange> QTableWidget::selectedRanges() [virtual] void selectionChanged(const QItemSelection selected,const QItemSelection deselected)Description: Virtual method void QTableWidget::selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) This method can be reimplemented in a derived class. [virtual,const] QItemSelectionModel_QFlags_SelectionFlag selectionCommand(const QModelIndex index,const QEvent ptr event)Description: Virtual method QFlags<QItemSelectionModel::SelectionFlag> QTableWidget::selectionCommand(const QModelIndex &index, const QEvent *event) This method can be reimplemented in a derived class. [const] QObject ptr senderDescription: Method QObject *QTableWidget::sender() This method is protected and can only be called from inside a derived class. void setCellWidget(int row,int column,QWidget ptr widget)Description: Method void QTableWidget::setCellWidget(int row, int column, QWidget *widget) void setColumnCount(int columns)Description: Method void QTableWidget::setColumnCount(int columns) Python specific notes:The object exposes a writable attribute 'columnCount'. This is the setter. void setCurrentCell(int row,int column)Description: Method void QTableWidget::setCurrentCell(int row, int column) void setCurrentCell(int row,int column,const QItemSelectionModel_QFlags_SelectionFlag command)Description: Method void QTableWidget::setCurrentCell(int row, int column, QFlags<QItemSelectionModel::SelectionFlag> command) void setCurrentItem(QTableWidgetItem ptr item)Description: Method void QTableWidget::setCurrentItem(QTableWidgetItem *item) Python specific notes:The object exposes a writable attribute 'currentItem'. This is the setter. void setCurrentItem(QTableWidgetItem ptr item,const QItemSelectionModel_QFlags_SelectionFlag command)Description: Method void QTableWidget::setCurrentItem(QTableWidgetItem *item, QFlags<QItemSelectionModel::SelectionFlag> command) void setDirtyRegion(const QRegion region)Description: Method void QTableWidget::setDirtyRegion(const QRegion ®ion) This method is protected and can only be called from inside a derived class. void setHorizontalHeaderItem(int column,QTableWidgetItem ptr item)Description: Method void QTableWidget::setHorizontalHeaderItem(int column, QTableWidgetItem *item) void setHorizontalHeaderLabels(string[] labels)Description: Method void QTableWidget::setHorizontalHeaderLabels(const QStringList &labels) void setHorizontalStepsPerItem(int steps)Description: Method void QTableWidget::setHorizontalStepsPerItem(int steps) This method is protected and can only be called from inside a derived class. void setItem(int row,int column,QTableWidgetItem ptr item)Description: Method void QTableWidget::setItem(int row, int column, QTableWidgetItem *item) void setItemPrototype(const QTableWidgetItem ptr item)Description: Method void QTableWidget::setItemPrototype(const QTableWidgetItem *item) Python specific notes:The object exposes a writable attribute 'itemPrototype'. This is the setter. void setItemSelected(const QTableWidgetItem ptr item,bool select)Description: Method void QTableWidget::setItemSelected(const QTableWidgetItem *item, bool select) void setRangeSelected(const QTableWidgetSelectionRange range,bool select)Description: Method void QTableWidget::setRangeSelected(const QTableWidgetSelectionRange &range, bool select) [virtual] void setRootIndex(const QModelIndex index)Description: Virtual method void QTableWidget::setRootIndex(const QModelIndex &index) This method can be reimplemented in a derived class. void setRowCount(int rows)Description: Method void QTableWidget::setRowCount(int rows) Python specific notes:The object exposes a writable attribute 'rowCount'. This is the setter. [virtual] void setSelection(const QRect rect,const QItemSelectionModel_QFlags_SelectionFlag command)Description: Virtual method void QTableWidget::setSelection(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> command) This method can be reimplemented in a derived class. [virtual] void setSelectionModel(QItemSelectionModel ptr selectionModel)Description: Virtual method void QTableWidget::setSelectionModel(QItemSelectionModel *selectionModel) This method can be reimplemented in a derived class. void setSortingEnabled(bool enable)Description: Method void QTableWidget::setSortingEnabled(bool enable) Python specific notes:The object exposes a writable attribute 'sortingEnabled'. This is the setter. void setState(unsigned int state)Description: Method void QTableWidget::setState(QAbstractItemView::State state) This method is protected and can only be called from inside a derived class. void setVerticalHeaderItem(int row,QTableWidgetItem ptr item)Description: Method void QTableWidget::setVerticalHeaderItem(int row, QTableWidgetItem *item) void setVerticalHeaderLabels(string[] labels)Description: Method void QTableWidget::setVerticalHeaderLabels(const QStringList &labels) void setVerticalStepsPerItem(int steps)Description: Method void QTableWidget::setVerticalStepsPerItem(int steps) This method is protected and can only be called from inside a derived class. void setViewportMargins(int left,int top,int right,int bottom)Description: Method void QTableWidget::setViewportMargins(int left, int top, int right, int bottom) This method is protected and can only be called from inside a derived class. void setViewportMargins(const QMargins margins)Description: Method void QTableWidget::setViewportMargins(const QMargins &margins) This method is protected and can only be called from inside a derived class. [virtual] void setVisible(bool visible)Description: Virtual method void QTableWidget::setVisible(bool visible) This method can be reimplemented in a derived class. void setupViewport(QWidget ptr viewport)Description: Method void QTableWidget::setupViewport(QWidget *viewport) This method is protected and can only be called from inside a derived class. [virtual] void showEvent(QShowEvent ptr arg1)Description: Virtual method void QTableWidget::showEvent(QShowEvent *) This method can be reimplemented in a derived class. [virtual,const] QSize sizeHintDescription: Virtual method QSize QTableWidget::sizeHint() This method can be reimplemented in a derived class. [virtual,const] int sizeHintForColumn(int column)Description: Virtual method int QTableWidget::sizeHintForColumn(int column) This method can be reimplemented in a derived class. [virtual,const] int sizeHintForRow(int row)Description: Virtual method int QTableWidget::sizeHintForRow(int row) This method can be reimplemented in a derived class. void sortItems(int column,const Qt_SortOrder order = Qt::AscendingOrder)Description: Method void QTableWidget::sortItems(int column, Qt::SortOrder order) [const] bool sortingEnabledDescription: Method bool QTableWidget::isSortingEnabled() Python specific notes:The object exposes a readable attribute 'sortingEnabled'. This is the getter. void sortingEnabled=(bool enable)Description: Method void QTableWidget::setSortingEnabled(bool enable) Python specific notes:The object exposes a writable attribute 'sortingEnabled'. This is the setter. void startAutoScrollDescription: Method void QTableWidget::startAutoScroll() This method is protected and can only be called from inside a derived class. [virtual] void startDrag(const Qt_QFlags_DropAction supportedActions)Description: Virtual method void QTableWidget::startDrag(QFlags<Qt::DropAction> supportedActions) This method can be reimplemented in a derived class. [const] unsigned int stateDescription: Method QAbstractItemView::State QTableWidget::state() This method is protected and can only be called from inside a derived class. [static] QMetaObject staticMetaObjectDescription: Obtains the static MetaObject for this class. void stopAutoScrollDescription: Method void QTableWidget::stopAutoScroll() This method is protected and can only be called from inside a derived class. [virtual] void styleChange(QStyle arg1)Description: Virtual method void QTableWidget::styleChange(QStyle &) This method can be reimplemented in a derived class. [virtual,const] Qt_QFlags_DropAction supportedDropActionsDescription: Virtual method QFlags<Qt::DropAction> QTableWidget::supportedDropActions() This method can be reimplemented in a derived class. [virtual] void tabletEvent(QTabletEvent ptr arg1)Description: Virtual method void QTableWidget::tabletEvent(QTabletEvent *) This method can be reimplemented in a derived class. new QTableWidgetItem ptr takeHorizontalHeaderItem(int column)Description: Method QTableWidgetItem *QTableWidget::takeHorizontalHeaderItem(int column) new QTableWidgetItem ptr takeItem(int row,int column)Description: Method QTableWidgetItem *QTableWidget::takeItem(int row, int column) new QTableWidgetItem ptr takeVerticalHeaderItem(int row)Description: Method QTableWidgetItem *QTableWidget::takeVerticalHeaderItem(int row) [virtual] void timerEvent(QTimerEvent ptr event)Description: Virtual method void QTableWidget::timerEvent(QTimerEvent *event) This method can be reimplemented in a derived class. [static] string tr(string s,string c = 0)Description: Static method QString QTableWidget::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 QTableWidget::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 QTableWidget::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 QTableWidget::trUtf8(const char *s, const char *c, int n) This method is static and can be called without an instance. [virtual] void updateEditorDataDescription: Virtual method void QTableWidget::updateEditorData() This method can be reimplemented in a derived class. [virtual] void updateEditorGeometriesDescription: Virtual method void QTableWidget::updateEditorGeometries() This method can be reimplemented in a derived class. [virtual] void updateGeometriesDescription: Virtual method void QTableWidget::updateGeometries() This method can be reimplemented in a derived class. void updateMicroFocusDescription: Method void QTableWidget::updateMicroFocus() This method is protected and can only be called from inside a derived class. [const] QTableWidgetItem ptr verticalHeaderItem(int row)Description: Method QTableWidgetItem *QTableWidget::verticalHeaderItem(int row) [virtual,const] int verticalOffsetDescription: Virtual method int QTableWidget::verticalOffset() This method can be reimplemented in a derived class. [virtual] void verticalScrollbarAction(int action)Description: Virtual method void QTableWidget::verticalScrollbarAction(int action) This method can be reimplemented in a derived class. [virtual] void verticalScrollbarValueChanged(int value)Description: Virtual method void QTableWidget::verticalScrollbarValueChanged(int value) This method can be reimplemented in a derived class. [const] int verticalStepsPerItemDescription: Method int QTableWidget::verticalStepsPerItem() This method is protected and can only be called from inside a derived class. [virtual,const] QStyleOptionViewItem viewOptionsDescription: Virtual method QStyleOptionViewItem QTableWidget::viewOptions() This method can be reimplemented in a derived class. [event] void viewportEnteredDescription: Signal declaration for QTableWidget::viewportEntered() You can bind a procedure to this signal. [virtual] bool viewportEvent(QEvent ptr event)Description: Virtual method bool QTableWidget::viewportEvent(QEvent *event) This method can be reimplemented in a derived class. [const] int visualColumn(int logicalColumn)Description: Method int QTableWidget::visualColumn(int logicalColumn) [const] QRect visualItemRect(const QTableWidgetItem ptr item)Description: Method QRect QTableWidget::visualItemRect(const QTableWidgetItem *item) [virtual,const] QRect visualRect(const QModelIndex index)Description: Virtual method QRect QTableWidget::visualRect(const QModelIndex &index) This method can be reimplemented in a derived class. [virtual,const] QRegion visualRegionForSelection(const QItemSelection selection)Description: Virtual method QRegion QTableWidget::visualRegionForSelection(const QItemSelection &selection) This method can be reimplemented in a derived class. [const] int visualRow(int logicalRow)Description: Method int QTableWidget::visualRow(int logicalRow) [virtual] void wheelEvent(QWheelEvent ptr arg1)Description: Virtual method void QTableWidget::wheelEvent(QWheelEvent *) This method can be reimplemented in a derived class. [virtual] void windowActivationChange(bool arg1)Description: Virtual method void QTableWidget::windowActivationChange(bool) This method can be reimplemented in a derived class. |