aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm/OPWidget.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-10-20 12:05:22 -0400
committerKen Moore <ken@ixsystems.com>2016-10-20 12:05:22 -0400
commit36df3d58e25beb06f16fdf821f18fe8a4bcce2ae (patch)
tree137dfbf9c48f0eba2f4a58d0f3d22f7e870f0c2a /src-qt5/desktop-utils/lumina-fm/OPWidget.h
parentMake sure all the translation files are synced to the sources. (diff)
downloadlumina-36df3d58e25beb06f16fdf821f18fe8a4bcce2ae.tar.gz
lumina-36df3d58e25beb06f16fdf821f18fe8a4bcce2ae.tar.bz2
lumina-36df3d58e25beb06f16fdf821f18fe8a4bcce2ae.zip
Finish up the last couple buttons/actions related to the new Tray UI.
1) If closing the main window while an operation is running, hide it instead until the file operation is finished - then close. 2) Fix the icon on the show errors button 3) Hook up the show errors button to show a scroll dialog with the errors.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm/OPWidget.h')
-rw-r--r--src-qt5/desktop-utils/lumina-fm/OPWidget.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/OPWidget.h b/src-qt5/desktop-utils/lumina-fm/OPWidget.h
index 600df4b7..13fb3cb3 100644
--- a/src-qt5/desktop-utils/lumina-fm/OPWidget.h
+++ b/src-qt5/desktop-utils/lumina-fm/OPWidget.h
@@ -10,6 +10,7 @@
#define _LUMINA_FILE_MANAGER_FILE_OP_OPWIDGET_H
#include "FODialog.h"
+#include "ScrollDialog.h"
namespace Ui{
class OPWidget;
};
@@ -36,6 +37,7 @@ public slots:
private:
Ui::OPWidget *ui;
+ ScrollDialog *dlg;
//Main Objects
QWidgetAction *WA;
FOWorker *worker;
bgstack15