summaryrefslogtreecommitdiffstats
path: root/objects/enums.h
blob: 54748cd93bc6e7b62737d393df5aeb08c7aa70eb (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
#ifndef ENUMS_H
#define ENUMS_H

#include <QObject>
#include <QMetaType>

/** This class exports enums needed on the scripting side

  This is a placeholder for those enums that are in QtCreator (hence outside our control),
  and which we do not have Q_ENUMS registered fo them.
*/
class Enums :public QObject {
    Q_OBJECT
public:
    /** copied from ::TextEditor::ITextEditor::PositionOperation */
    enum PositionOperation {
        Current = 1,
        EndOfLine = 2,
        StartOfLine = 3,
        Anchor = 4,
        EndOfDoc = 5
    };
    Q_ENUMS(PositionOperation)
};

Q_DECLARE_METATYPE(Enums::PositionOperation)

#endif // ENUMS_H