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.
29 lines
387 B
29 lines
387 B
|
|
#ifndef RUBYCONFIGWIDGET_H
|
|
#define RUBYCONFIGWIDGET_H
|
|
|
|
#include "rubyconfigwidgetbase.h"
|
|
|
|
class TQDomDocument;
|
|
|
|
class RubyConfigWidget : public RubyConfigWidgetBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
RubyConfigWidget(TQDomDocument &projectDom, TQWidget* parent = 0, const char* name = 0);
|
|
|
|
public slots:
|
|
void accept();
|
|
|
|
protected:
|
|
|
|
protected slots:
|
|
|
|
private:
|
|
TQDomDocument &dom;
|
|
};
|
|
|
|
#endif
|
|
|