|
From: <dhu...@us...> - 2007-01-23 20:15:37
|
Revision: 238
http://svn.sourceforge.net/qcell/?rev=238&view=rev
Author: dhubleizh
Date: 2007-01-23 12:15:29 -0800 (Tue, 23 Jan 2007)
Log Message:
-----------
- new world wizard added
- new neighbourhood wizard added
Modified Paths:
--------------
trunk/qcell/visgui/MainWindow.cpp
trunk/qcell/visgui/MainWindow.h
trunk/qcell/visgui/MainWindow.ui
trunk/qcell/visgui/visgui.pro
Added Paths:
-----------
trunk/qcell/visgui/NewNeighbourhoodDialog.ui
trunk/qcell/visgui/NewNeighbourhoodWizard.cpp
trunk/qcell/visgui/NewNeighbourhoodWizard.h
trunk/qcell/visgui/NewWorldDialog.ui
trunk/qcell/visgui/NewWorldWizard.cpp
trunk/qcell/visgui/NewWorldWizard.h
Modified: trunk/qcell/visgui/MainWindow.cpp
===================================================================
--- trunk/qcell/visgui/MainWindow.cpp 2007-01-23 18:36:35 UTC (rev 237)
+++ trunk/qcell/visgui/MainWindow.cpp 2007-01-23 20:15:29 UTC (rev 238)
@@ -1001,3 +1001,21 @@
delaySlider->blockSignals(false);
}
+void MainWindow::on_action_New_World_activated()
+{
+ NewWorldWizard nww;
+ if (nww.exec())
+ {
+ /// @todo emit some signal here
+ }
+}
+
+void MainWindow::on_action_New_Neighbourhood_activated()
+{
+ NewNeighbourhoodWizard nnw;
+ if (nnw.exec())
+ {
+ /// @todo emit some signal here
+ }
+}
+
Modified: trunk/qcell/visgui/MainWindow.h
===================================================================
--- trunk/qcell/visgui/MainWindow.h 2007-01-23 18:36:35 UTC (rev 237)
+++ trunk/qcell/visgui/MainWindow.h 2007-01-23 20:15:29 UTC (rev 238)
@@ -14,6 +14,8 @@
#include "ExperimentSetup.h"
#include "ElementalRulesWidget.h"
#include "ElementalRules.h"
+#include "NewWorldWizard.h"
+#include "NewNeighbourhoodWizard.h"
#include <QPluginLoader>
#include "GenericParserPlugin.h"
#include <QFileDialog>
@@ -53,6 +55,9 @@
void on_action_Save_experiment_activated();
void on_action_Continue_experiment_activated();
+ void on_action_New_World_activated();
+ void on_action_New_Neighbourhood_activated();
+
void sliderChanged(int value);
void spinBoxChanged(double value);
Modified: trunk/qcell/visgui/MainWindow.ui
===================================================================
--- trunk/qcell/visgui/MainWindow.ui 2007-01-23 18:36:35 UTC (rev 237)
+++ trunk/qcell/visgui/MainWindow.ui 2007-01-23 20:15:29 UTC (rev 238)
@@ -55,10 +55,26 @@
<addaction name="separator" />
<addaction name="action_About" />
</widget>
+ <widget class="QMenu" name="menu_View" >
+ <property name="title" >
+ <string>&View</string>
+ </property>
+ </widget>
<widget class="QMenu" name="menu_File" >
<property name="title" >
<string>&File</string>
</property>
+ <widget class="QMenu" name="menu_Save" >
+ <property name="enabled" >
+ <bool>false</bool>
+ </property>
+ <property name="title" >
+ <string>&Save</string>
+ </property>
+ <addaction name="action_World_save" />
+ <addaction name="action_Neighbourhood_save" />
+ <addaction name="action_Function_save" />
+ </widget>
<widget class="QMenu" name="menu_Open" >
<property name="statusTip" >
<string>Opens experiment data.</string>
@@ -70,17 +86,15 @@
<addaction name="action_Neighbourhood" />
<addaction name="action_Function" />
</widget>
- <widget class="QMenu" name="menu_Save" >
- <property name="enabled" >
- <bool>false</bool>
- </property>
+ <widget class="QMenu" name="menu_New" >
<property name="title" >
- <string>&Save</string>
+ <string>&New</string>
</property>
- <addaction name="action_World_save" />
- <addaction name="action_Neighbourhood_save" />
- <addaction name="action_Function_save" />
+ <addaction name="action_New_World" />
+ <addaction name="action_New_Neighbourhood" />
+ <addaction name="action_New_Function" />
</widget>
+ <addaction name="menu_New" />
<addaction name="menu_Open" />
<addaction name="action_Open_experiment" />
<addaction name="action_Continue_experiment" />
@@ -89,11 +103,6 @@
<addaction name="separator" />
<addaction name="action_Quit" />
</widget>
- <widget class="QMenu" name="menu_View" >
- <property name="title" >
- <string>&View</string>
- </property>
- </widget>
<addaction name="menu_File" />
<addaction name="menu_View" />
<addaction name="menu_Experiment" />
@@ -295,6 +304,21 @@
<string>&Elemental rules</string>
</property>
</action>
+ <action name="action_New_World" >
+ <property name="text" >
+ <string>&World</string>
+ </property>
+ </action>
+ <action name="action_New_Neighbourhood" >
+ <property name="text" >
+ <string>&Neighbourhood</string>
+ </property>
+ </action>
+ <action name="action_New_Function" >
+ <property name="text" >
+ <string>&Function</string>
+ </property>
+ </action>
</widget>
<resources/>
<connections/>
Added: trunk/qcell/visgui/NewNeighbourhoodDialog.ui
===================================================================
--- trunk/qcell/visgui/NewNeighbourhoodDialog.ui (rev 0)
+++ trunk/qcell/visgui/NewNeighbourhoodDialog.ui 2007-01-23 20:15:29 UTC (rev 238)
@@ -0,0 +1,264 @@
+<ui version="4.0" >
+ <class>NewNeighbourhoodDialog</class>
+ <widget class="QDialog" name="NewNeighbourhoodDialog" >
+ <property name="geometry" >
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>400</width>
+ <height>288</height>
+ </rect>
+ </property>
+ <property name="windowTitle" >
+ <string>New Neighbourhood properties</string>
+ </property>
+ <layout class="QVBoxLayout" >
+ <property name="margin" >
+ <number>9</number>
+ </property>
+ <property name="spacing" >
+ <number>6</number>
+ </property>
+ <item>
+ <layout class="QVBoxLayout" >
+ <property name="margin" >
+ <number>0</number>
+ </property>
+ <property name="spacing" >
+ <number>6</number>
+ </property>
+ <item>
+ <widget class="QGroupBox" name="dimensionsGroupBox" >
+ <property name="title" >
+ <string>Dimensions selection</string>
+ </property>
+ <layout class="QHBoxLayout" >
+ <property name="margin" >
+ <number>9</number>
+ </property>
+ <property name="spacing" >
+ <number>6</number>
+ </property>
+ <item>
+ <widget class="QRadioButton" name="rdioButton1D" >
+ <property name="text" >
+ <string>1D</string>
+ </property>
+ <property name="checked" >
+ <bool>true</bool>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QRadioButton" name="radioButton2D" >
+ <property name="text" >
+ <string>2D</string>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QRadioButton" name="radioButton3D" >
+ <property name="text" >
+ <string>3D</string>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ </layout>
+ </item>
+ <item>
+ <layout class="QHBoxLayout" >
+ <property name="margin" >
+ <number>0</number>
+ </property>
+ <property name="spacing" >
+ <number>6</number>
+ </property>
+ <item>
+ <widget class="QGroupBox" name="sizesGroupBox" >
+ <property name="title" >
+ <string>Sizes specyfication</string>
+ </property>
+ <layout class="QGridLayout" >
+ <property name="margin" >
+ <number>9</number>
+ </property>
+ <property name="spacing" >
+ <number>6</number>
+ </property>
+ <item row="2" column="1" >
+ <widget class="QSpinBox" name="spinBox3D" >
+ <property name="enabled" >
+ <bool>false</bool>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="1" >
+ <widget class="QSpinBox" name="spinBox2D" >
+ <property name="enabled" >
+ <bool>false</bool>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="1" >
+ <widget class="QSpinBox" name="spinBox1D" >
+ <property name="minimum" >
+ <number>1</number>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="0" >
+ <widget class="QLabel" name="label3D" >
+ <property name="text" >
+ <string>Size Z</string>
+ </property>
+ <property name="buddy" >
+ <cstring>spinBox3D</cstring>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="0" >
+ <widget class="QLabel" name="label1D" >
+ <property name="text" >
+ <string>Size X</string>
+ </property>
+ <property name="buddy" >
+ <cstring>spinBox1D</cstring>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="0" >
+ <widget class="QLabel" name="label2D" >
+ <property name="text" >
+ <string>Size Y</string>
+ </property>
+ <property name="buddy" >
+ <cstring>spinBox2D</cstring>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ </layout>
+ </item>
+ <item>
+ <spacer>
+ <property name="orientation" >
+ <enum>Qt::Vertical</enum>
+ </property>
+ <property name="sizeHint" >
+ <size>
+ <width>20</width>
+ <height>40</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ <item>
+ <widget class="QDialogButtonBox" name="buttonBox" >
+ <property name="orientation" >
+ <enum>Qt::Horizontal</enum>
+ </property>
+ <property name="standardButtons" >
+ <set>QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok</set>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ <tabstops>
+ <tabstop>rdioButton1D</tabstop>
+ <tabstop>radioButton2D</tabstop>
+ <tabstop>radioButton3D</tabstop>
+ <tabstop>spinBox2D</tabstop>
+ <tabstop>spinBox1D</tabstop>
+ <tabstop>spinBox3D</tabstop>
+ <tabstop>buttonBox</tabstop>
+ </tabstops>
+ <resources/>
+ <connections>
+ <connection>
+ <sender>buttonBox</sender>
+ <signal>accepted()</signal>
+ <receiver>NewNeighbourhoodDialog</receiver>
+ <slot>accept()</slot>
+ <hints>
+ <hint type="sourcelabel" >
+ <x>248</x>
+ <y>254</y>
+ </hint>
+ <hint type="destinationlabel" >
+ <x>157</x>
+ <y>274</y>
+ </hint>
+ </hints>
+ </connection>
+ <connection>
+ <sender>buttonBox</sender>
+ <signal>rejected()</signal>
+ <receiver>NewNeighbourhoodDialog</receiver>
+ <slot>reject()</slot>
+ <hints>
+ <hint type="sourcelabel" >
+ <x>316</x>
+ <y>260</y>
+ </hint>
+ <hint type="destinationlabel" >
+ <x>286</x>
+ <y>274</y>
+ </hint>
+ </hints>
+ </connection>
+ <connection>
+ <sender>radioButton2D</sender>
+ <signal>toggled(bool)</signal>
+ <receiver>spinBox2D</receiver>
+ <slot>setEnabled(bool)</slot>
+ <hints>
+ <hint type="sourcelabel" >
+ <x>170</x>
+ <y>55</y>
+ </hint>
+ <hint type="destinationlabel" >
+ <x>228</x>
+ <y>151</y>
+ </hint>
+ </hints>
+ </connection>
+ <connection>
+ <sender>radioButton3D</sender>
+ <signal>toggled(bool)</signal>
+ <receiver>spinBox2D</receiver>
+ <slot>setEnabled(bool)</slot>
+ <hints>
+ <hint type="sourcelabel" >
+ <x>286</x>
+ <y>51</y>
+ </hint>
+ <hint type="destinationlabel" >
+ <x>333</x>
+ <y>161</y>
+ </hint>
+ </hints>
+ </connection>
+ <connection>
+ <sender>radioButton3D</sender>
+ <signal>toggled(bool)</signal>
+ <receiver>spinBox3D</receiver>
+ <slot>setEnabled(bool)</slot>
+ <hints>
+ <hint type="sourcelabel" >
+ <x>358</x>
+ <y>47</y>
+ </hint>
+ <hint type="destinationlabel" >
+ <x>311</x>
+ <y>186</y>
+ </hint>
+ </hints>
+ </connection>
+ </connections>
+</ui>
Added: trunk/qcell/visgui/NewNeighbourhoodWizard.cpp
===================================================================
--- trunk/qcell/visgui/NewNeighbourhoodWizard.cpp (rev 0)
+++ trunk/qcell/visgui/NewNeighbourhoodWizard.cpp 2007-01-23 20:15:29 UTC (rev 238)
@@ -0,0 +1,14 @@
+/**@file NewNeighbourhoodWizard.cpp
+ * @author czarny
+ * @date
+ * Created: wto 23 sty 2007 20:32:50 CET \n
+ * Last Update: wto 23 sty 2007 20:32:50 CET
+ */
+
+#include "NewNeighbourhoodWizard.h"
+
+NewNeighbourhoodWizard::NewNeighbourhoodWizard()
+{
+ setupUi(this);
+}
+
Added: trunk/qcell/visgui/NewNeighbourhoodWizard.h
===================================================================
--- trunk/qcell/visgui/NewNeighbourhoodWizard.h (rev 0)
+++ trunk/qcell/visgui/NewNeighbourhoodWizard.h 2007-01-23 20:15:29 UTC (rev 238)
@@ -0,0 +1,23 @@
+/**@file NewNeighbourhoodWizard.h
+ * @author czarny
+ * @date
+ * Created: wto 23 sty 2007 20:33:00 CET \n
+ * Last Update: wto 23 sty 2007 20:33:00 CET
+ * @brief A wizard to get basic data about a new world
+ */
+
+#ifndef __NEWNEIGHBOURHOODWIZARD_H__
+#define __NEWNEIGHBOURHOODWIZARD_H__
+
+#include "ui_NewNeighbourhoodDialog.h"
+#include <QDialog>
+
+class NewNeighbourhoodWizard: public QDialog, public Ui::NewNeighbourhoodDialog
+{
+ Q_OBJECT
+public:
+ NewNeighbourhoodWizard();
+};
+
+#endif // __NEWNEIGHBOURHOODWIZARD_H__
+
Added: trunk/qcell/visgui/NewWorldDialog.ui
===================================================================
--- trunk/qcell/visgui/NewWorldDialog.ui (rev 0)
+++ trunk/qcell/visgui/NewWorldDialog.ui 2007-01-23 20:15:29 UTC (rev 238)
@@ -0,0 +1,297 @@
+<ui version="4.0" >
+ <class>NewWorldDialog</class>
+ <widget class="QDialog" name="NewWorldDialog" >
+ <property name="geometry" >
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>400</width>
+ <height>285</height>
+ </rect>
+ </property>
+ <property name="windowTitle" >
+ <string>New World setup</string>
+ </property>
+ <layout class="QVBoxLayout" >
+ <property name="margin" >
+ <number>9</number>
+ </property>
+ <property name="spacing" >
+ <number>6</number>
+ </property>
+ <item>
+ <layout class="QVBoxLayout" >
+ <property name="margin" >
+ <number>0</number>
+ </property>
+ <property name="spacing" >
+ <number>6</number>
+ </property>
+ <item>
+ <widget class="QGroupBox" name="dimensionsGroupBox" >
+ <property name="title" >
+ <string>Dimensions selection</string>
+ </property>
+ <layout class="QHBoxLayout" >
+ <property name="margin" >
+ <number>9</number>
+ </property>
+ <property name="spacing" >
+ <number>6</number>
+ </property>
+ <item>
+ <widget class="QRadioButton" name="rdioButton1D" >
+ <property name="text" >
+ <string>1D</string>
+ </property>
+ <property name="checked" >
+ <bool>true</bool>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QRadioButton" name="radioButton2D" >
+ <property name="text" >
+ <string>2D</string>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QRadioButton" name="radioButton3D" >
+ <property name="text" >
+ <string>3D</string>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ </layout>
+ </item>
+ <item>
+ <layout class="QHBoxLayout" >
+ <property name="margin" >
+ <number>0</number>
+ </property>
+ <property name="spacing" >
+ <number>6</number>
+ </property>
+ <item>
+ <widget class="QGroupBox" name="sizesGroupBox" >
+ <property name="title" >
+ <string>Sizes specyfication</string>
+ </property>
+ <layout class="QGridLayout" >
+ <property name="margin" >
+ <number>9</number>
+ </property>
+ <property name="spacing" >
+ <number>6</number>
+ </property>
+ <item row="2" column="1" >
+ <widget class="QSpinBox" name="spinBox3D" >
+ <property name="enabled" >
+ <bool>false</bool>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="1" >
+ <widget class="QSpinBox" name="spinBox2D" >
+ <property name="enabled" >
+ <bool>false</bool>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="1" >
+ <widget class="QSpinBox" name="spinBox1D" >
+ <property name="minimum" >
+ <number>1</number>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="0" >
+ <widget class="QLabel" name="label3D" >
+ <property name="text" >
+ <string>Size Z</string>
+ </property>
+ <property name="buddy" >
+ <cstring>spinBox3D</cstring>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="0" >
+ <widget class="QLabel" name="label1D" >
+ <property name="text" >
+ <string>Size X</string>
+ </property>
+ <property name="buddy" >
+ <cstring>spinBox1D</cstring>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="0" >
+ <widget class="QLabel" name="label2D" >
+ <property name="text" >
+ <string>Size Y</string>
+ </property>
+ <property name="buddy" >
+ <cstring>spinBox2D</cstring>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
+ <widget class="QGroupBox" name="othersGroupBox" >
+ <property name="title" >
+ <string>Others</string>
+ </property>
+ <layout class="QHBoxLayout" >
+ <property name="margin" >
+ <number>9</number>
+ </property>
+ <property name="spacing" >
+ <number>6</number>
+ </property>
+ <item>
+ <widget class="QLabel" name="defaultValueLabel" >
+ <property name="text" >
+ <string>Default value</string>
+ </property>
+ <property name="buddy" >
+ <cstring>defaultValueSpinBox</cstring>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QSpinBox" name="defaultValueSpinBox" >
+ <property name="maximum" >
+ <number>59</number>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ </layout>
+ </item>
+ <item>
+ <spacer>
+ <property name="orientation" >
+ <enum>Qt::Vertical</enum>
+ </property>
+ <property name="sizeHint" >
+ <size>
+ <width>20</width>
+ <height>40</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ <item>
+ <widget class="QDialogButtonBox" name="buttonBox" >
+ <property name="orientation" >
+ <enum>Qt::Horizontal</enum>
+ </property>
+ <property name="standardButtons" >
+ <set>QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok</set>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ <tabstops>
+ <tabstop>rdioButton1D</tabstop>
+ <tabstop>radioButton2D</tabstop>
+ <tabstop>radioButton3D</tabstop>
+ <tabstop>spinBox1D</tabstop>
+ <tabstop>spinBox2D</tabstop>
+ <tabstop>spinBox3D</tabstop>
+ <tabstop>defaultValueSpinBox</tabstop>
+ <tabstop>buttonBox</tabstop>
+ </tabstops>
+ <resources/>
+ <connections>
+ <connection>
+ <sender>buttonBox</sender>
+ <signal>accepted()</signal>
+ <receiver>NewWorldDialog</receiver>
+ <slot>accept()</slot>
+ <hints>
+ <hint type="sourcelabel" >
+ <x>248</x>
+ <y>254</y>
+ </hint>
+ <hint type="destinationlabel" >
+ <x>157</x>
+ <y>274</y>
+ </hint>
+ </hints>
+ </connection>
+ <connection>
+ <sender>buttonBox</sender>
+ <signal>rejected()</signal>
+ <receiver>NewWorldDialog</receiver>
+ <slot>reject()</slot>
+ <hints>
+ <hint type="sourcelabel" >
+ <x>316</x>
+ <y>260</y>
+ </hint>
+ <hint type="destinationlabel" >
+ <x>286</x>
+ <y>274</y>
+ </hint>
+ </hints>
+ </connection>
+ <connection>
+ <sender>radioButton3D</sender>
+ <signal>toggled(bool)</signal>
+ <receiver>spinBox3D</receiver>
+ <slot>setEnabled(bool)</slot>
+ <hints>
+ <hint type="sourcelabel" >
+ <x>333</x>
+ <y>56</y>
+ </hint>
+ <hint type="destinationlabel" >
+ <x>160</x>
+ <y>190</y>
+ </hint>
+ </hints>
+ </connection>
+ <connection>
+ <sender>radioButton2D</sender>
+ <signal>toggled(bool)</signal>
+ <receiver>spinBox2D</receiver>
+ <slot>setEnabled(bool)</slot>
+ <hints>
+ <hint type="sourcelabel" >
+ <x>146</x>
+ <y>45</y>
+ </hint>
+ <hint type="destinationlabel" >
+ <x>142</x>
+ <y>163</y>
+ </hint>
+ </hints>
+ </connection>
+ <connection>
+ <sender>radioButton3D</sender>
+ <signal>toggled(bool)</signal>
+ <receiver>spinBox2D</receiver>
+ <slot>setEnabled(bool)</slot>
+ <hints>
+ <hint type="sourcelabel" >
+ <x>304</x>
+ <y>56</y>
+ </hint>
+ <hint type="destinationlabel" >
+ <x>171</x>
+ <y>158</y>
+ </hint>
+ </hints>
+ </connection>
+ </connections>
+</ui>
Added: trunk/qcell/visgui/NewWorldWizard.cpp
===================================================================
--- trunk/qcell/visgui/NewWorldWizard.cpp (rev 0)
+++ trunk/qcell/visgui/NewWorldWizard.cpp 2007-01-23 20:15:29 UTC (rev 238)
@@ -0,0 +1,14 @@
+/**@file NewWorldWizard.cpp
+ * @author czarny
+ * @date
+ * Created: wto 23 sty 2007 20:32:50 CET \n
+ * Last Update: wto 23 sty 2007 20:32:50 CET
+ */
+
+#include "NewWorldWizard.h"
+
+NewWorldWizard::NewWorldWizard()
+{
+ setupUi(this);
+}
+
Added: trunk/qcell/visgui/NewWorldWizard.h
===================================================================
--- trunk/qcell/visgui/NewWorldWizard.h (rev 0)
+++ trunk/qcell/visgui/NewWorldWizard.h 2007-01-23 20:15:29 UTC (rev 238)
@@ -0,0 +1,22 @@
+/**@file NewWorldWizard.h
+ * @author czarny
+ * @date
+ * Created: wto 23 sty 2007 20:33:00 CET \n
+ * Last Update: wto 23 sty 2007 20:33:00 CET
+ * @brief A wizard to get basic data about a new world
+ */
+
+#ifndef __NEWWORLDWIZARD_H__
+#define __NEWWORLDWIZARD_H__
+
+#include "ui_NewWorldDialog.h"
+#include <QDialog>
+
+class NewWorldWizard: public QDialog, public Ui::NewWorldDialog
+{
+ Q_OBJECT
+public:
+ NewWorldWizard();
+};
+
+#endif // __NEWWORLDWIZARD_H__
Modified: trunk/qcell/visgui/visgui.pro
===================================================================
--- trunk/qcell/visgui/visgui.pro 2007-01-23 18:36:35 UTC (rev 237)
+++ trunk/qcell/visgui/visgui.pro 2007-01-23 20:15:29 UTC (rev 238)
@@ -10,6 +10,8 @@
ExperimentSetup.ui \
ElementalRulesWidget.ui \
RulePropertiesDialog.ui \
+ NewWorldDialog.ui \
+ NewNeighbourhoodDialog.ui \
../baseheaders/simulationwindow.ui \
../baseheaders/basetools.ui \
../baseheaders/view3dtools.ui \
@@ -21,6 +23,8 @@
ExperimentSetup.h \
ElementalRulesWidget.h \
RuleProperties.h \
+ NewWorldWizard.h \
+ NewNeighbourhoodWizard.h \
../baseheaders/Client.h \
../baseheaders/ClientInfo.h \
../baseheaders/BaseDataTypes.h \
@@ -45,6 +49,8 @@
ExperimentSetup.cpp \
ElementalRulesWidget.cpp \
RuleProperties.cpp \
+ NewWorldWizard.cpp \
+ NewNeighbourhoodWizard.cpp \
../basesources/Client.cpp \
../basesources/ClientInfo.cpp \
../basesources/Neighbourhood.cpp \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|