diff options
author | Weblate <noreply@weblate.org> | 2017-08-19 14:59:53 +0000 |
---|---|---|
committer | Weblate <noreply@weblate.org> | 2017-08-19 14:59:53 +0000 |
commit | 7d3372ae81249c3f69f886df99fa7eb885d0757d (patch) | |
tree | ecad7dc336a43d4e2fcc61f7a58635c6455b6cc2 /src-qt5/desktop-utils/lumina-fm-dev/OPWidget.h | |
parent | Translated using Weblate (Danish) (diff) | |
parent | Translated using Weblate (Danish) (diff) | |
download | lumina-7d3372ae81249c3f69f886df99fa7eb885d0757d.tar.gz lumina-7d3372ae81249c3f69f886df99fa7eb885d0757d.tar.bz2 lumina-7d3372ae81249c3f69f886df99fa7eb885d0757d.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm-dev/OPWidget.h')
-rw-r--r-- | src-qt5/desktop-utils/lumina-fm-dev/OPWidget.h | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm-dev/OPWidget.h b/src-qt5/desktop-utils/lumina-fm-dev/OPWidget.h new file mode 100644 index 00000000..4fdb7db8 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm-dev/OPWidget.h @@ -0,0 +1,64 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2016, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +// This is the system tray icon for queueing/running file operations +//=========================================== +#ifndef _LUMINA_FILE_MANAGER_FILE_OP_OPWIDGET_H +#define _LUMINA_FILE_MANAGER_FILE_OP_OPWIDGET_H + +#include "FODialog.h" +#include "ScrollDialog.h" + +#include <QWidgetAction> + +namespace Ui{ + class OPWidget; +}; + +class OPWidget : public QWidget{ + Q_OBJECT +public: + OPWidget(QWidget *parent = 0); + ~OPWidget(); + + QWidgetAction* widgetAction(); //for loading the widget into a menu + + void setupOperation(QString optype, QStringList oldF, QStringList newF); + + bool isDone(); + + //Status reporting after worker finishes + bool hasErrors(); + float duration(); //in seconds + QString finalStat(); //Final status message + +public slots: + void startOperation(); + +private: + Ui::OPWidget *ui; + ScrollDialog *dlg; + //Main Objects + QWidgetAction *WA; + FOWorker *worker; + QThread *workthread; + //Bookkeeping items for statistics and such + qint64 starttime, endtime; //in ms + QStringList Errors; + QString tract; //translated action + +private slots: + void closeWidget(); + void showErrors(); + void opFinished(QStringList); //errors + void opUpdate(int, int, QString, QString); //current, total, old file, new file + +signals: + void starting(QString); + void finished(QString); + void closed(QString); +}; +#endif |