diff options
| author | 2010-06-12 14:46:58 +0000 | |
|---|---|---|
| committer | 2010-06-12 14:46:58 +0000 | |
| commit | dbaac33531949d094c6573aaa22b4fb4299a0ca7 (patch) | |
| tree | 65e4f911f50871de69d74ea09e91ec0eae230f4b /src/modules/objects/class_tablewidget.h | |
| parent | updated german translations (diff) | |
| download | KVIrc-dbaac33531949d094c6573aaa22b4fb4299a0ca7.tar.gz KVIrc-dbaac33531949d094c6573aaa22b4fb4299a0ca7.tar.bz2 KVIrc-dbaac33531949d094c6573aaa22b4fb4299a0ca7.zip | |
KVS objects improvements
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4453 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_tablewidget.h')
| -rw-r--r-- | src/modules/objects/class_tablewidget.h | 11 |
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); }; |
