PGE Engine
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros Pages
intproc.h
1 #ifndef INTPROC_H
2 #define INTPROC_H
3 
4 #include <QObject>
5 #include "editor_pipe.h"
6 
7 class IntProc : public QObject
8 {
9  Q_OBJECT
10 public:
11  explicit IntProc(QObject *parent = 0);
12  static void init();
13  static void quit();
14  static bool isWorking();
15  static QString state;
16  enum ExternalCommands
17  {
18  MessageBox=0,
19  Cheat=1,
20  PlaceItem=2
21  };
22  static ExternalCommands command;
23 
24  static bool cmd_accepted;
25  static bool hasCommand();
26  static ExternalCommands commandType();
27  static QString getCMD();
28  static QString cmd;
29 
30  static EditorPipe * editor;
31  static bool enabled;
32  static bool isEnabled();
33 
34 signals:
35 
36 public slots:
37 
38 };
39 
40 #endif // INTPROC_H
Definition: intproc.h:7
Definition: editor_pipe.h:41