rubyconfigwidget.h
Go to the documentation of this file.00001 00002 #ifndef RUBYCONFIGWIDGET_H 00003 #define RUBYCONFIGWIDGET_H 00004 00005 #include "rubyconfigwidgetbase.h" 00006 #include <qdom.h> 00007 00008 class RubyConfigWidget : public RubyConfigWidgetBase 00009 { 00010 Q_OBJECT 00011 00012 public: 00013 RubyConfigWidget(QDomDocument &projectDom, QWidget* parent = 0, const char* name = 0); 00014 ~RubyConfigWidget(); 00015 /*$PUBLIC_FUNCTIONS$*/ 00016 00017 public slots: 00018 /*$PUBLIC_SLOTS$*/ 00019 void accept(); 00020 00021 protected: 00022 /*$PROTECTED_FUNCTIONS$*/ 00023 00024 protected slots: 00025 /*$PROTECTED_SLOTS$*/ 00026 00027 private: 00028 QDomDocument &dom; 00029 00030 }; 00031 00032 #endif 00033