added possibility to pause/abort the operations
[case] / src / progressbar.h
diff --git a/src/progressbar.h b/src/progressbar.h
new file mode 100644 (file)
index 0000000..90ba48b
--- /dev/null
@@ -0,0 +1,44 @@
+// case - file manager for N900
+// Copyright (C) 2010 Lukas Hrazky <lukkash@email.cz>
+// 
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+// 
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+// 
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+#ifndef PROGRESSBAR_H
+#define PROGRESSBAR_H
+
+#include <QProgressBar>
+
+
+class FileManipulatorThread;
+
+class ProgressBar : public QProgressBar {
+    Q_OBJECT;
+
+signals:
+    void abortOperation(FileManipulatorThread*);
+    void togglePauseOperation(FileManipulatorThread*);
+
+public:
+    explicit ProgressBar(FileManipulatorThread *thread, QWidget *parent = 0);
+
+protected:
+    void mouseReleaseEvent(QMouseEvent *);
+    void contextMenuEvent(QContextMenuEvent *);
+
+    bool contextEvent;
+    FileManipulatorThread *thread;
+};
+
+#endif // PROGRESSBAR_H