kdelirc
editmode.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef EDITMODE_H
00014 #define EDITMODE_H
00015
00016 #include "editmodebase.h"
00017
00021 class EditMode : public EditModeBase
00022 {
00023 Q_OBJECT
00024
00025 public:
00026 void slotCheckText(const QString &newText);
00027 void slotClearIcon();
00028
00029 EditMode(QWidget *parent = 0, const char *name = 0, bool modal = false, Qt::WFlags fl = 0);
00030 ~EditMode();
00031 };
00032
00033 #endif