blob: 42cac392891cf6a7223e62c5662319ba190cc0a7 (
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
|
/*
* Copyright (C) 2001 Matthias Hoelzer-Kluepfel <mhk@caldera.de>
*/
#ifndef __KDEVPART_EDITORCHOOSER_H__
#define __KDEVPART_EDITORCHOOSER_H__
class KDialogBase;
#include <kdevplugin.h>
class EditorChooserPart : public KDevPlugin
{
Q_OBJECT
TQ_OBJECT
public:
EditorChooserPart(TQObject *parent, const char *name, const TQStringList &);
~EditorChooserPart();
private slots:
void configWidget(KDialogBase *dlg);
};
#endif
|