From 030d91e628a2ecd5634376c9c4d903a1fa0fb423 Mon Sep 17 00:00:00 2001 From: Nils Schwabe Date: Mon, 3 Mar 2014 15:14:20 +0100 Subject: added files from vmchooser1 --- src/xsession.h | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/xsession.h (limited to 'src/xsession.h') diff --git a/src/xsession.h b/src/xsession.h new file mode 100644 index 0000000..1d36d64 --- /dev/null +++ b/src/xsession.h @@ -0,0 +1,49 @@ +#ifndef VMCHOOSER_XSESSION_H_ +#define VMCHOOSER_XSESSION_H_ + +#include +#include +#include +#include +#include +#include "session.h" + +class XSession : public Session { + public: + void init(const QString& name, const QString& exec, + const QString& comment, const QString& icon); + bool init(const QString& filename); + + bool isActive() const; + bool isLocked() const; + bool isValid() const; + int priority() const; + + QString shortDescription() const { + return this->name_; + } + + QString description() const { + return this->comment_; + } + + QString icon() const; + + bool run() const; + + int type() const; + + bool operator<(const Session& other) const; + + static QList readSessions(const QString& path); + + private: + QString name_; + QString exec_; + QString comment_; + QString icon_; + + QProcess *_process; +}; + +#endif /*VMCHOOSER_XSESSION_H_*/ -- cgit v1.2.3-55-g7522