kcustommenueditor.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _KCUSTOMMENUEDITOR_H_
00020 #define _KCUSTOMMENUEDITOR_H_
00021
00022 #include <kdialogbase.h>
00023
00024 class KListView;
00025 class KConfigBase;
00026
00027
00028
00029
00030
00031
00032
00033
00034 class KCustomMenuEditor : public KDialogBase
00035 {
00036 Q_OBJECT
00037 public:
00041 KCustomMenuEditor(QWidget *parent);
00042
00046 void load(KConfigBase *);
00047
00051 void save(KConfigBase *);
00052
00053 public slots:
00054 void slotNewItem();
00055 void slotRemoveItem();
00056 void slotMoveUp();
00057 void slotMoveDown();
00058
00059 protected:
00060 class Item;
00061 KListView *m_listView;
00062
00063 class KCustomMenuEditorPrivate;
00064 KCustomMenuEditorPrivate *d;
00065 };
00066
00067 #endif
This file is part of the documentation for kdelibs Version 3.1.5.