00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __CONFIG_H__
00019 #define __CONFIG_H__
00020
00021 #include <string>
00022 #include <qextscintilla.h>
00023 #include <qextscintillacommand.h>
00024 #include <qextscintillacommandset.h>
00025 #include "py_config.h"
00026
00028 namespace Config
00029 {
00031 enum { Default=0, CDE, Motif, MotifPlus, Platinum, SGI, Windows };
00033 enum { ChildframeMode=0, TabPageMode, ToplevelMode };
00035 enum { AiMaintain = QextScintilla::AiMaintain, AiOpening = QextScintilla::AiOpening,
00036 AiClosing = QextScintilla::AiClosing};
00038 void readConfig();
00040 void writeConfig();
00041 }
00042
00043 #endif