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
00029 #define LANG_DIR "/usr/share/cute/langs/"
00030
00032 namespace Config
00033 {
00035 enum { Default=0, CDE, Motif, MotifPlus, Platinum, SGI, Windows };
00037 enum { ChildframeMode=0, TabPageMode, ToplevelMode };
00039 enum { AiMaintain = QextScintilla::AiMaintain, AiOpening = QextScintilla::AiOpening,
00040 AiClosing = QextScintilla::AiClosing};
00042 void readConfig();
00044 void writeConfig();
00045 }
00046
00047 #endif