aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects/class_widget.h
diff options
context:
space:
mode:
authorGravatar Noldor2007-04-17 15:51:13 +0000
committerGravatar Noldor2007-04-17 15:51:13 +0000
commit72f05a6133ad0b7ec9865c86f0720e2c5b67dd37 (patch)
tree226c4c99359eee8a33ea4c4a4fda4bd44d871a0c /src/modules/objects/class_widget.h
parentfixed global acceleratorn under qt4; improved css support (diff)
downloadKVIrc-72f05a6133ad0b7ec9865c86f0720e2c5b67dd37.tar.gz
KVIrc-72f05a6133ad0b7ec9865c86f0720e2c5b67dd37.tar.bz2
KVIrc-72f05a6133ad0b7ec9865c86f0720e2c5b67dd37.zip
fix boring warning and compilation errors; new dynamic tooltip system in widget objects.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@510 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_widget.h')
-rw-r--r--src/modules/objects/class_widget.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/modules/objects/class_widget.h b/src/modules/objects/class_widget.h
index 76d13d8d0..0316552a8 100644
--- a/src/modules/objects/class_widget.h
+++ b/src/modules/objects/class_widget.h
@@ -48,7 +48,7 @@ protected:
// so the name of the C++ function matches exactly the name of the KVS function at this point
// let's also try to keep alphabetic order for the functions here.. so one can find them quickly
- KviKvsTip *m_pTip;
+
bool function_addWidgetToWrappedLayout(KviKvsObjectFunctionCall *c);
bool function_backgroundColor(KviKvsObjectFunctionCall *c);
bool function_caption(KviKvsObjectFunctionCall *c);
@@ -99,7 +99,6 @@ protected:
bool function_width(KviKvsObjectFunctionCall *);
bool function_x(KviKvsObjectFunctionCall *);
bool function_y(KviKvsObjectFunctionCall *);
- bool function_setDynamicToolTip(KviKvsObjectFunctionCall *c);
bool function_setMask(KviKvsObjectFunctionCall *c);
@@ -110,18 +109,5 @@ bool function_setAttribute(KviKvsObjectFunctionCall *c);
signals:
void aboutToDie();
};
-class KviKvsTip : public KviTalToolTip
-{
-public:
- KviKvsTip(KviKvsObject_widget * pParent,QWidget *pWidget);
- ~KviKvsTip();
-public:
- void maybeTip(const QPoint &pnt);
- void doTip(const QRect &rct,const QString &str){// tip(rct,str); //
- };
-protected:
- KviKvsObject_widget * m_pParent;
-};
-
#endif // !_CLASS_WIDGET_H_