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/astyle/astyle_widget.h

38 lines
479 B

#ifndef __ASTYLE_WIDGET_H__
#define __ASTYLE_WIDGET_H__
#include "astyleconfig.h"
class AStylePart;
class KDevPart;
class AStyleWidget : public AStyleConfig
{
TQ_OBJECT
public:
AStyleWidget( AStylePart * part, bool global, TQWidget *parent=0, const char *name=0 );
~AStyleWidget();
public slots:
void accept();
private slots:
void styleChanged();
private:
AStylePart * m_part;
bool isGlobalWidget;
TQString m_lastExt;
bool globalOptions;
};
#endif