You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
507 B
34 lines
507 B
15 years ago
|
//
|
||
|
//
|
||
|
// C++ Interface: $MODULE$
|
||
|
//
|
||
|
// Description:
|
||
|
//
|
||
|
//
|
||
|
// Author: Gav Wood <gav@kde.org>, (C) 2003
|
||
|
//
|
||
|
// Copyright: See COPYING file that comes with this distribution
|
||
|
//
|
||
|
//
|
||
|
#ifndef EDITMODE_H
|
||
|
#define EDITMODE_H
|
||
|
|
||
|
#include "editmodebase.h"
|
||
|
|
||
|
/**
|
||
|
@author Gav Wood
|
||
|
*/
|
||
|
class EditMode : public EditModeBase
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
void slotCheckText(const QString &newText);
|
||
|
void slotClearIcon();
|
||
|
|
||
|
EditMode(QWidget *parent = 0, const char *name = 0, bool modal = false, WFlags fl = 0);
|
||
|
~EditMode();
|
||
|
};
|
||
|
|
||
|
#endif
|