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.
35 lines
512 B
35 lines
512 B
//
|
|
//
|
|
// 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 TQString &newText);
|
|
void slotClearIcon();
|
|
|
|
EditMode(TQWidget *parent = 0, const char *name = 0, bool modal = false, WFlags fl = 0);
|
|
~EditMode();
|
|
};
|
|
|
|
#endif
|