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.
|
|
|
#ifndef __ASTYLE_WIDGET_H__
|
|
|
|
#define __ASTYLE_WIDGET_H__
|
|
|
|
|
|
|
|
#include "astyleconfig.h"
|
|
|
|
|
|
|
|
class AStylePart;
|
|
|
|
class KDevPart;
|
|
|
|
|
|
|
|
|
|
|
|
class AStyleWidget : public AStyleConfig
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
AStyleWidget( AStylePart * part, bool global, TQWidget *tqparent=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
|