aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects/class_tablewidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/objects/class_tablewidget.h')
-rw-r--r--src/modules/objects/class_tablewidget.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/modules/objects/class_tablewidget.h b/src/modules/objects/class_tablewidget.h
index 2afceb0be..e4857c8fc 100644
--- a/src/modules/objects/class_tablewidget.h
+++ b/src/modules/objects/class_tablewidget.h
@@ -90,17 +90,20 @@ public:
bool hideVerticalHeader(KviKvsObjectFunctionCall *c);
bool showVerticalHeader(KviKvsObjectFunctionCall *c);
bool clear(KviKvsObjectFunctionCall *c);
- bool itemEnteredEvent(KviKvsObjectFunctionCall *c);
+ bool itemEnteredEvent(KviKvsObjectFunctionCall *c);
+ bool cellActivatedEvent(KviKvsObjectFunctionCall *c);
+ bool cellDoubleClickedEvent(KviKvsObjectFunctionCall *c);
- bool hideColumn(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();
+ void cellActivated(int iRow,int iCol);
+ void cellDoubleClicked(int iRow,int iCol);
};