diff options
Diffstat (limited to 'kdelirc/kcmlirc/editmode.cpp')
-rw-r--r-- | kdelirc/kcmlirc/editmode.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/kdelirc/kcmlirc/editmode.cpp b/kdelirc/kcmlirc/editmode.cpp new file mode 100644 index 0000000..3fba8f0 --- /dev/null +++ b/kdelirc/kcmlirc/editmode.cpp @@ -0,0 +1,38 @@ +// +// +// C++ Implementation: $MODULE$ +// +// Description: +// +// +// Author: Gav Wood <gav@kde.org>, (C) 2003 +// +// Copyright: See COPYING file that comes with this distribution +// +// +#include <kicondialog.h> +#include <kiconloader.h> +#include <kpushbutton.h> + +#include "editmode.h" + +EditMode::EditMode(QWidget *parent, const char *name, bool modal, WFlags fl) : EditModeBase(parent, name, modal, fl) +{ + theIcon->setIconType(KIcon::Panel, KIcon::Any); +} + +EditMode::~EditMode() +{ +} + +void EditMode::slotClearIcon() +{ + theIcon->resetIcon(); +} + +void EditMode::slotCheckText(const QString &newText) +{ + theOK->setEnabled(!newText.isEmpty()); +} + +#include "editmode.moc" |