summaryrefslogtreecommitdiffstats
path: root/src/xsession.h
blob: 27e431ebb08313d43af660b2cda1581b32f5643c (plain) (blame)
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
#ifndef VMCHOOSER_XSESSION_H_
#define VMCHOOSER_XSESSION_H_

#include <QString>
#include <QList>
#include <QDomDocument>
#include <QDir>
#include <QProcess>
#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;

    SectionType section() const {
        return SECTION_XSESSION;
    }

    QString shortDescription() const {
        return this->name_;
    }

    QString description() const {
        return this->comment_;
    }

    QString execCommand() const {
        return this->exec_;
    }

    QIcon icon() const;

    bool run() const;

    int type() const;

    bool operator<(const Session& other) const;

    static QList<Session*> readSessions(const QString& path);

    bool containsKeywords(const QList<QString>& keywords) const;

  private:
    QString name_;
    QString exec_;
    QString comment_;
    QString icon_;

    QProcess *_process;
};

#endif /*VMCHOOSER_XSESSION_H_*/