diff options
Diffstat (limited to 'src/modules/objects/class_tablewidget.h')
| -rw-r--r-- | src/modules/objects/class_tablewidget.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/modules/objects/class_tablewidget.h b/src/modules/objects/class_tablewidget.h index af32c0f86..89ba41116 100644 --- a/src/modules/objects/class_tablewidget.h +++ b/src/modules/objects/class_tablewidget.h @@ -30,7 +30,7 @@ #include "class_widget.h" #include "object_macros.h" #include <QtSql> - +#include <QTableWidgetItem> class KviKvsObject_tablewidget : public KviKvsObject_widget { Q_OBJECT @@ -44,12 +44,17 @@ protected: virtual bool init(KviKvsRunTimeContext * pContext,KviKvsVariantList *pParams); bool setText(KviKvsObjectFunctionCall *c); + bool setToolTip(KviKvsObjectFunctionCall *c); bool text(KviKvsObjectFunctionCall *c); bool setIcon(KviKvsObjectFunctionCall *c); bool setColumnCount(KviKvsObjectFunctionCall *c); bool columnCount(KviKvsObjectFunctionCall *c); bool setRowCount(KviKvsObjectFunctionCall *c); + bool currentRow(KviKvsObjectFunctionCall *c); + bool currentColumn(KviKvsObjectFunctionCall *c); + bool itemRowColAt(KviKvsObjectFunctionCall *c); + bool rowCount(KviKvsObjectFunctionCall *c); bool setHorizontalHeaderLabels(KviKvsObjectFunctionCall *c); bool setVerticalHeaderLabels(KviKvsObjectFunctionCall *c); @@ -60,9 +65,16 @@ protected: bool hideVerticalHeader(KviKvsObjectFunctionCall *c); bool showVerticalHeader(KviKvsObjectFunctionCall *c); bool clear(KviKvsObjectFunctionCall *c); - //bool clickEvent(KviKvsObjectFunctionCall *c); + bool itemEnteredEvent(KviKvsObjectFunctionCall *c); + + bool hideColumn(KviKvsObjectFunctionCall *c); + bool showColumn(KviKvsObjectFunctionCall *c); + bool hideRow(KviKvsObjectFunctionCall *c); + bool showRow(KviKvsObjectFunctionCall *c); protected slots: + void slotItemEntered(QTableWidgetItem *); + //void slotClicked(); }; |
