diff options
Diffstat (limited to 'lumina-desktop/desktop-plugins/desktopview/DeskItem.h')
-rw-r--r-- | lumina-desktop/desktop-plugins/desktopview/DeskItem.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lumina-desktop/desktop-plugins/desktopview/DeskItem.h b/lumina-desktop/desktop-plugins/desktopview/DeskItem.h new file mode 100644 index 00000000..c578d692 --- /dev/null +++ b/lumina-desktop/desktop-plugins/desktopview/DeskItem.h @@ -0,0 +1,30 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2014, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#ifndef _LUMINA_DESKTOP_DESKTOP_ITEM_H +#define _LUMINA_DESKTOP_DESKTOP_ITEM_H + +#include <QToolButton> +#include <QProcess> +#include <QString> + +#include <LuminaXDG.h> + +class DeskItem : public QToolButton{ + Q_OBJECT +public: + DeskItem(QWidget *parent, QString itempath, int ssize); + ~DeskItem(); + + void updateItem(); + +private slots: + void RunItem(){ + QProcess::startDetached("lumina-open "+this->whatsThis()); + } +}; + +#endif
\ No newline at end of file |