summaryrefslogtreecommitdiffstats
path: root/parts/uimode/uichooser_part.h
blob: e4633441a8adf52d1e93b1eff9c91c73ec96f329 (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
/*
 *  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(QObject *parent, const char *name, const QStringList &);
  ~UIChooserPart();
  
private slots:
  void insertConfigWidget( const KDialogBase * dlg, QWidget * page, unsigned int );
  
private:
  ConfigWidgetProxy * _configProxy;

};


#endif