00001 00042 #ifndef AICONFIGFRACTALS_HPP 00043 #define AICONFIGFRACTALS_HPP 00044 00045 #include <QtGui> 00046 00047 namespace AiFractals 00048 { 00055 class AiConfigFractals : public QWidget 00056 { 00057 Q_OBJECT 00058 00059 public: 00064 AiConfigFractals( QWidget * parent = 0 ); 00065 00069 ~AiConfigFractals(); 00070 00075 void addItems(const QStringList & items); 00076 00082 const QString item( const int index ); 00083 00084 signals: 00088 void refreshItems(); 00089 00094 void currentIndexChanged ( int index ); 00095 00099 void debugFractal(); 00100 00101 private: 00105 QComboBox * m_fractalsList ; 00106 }; 00107 } 00108 #endif // AICONFIGFRACTALS_HPP