00001 00008 #ifndef HBSETTINGSPANEL_H_ 00009 #define HBSETTINGSPANEL_H_ 00010 #include <QtGui/QGroupBox> 00011 #include <QtGui/QVBoxLayout> 00012 00013 #include "HighlightBlock.h" 00014 00015 #include "HBFormatPanel.h" 00016 #include "HBslPatternsPanel.h" 00017 #include "HBmlPatternsPanel.h" 00025 class HBSettingsPanel : public QGroupBox 00026 { 00027 Q_OBJECT 00028 public: 00035 HBSettingsPanel(QWidget * parent,HighlightBlock * _block): QGroupBox(parent) 00036 { 00037 block=_block; 00038 createUI(); 00039 }; 00040 00046 void createUI(); 00047 00048 private: 00049 HighlightBlock * block; 00050 QVBoxLayout * groupLayout; 00051 HBFormatPanel * formatSettings; 00052 QGroupBox * patternSettings; 00053 }; 00054 00055 #endif /* HBSETTINGSPANEL_H_ */
1.5.8