aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects/class_tablewidget.h
diff options
context:
space:
mode:
authorGravatar Noldor2009-08-26 15:32:22 +0000
committerGravatar Noldor2009-08-26 15:32:22 +0000
commit5cc6199846f7e797df52a9dad916f27bf3d6265d (patch)
treef60f116c7850408bb4eff0972e6ff0f103fdee79 /src/modules/objects/class_tablewidget.h
parentRemoved old references to kvi_run_netscape.sh, we'll stick with freedesktop's... (diff)
downloadKVIrc-5cc6199846f7e797df52a9dad916f27bf3d6265d.tar.gz
KVIrc-5cc6199846f7e797df52a9dad916f27bf3d6265d.tar.bz2
KVIrc-5cc6199846f7e797df52a9dad916f27bf3d6265d.zip
Fixed kvs widgets on statusbar and some doc fixes
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3428 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_tablewidget.h')
-rw-r--r--src/modules/objects/class_tablewidget.h16
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();
};