interfaces
configinterface.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __ktexteditor_configinterface_h__
00020 #define __ktexteditor_configinterface_h__
00021
00022 #include <kdelibs_export.h>
00023
00024 class QCString;
00025 class KConfig;
00026
00027 namespace KTextEditor
00028 {
00029
00034 class KTEXTEDITOR_EXPORT ConfigInterface
00035 {
00036 friend class PrivateConfigInterface;
00037
00038 public:
00039 ConfigInterface();
00040 virtual ~ConfigInterface();
00041
00042 unsigned int configInterfaceNumber () const;
00043
00044 protected:
00045 void setConfigInterfaceDCOPSuffix (const QCString &suffix);
00046
00047
00048
00049
00050 public:
00056 virtual void readConfig () = 0;
00057 virtual void writeConfig () = 0;
00058
00063 virtual void readConfig (KConfig *) = 0;
00064 virtual void writeConfig (KConfig *) = 0;
00065
00069 virtual void readSessionConfig (KConfig *) = 0;
00070 virtual void writeSessionConfig (KConfig *) = 0;
00071
00077 virtual void configDialog () = 0;
00078
00079 private:
00080 class PrivateConfigInterface *d;
00081 static unsigned int globalConfigInterfaceNumber;
00082 unsigned int myConfigInterfaceNumber;
00083 };
00084
00085 class Plugin;
00086 class Document;
00087
00088 KTEXTEDITOR_EXPORT ConfigInterface *configInterface (Document *doc);
00089 KTEXTEDITOR_EXPORT ConfigInterface *configInterface (Plugin *plugin);
00090
00091 }
00092
00093 #endif