katecmd.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _KATE_CMD_H
00020 #define _KATE_CMD_H
00021
00022 #include "document.h"
00023
00024
00025 #include <qdict.h>
00026 #include <qstringlist.h>
00027
00028 class KATEPARTINTERFACES_EXPORT KateCmd
00029 {
00030 private:
00031 KateCmd ();
00032
00033 public:
00034 ~KateCmd ();
00035
00036 static KateCmd *self ();
00037
00038 bool registerCommand (Kate::Command *cmd);
00039 bool unregisterCommand (Kate::Command *cmd);
00040 Kate::Command *queryCommand (const QString &cmd);
00041
00042 QStringList cmds ();
00043
00044 private:
00045 static KateCmd *s_self;
00046 QDict<Kate::Command> m_dict;
00047 QStringList m_cmds;
00048 };
00049
00050 #endif
This file is part of the documentation for kate Library Version 3.3.90.