summaryrefslogtreecommitdiffstats
path: root/src/kbstatustip.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kbstatustip.h')
-rw-r--r--src/kbstatustip.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/kbstatustip.h b/src/kbstatustip.h
new file mode 100644
index 0000000..1fec765
--- /dev/null
+++ b/src/kbstatustip.h
@@ -0,0 +1,28 @@
+//
+// C++ Interface: kbstatustip
+//
+// Description:
+//
+//
+// Author: Magnus Kulke <mkulke@magnusmachine>, (C) 2004
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#ifndef KBSTATUSTIP_H
+#define KBSTATUSTIP_H
+
+#include <qtooltip.h>
+
+/**
+@author Magnus Kulke
+*/
+class KbStatusTip : public QToolTip
+{
+public:
+ KbStatusTip(QWidget * widget);
+ void maybeTip(const QPoint &pos);
+ void ShowStatus(QString msg);
+};
+
+#endif