blob: ff822e1d6b0885645733df38d75ebfcec38b7238 (
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
|
/*
* Copyright (C) 2001 Matthias Hoelzer-Kluepfel <mhk@caldera.de>
*/
#ifndef __KDEVPART_UICHOOSER_H__
#define __KDEVPART_UICHOOSER_H__
class KDialogBase;
class ConfigWidgetProxy;
#include <kdevplugin.h>
class UIChooserPart : public KDevPlugin
{
Q_OBJECT
public:
UIChooserPart(TQObject *parent, const char *name, const TQStringList &);
~UIChooserPart();
private slots:
void insertConfigWidget( const KDialogBase * dlg, TQWidget * page, unsigned int );
private:
ConfigWidgetProxy * _configProxy;
};
#endif
|