blob: b2e8d2ee9c1e05bc0d740db3a0cb572307fa59b7 (
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
43
|
#ifndef __parts_h__
#define __parts_h__
#include <tdeparts/part.h>
class TQMultiLineEdit;
namespace KParts {
class GUIActivateEvent;
};
class Part1 : public KParts::ReadOnlyPart
{
TQ_OBJECT
public:
Part1( TQObject *parent, TQWidget * parentWidget );
virtual ~Part1();
protected:
virtual bool openFile();
protected:
TQMultiLineEdit * m_edit;
TDEInstance *m_instance;
};
class Part2 : public KParts::Part
{
TQ_OBJECT
public:
Part2( TQObject *parent, TQWidget * parentWidget );
virtual ~Part2();
protected:
// This is not mandatory - only if you care about setting the
// part caption when the part is used in a multi-part environment
// (i.e. in a part manager)
// There is a default impl for ReadOnlyPart...
virtual void guiActivateEvent( KParts::GUIActivateEvent * );
TDEInstance *m_instance;
};
#endif
|