blob: a200ea6c53b0b133560afd8ec0af5b0572667098 (
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
{
  TQ_OBJECT
  
public:
   
  EditorChooserPart(TQObject *parent, const char *name, const TQStringList &);
  ~EditorChooserPart();
  
private slots:
  void configWidget(KDialogBase *dlg);
  
};
#endif
 |