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
class KIO_EXPORT KCustomMenuEditor :
public KDialogBase
00034 {
00035 Q_OBJECT
00036
public:
00040 KCustomMenuEditor(
QWidget *parent);
00041 ~KCustomMenuEditor();
00045
void load(
KConfigBase *);
00046
00050
void save(
KConfigBase *);
00051
00052
public slots:
00053
void slotNewItem();
00054
void slotRemoveItem();
00055
void slotMoveUp();
00056
void slotMoveDown();
00057
void refreshButton();
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 kio Library Version 3.4.0.