blob: c8e3a4756028c5a7b26c75fe4842aa4c433fc35d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2014-2017, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
// This class is a quick sample desktop plugin
//===========================================
#ifndef _LUMINA_DESKTOP_DESKTOP_PLUGIN_APPLICATION_LAUNCHER_H
#define _LUMINA_DESKTOP_DESKTOP_PLUGIN_APPLICATION_LAUNCHER_H
#include <QToolButton>
#include <QInputDialog>
#include <QVBoxLayout>
#include <QProcess>
#include <QFile>
#include <QFileSystemWatcher>
#include <QTimer>
#include <QMenu>
#include <QCursor>
#include "../LDPlugin.h"
#include <LuminaXDG.h>
class AppLauncherPlugin : public LDPlugin{
Q_OBJECT
public:
AppLauncherPlugin(QWidget* parent, QString ID);
~AppLauncherPlugin(){}
void Cleanup(); //special function for final cleanup
private:
QToolButton *button;
QFileSystemWatcher *watcher;
//QMenu *menu;
QInputDialog *inputDLG;
QString iconID;
int icosize;
private slots:
void loadButton();
void buttonClicked(bool openwith = false);
void iconLoaded(QString);
//void openContextMenu();
//void increaseIconSize();
//void decreaseIconSize();
//void deleteFile();
void actionTriggered(QAction *act);
void openWith();
void fileProperties();
void fileDelete();
void fileCut();
void fileCopy();
void fileRename();
void renameFinished(int result);
public slots:
void LocaleChange(){
loadButton(); //force reload
}
protected:
void resizeEvent(QResizeEvent *ev){
LDPlugin::resizeEvent(ev);
QTimer::singleShot(100, this, SLOT(loadButton()) );
}
void changeEvent(QEvent *ev){
LDPlugin::changeEvent(ev);
QEvent::Type tmp = ev->type();
if(tmp == QEvent::StyleChange || tmp==QEvent::ThemeChange || tmp==QEvent::LanguageChange || tmp==QEvent::LocaleChange){ loadButton(); }
}
};
#endif
|