summaryrefslogtreecommitdiffstats
path: root/toolwindow.h
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2017-04-09 02:53:39 +0200
committerArno <arno@disconnect.de>2017-04-09 02:53:39 +0200
commit8d0f7783a4db453ccb0ac5f05798f277f5c01f65 (patch)
treee9e180cb7279bb39f6c029ef3e884bb9c47e6222 /toolwindow.h
parent1355b93895e68f6ccc8709f919a65b04238e126c (diff)
downloadBeetPlayer-8d0f7783a4db453ccb0ac5f05798f277f5c01f65.tar.gz
BeetPlayer-8d0f7783a4db453ccb0ac5f05798f277f5c01f65.tar.bz2
BeetPlayer-8d0f7783a4db453ccb0ac5f05798f277f5c01f65.zip
Remove tool window
It was kinda useless, didn't work out, sorry, ToolWindow :)
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