diff options
author | Kris Moore <kris@pcbsd.org> | 2014-09-04 11:42:13 -0400 |
---|---|---|
committer | Kris Moore <kris@pcbsd.org> | 2014-09-04 11:42:13 -0400 |
commit | 71737f70949bd25f9aa8bc4e7d03039ba83c6cb1 (patch) | |
tree | ab29e864d1ae59d10cc6875af9541e3ad306b2fb /lumina-desktop/desktop-plugins/desktopview/DeskItem.h | |
parent | Initial commit (diff) | |
download | lumina-71737f70949bd25f9aa8bc4e7d03039ba83c6cb1.tar.gz lumina-71737f70949bd25f9aa8bc4e7d03039ba83c6cb1.tar.bz2 lumina-71737f70949bd25f9aa8bc4e7d03039ba83c6cb1.zip |
Initial import of the lumina code from pcbsd git repo
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 |