You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/parts/uimode/uichooser_part.h

34 lines
542 B

/*
* 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
{
TQ_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