aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm-dev/TrayUI.h
diff options
context:
space:
mode:
authorq5sys <jt@xsystems.com>2017-11-27 01:34:28 -0500
committerq5sys <jt@xsystems.com>2017-11-27 01:34:28 -0500
commit6b1a38389925839278b2735041e088224b4a7be2 (patch)
treec0f30d9cb6d6b5b5bf0c40c4dbccdec006a26b0a /src-qt5/desktop-utils/lumina-fm-dev/TrayUI.h
parentMerge branch 'master' of http://github.com/trueos/lumina (diff)
downloadlumina-6b1a38389925839278b2735041e088224b4a7be2.tar.gz
lumina-6b1a38389925839278b2735041e088224b4a7be2.tar.bz2
lumina-6b1a38389925839278b2735041e088224b4a7be2.zip
remove file manager dev folder
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm-dev/TrayUI.h')
-rw-r--r--src-qt5/desktop-utils/lumina-fm-dev/TrayUI.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm-dev/TrayUI.h b/src-qt5/desktop-utils/lumina-fm-dev/TrayUI.h
deleted file mode 100644
index 4210784a..00000000
--- a/src-qt5/desktop-utils/lumina-fm-dev/TrayUI.h
+++ /dev/null
@@ -1,47 +0,0 @@
-//===========================================
-// 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_SYSTRAY_H
-#define _LUMINA_FILE_MANAGER_FILE_OP_SYSTRAY_H
-
-#include "OPWidget.h"
-
-#include <QSystemTrayIcon>
-#include <QMenu>
-
-class TrayUI : public QSystemTrayIcon{
- Q_OBJECT
-public:
- enum FILEOP{MOVE, COPY, DELETE}; //File Operations
-
- TrayUI(QObject *parent = 0);
- ~TrayUI();
-
-public slots:
- void StartOperation( FILEOP op, QStringList oldF, QStringList newF);
-
-private:
- QList<OPWidget*> OPS;
-
- void createOP( FILEOP, QStringList oldF, QStringList newF);
-
-private slots:
- void TrayActivated();
-
- //Operation Widget Responses
- void OperationClosed(QString ID);
- void OperationStarted(QString ID);
- void OperationFinished(QString ID);
-
- void checkJobs(); //see if any jobs are still active/visible, otherwise hide the tray icon
-
-signals:
- void JobsFinished();
-
-};
-#endif
bgstack15