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
00020
00021
00022
00023
00024 #ifndef KLFADVANCEDCONFIGEDITOR_H
00025 #define KLFADVANCEDCONFIGEDITOR_H
00026
00027
00028 #include <QDialog>
00029
00030 #include <klfcolorchooser.h>
00031 #include <klfconfigbase.h>
00032
00033 struct KLFAdvancedConfigEditorPrivate;
00034
00035 namespace Ui { class KLFAdvancedConfigEditor; };
00036
00037 class KLF_EXPORT KLFAdvancedConfigEditor : public QDialog
00038 {
00039 Q_OBJECT
00040 public:
00041 KLFAdvancedConfigEditor(QWidget *parent, KLFConfigBase *c);
00042 virtual ~KLFAdvancedConfigEditor();
00043
00044 virtual void setVisible(bool visible);
00045
00046 signals:
00047 void configModified(const QString& propertyName);
00048
00049 public slots:
00050 void updateConfig();
00051
00052 private:
00053 KLF_DECLARE_PRIVATE(KLFAdvancedConfigEditor) ;
00054
00055 Ui::KLFAdvancedConfigEditor * u;
00056 };
00057
00058
00059
00060
00061 #endif