summaryrefslogtreecommitdiffstats
path: root/toolwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'toolwindow.h')
-rw-r--r--toolwindow.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/toolwindow.h b/toolwindow.h
deleted file mode 100644
index 7f8e621..0000000
--- a/toolwindow.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef TOOLWINDOW_H
-#define TOOLWINDOW_H
-
-#include <QWidget>
-
-class QLabel;
-class QTimer;
-
-class ToolWindow : public QWidget {
- Q_OBJECT
- public:
- explicit ToolWindow(QWidget *parent = 0, Qt::WindowFlags f = Qt::FramelessWindowHint | Qt::WindowDoesNotAcceptFocus);
-
- public slots:
- void setText(const QString &text);
- void toHTML(const QString &text);
- void showMe();
-
- private:
- QLabel *mLabel;
- QTimer *mHideTimer;
-};
-
-#endif // TOOLWINDOW_H