summaryrefslogtreecommitdiffstats
path: root/kparts/tests/notepad.h
blob: d192d42ec4bab5eb91832754e8bda486aca7fd23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

#ifndef __notepad_h__
#define __notepad_h__

#include <kparts/genericfactory.h>
#include <kparts/part.h>

class KAboutData;
class TQMultiLineEdit;

/**
 * Who said writing a part should be complex ? :-)
 * Here is a very simple kedit-like part
 * @internal
 */
class NotepadPart : public KParts::ReadWritePart
{
  Q_OBJECT
public:
  NotepadPart( TQWidget*, const char* widgetName,
               TQObject* parent, const char* name,
               const TQStringList& args = TQStringList() );
  virtual ~NotepadPart();

  virtual void setReadWrite( bool rw );

  static KAboutData* createAboutData();

protected:
  virtual bool openFile();
  virtual bool saveFile();

protected slots:
  void slotSearchReplace();

protected:
  TQMultiLineEdit * m_edit;
};

typedef KParts::GenericFactory<NotepadPart> NotepadFactory;

#endif