diff --git a/fossils.py b/fossils.py index c8767a74b03b50f39dc0ca356d6316cf9c240189..2dd7cbed6c74fcbcf650d7df11b053d286306b33 100644 --- a/fossils.py +++ b/fossils.py @@ -27,6 +27,9 @@ class Window(QWidget, Ui_Form): self.runPushButton.setIcon(QIcon(':/media-seek-forward.png')) self.viewPushButton.setIcon(QIcon(':/video-display.png')) + self.inpFileResetPushButton.setIcon(QIcon(':/edit-undo.png')) + self.wrkspResetPushButton.setIcon(QIcon(':/edit-undo.png')) + # read Qt settings for the application settings = QSettings() # self.restoreGeometry(settings.value("Geometry", self.saveGeometry())) @@ -40,6 +43,12 @@ class Window(QWidget, Ui_Form): def on_runPushButton_pressed(self): # print("runPushButton...") + if not os.path.isfile(self.inpFileLineEdit.text()): + QMessageBox.critical(self, "Error", "Input file does not exist!") + return + if not os.path.isdir(self.wrkspLineEdit.text()): + QMessageBox.critical(self, "Error", "Workspace does not exist!") + return self.action = 'run' self.close() @@ -49,13 +58,21 @@ class Window(QWidget, Ui_Form): self.close() def on_inpFilePushButton_pressed(self): - # print("inpFilePushButton...") + # try to set a relevant starting folder + default = os.path.join(os.path.dirname(__file__), 'models') + curfile = self.inpFileLineEdit.text() + if curfile: + curfolder = os.path.dirname(curfile) + if os.path.isdir(curfolder): + default = curfolder + fname = QFileDialog.getOpenFileName( - None, 'Select input file', '', filter='Python File (*.py)') + self, 'Select input file', default, filter='Python File (*.py)') pyfile = fname[0] if pyfile: self.inpFileLineEdit.setText(QDir.toNativeSeparators(pyfile)) + def on_inpFileEditPushButton_pressed(self): """Open input file with a text editor """ @@ -69,6 +86,9 @@ class Window(QWidget, Ui_Form): subprocess.Popen([ editor, self.inpFileLineEdit.text() ]) break + def on_inpFileResetPushButton_pressed(self): + self.inpFileLineEdit.setText("") + def on_wrkspExplorePushButton_pressed(self): """Browse workspace folder with system explorer """ @@ -80,6 +100,10 @@ class Window(QWidget, Ui_Form): if dir: self.wrkspLineEdit.setText(QDir.toNativeSeparators(dir)) + def on_wrkspResetPushButton_pressed(self): + self.wrkspLineEdit.setText("") + + def closeEvent(self, event): """save settings to registry and quit """ diff --git a/fossils.ui b/fossils.ui index e3e7eff9ac4f03a6fd3c7fb2d428ca8b4b774915..c849628d3a4238a57c201c7a3514688e12a3d98f 100644 --- a/fossils.ui +++ b/fossils.ui @@ -6,7 +6,7 @@ <rect> <x>0</x> <y>0</y> - <width>708</width> + <width>745</width> <height>154</height> </rect> </property> @@ -18,6 +18,12 @@ <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0"> <widget class="QLabel" name="inpFilelabel"> + <property name="toolTip"> + <string>name of the python file</string> + </property> + <property name="statusTip"> + <string/> + </property> <property name="text"> <string>input file</string> </property> @@ -28,6 +34,12 @@ </item> <item row="0" column="2"> <widget class="QToolButton" name="inpFilePushButton"> + <property name="toolTip"> + <string>select a python file</string> + </property> + <property name="whatsThis"> + <string/> + </property> <property name="text"> <string>...</string> </property> @@ -35,13 +47,38 @@ </item> <item row="0" column="3"> <widget class="QToolButton" name="inpFileEditPushButton"> + <property name="toolTip"> + <string>open a text editor</string> + </property> + <property name="whatsThis"> + <string/> + </property> <property name="text"> <string>Edit</string> </property> </widget> </item> + <item row="0" column="4"> + <widget class="QToolButton" name="inpFileResetPushButton"> + <property name="toolTip"> + <string>reset to default</string> + </property> + <property name="whatsThis"> + <string/> + </property> + <property name="text"> + <string>Reset</string> + </property> + </widget> + </item> <item row="1" column="0"> <widget class="QLabel" name="wrksplabel"> + <property name="toolTip"> + <string>folder where the results are stored</string> + </property> + <property name="statusTip"> + <string/> + </property> <property name="text"> <string>workspace</string> </property> @@ -52,6 +89,12 @@ </item> <item row="1" column="2"> <widget class="QToolButton" name="wrkspPushButton"> + <property name="toolTip"> + <string>select a folder</string> + </property> + <property name="whatsThis"> + <string/> + </property> <property name="text"> <string>...</string> </property> @@ -59,11 +102,30 @@ </item> <item row="1" column="3"> <widget class="QToolButton" name="wrkspExplorePushButton"> + <property name="toolTip"> + <string>open the folder in the explorer</string> + </property> + <property name="whatsThis"> + <string/> + </property> <property name="text"> <string>Explore</string> </property> </widget> </item> + <item row="1" column="4"> + <widget class="QToolButton" name="wrkspResetPushButton"> + <property name="toolTip"> + <string>reset to default</string> + </property> + <property name="whatsThis"> + <string/> + </property> + <property name="text"> + <string>Reset</string> + </property> + </widget> + </item> </layout> </item> <item> @@ -83,6 +145,12 @@ </item> <item> <widget class="QPushButton" name="runPushButton"> + <property name="toolTip"> + <string>start the simulation!</string> + </property> + <property name="statusTip"> + <string/> + </property> <property name="text"> <string>Run</string> </property> @@ -90,6 +158,12 @@ </item> <item> <widget class="QPushButton" name="viewPushButton"> + <property name="toolTip"> + <string>read/display the results stored in the folder of the workspace</string> + </property> + <property name="statusTip"> + <string/> + </property> <property name="text"> <string>View</string> </property> diff --git a/pics/edit-undo.png b/pics/edit-undo.png new file mode 100644 index 0000000000000000000000000000000000000000..61b2ce9a5310fb03eac84ae2710e20bfca3f9e75 Binary files /dev/null and b/pics/edit-undo.png differ diff --git a/resources.py b/resources.py index 5ece62960695075c547a061707d6e4a6ec4e9a77..7a82dedf8e50316342d63770c2466b9f1125d1eb 100644 --- a/resources.py +++ b/resources.py @@ -9,6 +9,84 @@ from PyQt5 import QtCore qt_resource_data = b"\ +\x00\x00\x04\xb5\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x04\x6c\x49\x44\x41\x54\x58\x85\xed\x94\x5b\x6c\x14\x55\ +\x18\xc7\xff\x67\x2e\x3b\xbb\x3b\xb3\xb3\xb3\x33\xee\xb2\xcb\x2e\ +\x77\xea\x4b\x81\xb5\x98\x60\x8c\x49\x0b\x41\x0a\x89\x17\xc0\x58\ +\x1f\x9a\x52\x85\x17\x9e\xac\x25\xf8\xa6\x11\x22\x11\x12\xb9\x93\ +\xf0\x2a\xe2\x83\x0f\x9a\x82\x0f\x26\xd5\xc4\x04\x78\x41\x84\x40\ +\x6b\x8c\x06\x94\x76\x8b\x29\x58\xda\xee\xec\x6e\xbb\xdb\xb9\xcf\ +\xf1\x61\x69\xad\x65\xdb\xc2\x9b\x89\xfd\x27\x93\x7c\xc9\xf9\x9d\ +\xc9\x2f\xdf\xf9\xce\x01\x16\xb2\x90\x85\xfc\xdf\xc3\x4e\xab\x55\ +\x00\x8b\x00\x08\x00\x2c\x00\xfe\x3c\x7b\x9f\x96\x9f\x57\x20\xdd\ +\xbc\x75\x73\xdf\xe2\x4c\x9a\x29\xe8\x85\x01\xdb\xb6\xdd\x47\x3f\ +\x9e\x2d\x4f\xcb\xcf\x2b\xa0\xad\x5a\xbd\xf2\xdd\x3d\xbb\xf7\x3c\ +\x37\x5e\x2e\xb5\x48\x72\x64\x70\xe8\xc1\x90\x0e\xc0\x06\xe0\xd6\ +\xd8\xab\xae\x5a\xbd\xb2\xe3\x9d\xb7\x77\x37\x94\x2b\x63\x2d\x51\ +\x45\x19\x2c\xe8\x05\xdd\x75\xdd\xd9\xf8\xb9\x05\x64\x59\x56\x33\ +\x4b\xd2\x1d\x47\x3f\x3d\xce\x6f\x69\x6e\x96\xef\xe5\x72\xdb\x62\ +\x6a\x34\xcb\x71\x81\x3b\xa6\x69\xda\xb6\x6d\x9b\x00\xe8\x24\x9f\ +\x48\x24\x62\xc9\xd4\xa2\x8e\x63\x47\x4f\x70\x5b\x9a\xb7\xca\xb9\ +\xfe\xbe\x6d\xb2\x1c\xc9\x86\x42\xe1\x3b\x0c\xc3\x58\xe5\x72\xd9\ +\x9a\xce\xcf\x2b\x90\x48\x24\x62\xf1\xb8\xd6\xb1\xab\xad\x1d\x94\ +\xfa\x78\xf5\x95\xd7\xf8\xba\x67\xeb\x96\xdf\xf9\xfd\x76\xeb\x33\ +\x71\xcd\x17\xc3\xd2\x80\x2c\xcb\x9e\xae\xeb\x16\x00\xa4\x52\x29\ +\x35\xa6\x2a\x33\xf8\xd5\xcb\x7f\xbb\xfd\x6b\x6b\x54\x91\x7d\x35\ +\xa6\xdd\x93\x65\xd9\xcd\xe7\xf3\xf6\x13\x09\x2c\x5b\xb6\x2c\x16\ +\x89\x88\xef\xed\x6a\x6b\xc7\x78\x65\x1c\x8e\x6b\x23\x93\x59\xca\ +\xb4\xbc\xf9\x56\xc0\x34\x27\x36\x8c\xe6\x1f\xee\x0c\x05\x85\xbe\ +\x58\x4c\x2b\x69\x9a\x66\xc9\xb2\x2c\x87\x42\x42\x6d\xde\x30\x5e\ +\x18\x1a\xbe\xbf\x53\x0c\x87\xfb\x53\xa9\x74\x49\x96\x65\x6b\x64\ +\x64\xc4\xab\x25\x40\x26\x8b\xc6\xc6\xc6\x15\xc1\x10\xdf\xff\xfd\ +\x77\x3f\xa0\x38\x56\x00\x01\x01\x08\xc0\xb3\x1c\x04\x21\x84\x87\ +\xc3\x43\x38\x70\xe0\x23\x73\xe8\xe1\x5f\xdd\xa6\xe3\x1c\x62\x3c\ +\xa6\x08\xe2\x3d\xc6\x73\x2c\x87\xe0\x0c\xde\x03\x0e\x05\xd9\xe0\ +\x9f\xd9\x6c\xb6\x70\xf0\xe0\xc1\x7f\xdd\x96\xa9\x0e\x34\x34\x34\ +\x28\x20\xb4\xb3\xb5\xb5\x0d\x85\x92\x0e\xcf\xf3\xe0\x7a\x3e\x5c\ +\xd7\x81\x69\x19\x90\xa4\x08\x76\x6c\x7f\x83\x5b\x9c\xce\xd4\xfd\ +\xf2\x73\x6f\x1b\x61\x49\x91\x10\x6c\x6e\x6d\x6d\x83\x65\x5b\x20\ +\x0c\x01\x43\x18\x00\x80\xeb\x3a\x90\xa4\x08\xb6\xbf\xbe\x83\x4b\ +\xa7\xd3\x75\x3d\x37\x6f\xb6\xf9\xbe\x6f\x54\x2a\x13\x83\xaa\xaa\ +\x96\x07\x06\x06\xa6\x24\x98\xc9\x42\x51\x14\x48\x92\x08\x00\xe0\ +\x58\x1e\x2c\xcb\x81\x63\x19\x10\xc2\x80\x52\xa0\x3c\x51\x46\x69\ +\xbc\x88\x4d\x4d\x9b\xb8\x13\x27\x4e\x47\x42\x41\xe1\xb0\x28\x56\ +\x79\xdb\xb6\xab\x9f\x63\xc1\xb4\x4c\x18\xa6\x81\xe2\x58\x01\xa5\ +\xf1\x22\x36\x36\x6d\xe2\x4e\x9e\x3c\x13\x09\x08\xdc\x61\xdf\xb7\ +\x5a\xd6\xae\x5d\x1b\x9e\xde\x01\x6e\xb2\xd0\x34\x8d\x16\x8a\x55\ +\x31\x41\x08\x82\x90\xea\xe9\x50\xea\xc3\xf7\x7d\x04\x78\x01\x41\ +\x41\xc0\xb5\x9f\x7e\x74\xcf\x7f\x71\xce\x88\xca\xd1\xc3\x8e\xeb\ +\x1c\x99\x9f\xbf\xea\x7e\x7e\xfe\x9c\x11\x53\x62\x9f\x44\xa3\xda\ +\x97\xe1\x70\x78\xa2\xa6\x40\x3c\x1e\xa7\xb6\x53\x5d\x0b\x06\x04\ +\x80\x10\x50\xbf\x2a\xc4\xf3\x01\xe8\x7a\x1e\xa7\x4e\x1f\x37\xf4\ +\xbc\xde\xad\x26\xe2\x87\xe4\xa0\xac\x0f\xde\x1f\x38\x32\x27\x7f\ +\xea\x98\xa1\xeb\x7a\x77\x22\x95\xfa\x58\x8d\xa8\xf7\x3a\x3b\x3b\ +\x4b\x84\x10\x5a\x53\x20\x12\x89\x50\xf1\xd1\x11\xb0\x1c\x07\xdf\ +\xf7\xc1\xf2\x3c\xa8\x4f\xd1\xdd\xfd\xad\x79\xfd\xc6\xb5\x07\x0c\ +\x61\xf7\x67\xd7\xad\xbf\x6a\x18\x46\x81\xe7\xf9\x64\xa1\x34\x32\ +\x3b\x7f\xfd\xda\x03\x9e\x67\xf7\x67\xd7\x3d\x7f\xd5\x30\x8c\xc2\ +\xde\xbd\x7b\x9d\x7d\xfb\xf6\x61\x66\xa6\x04\xa2\xd1\x28\xd5\x8b\ +\x55\x01\xcf\xf3\xc0\x73\x3c\xfa\x73\x7d\xee\xc5\x6f\xba\x2c\xdf\ +\xf7\x8e\xad\xa9\x6f\xf8\xcc\x34\xcd\x7c\x7b\x7b\x7b\x05\x00\xba\ +\xba\xba\xe8\xe4\x0c\xfc\xc3\xdf\x75\x2f\x5c\xec\xb2\x28\xf5\x8f\ +\xae\x59\xd3\x70\x6e\x3a\x3f\x5b\xa6\x04\x54\x55\xc5\xc8\x68\x75\ +\x3e\x6c\xdb\xc6\x85\x8b\x5f\x1b\xa3\xf9\x91\xcb\xc9\x44\xe2\xc3\ +\x4c\x66\x45\xff\x95\x2b\x57\xc6\xa6\x5f\x21\x45\x51\xa8\x34\x6d\ +\x08\xbb\x2e\x7c\x65\xe4\xf3\xa3\x97\x97\xa4\x17\x7f\x90\x4c\x2e\ +\xcd\xcd\xe4\xe7\x15\x50\x14\x85\x8a\x92\x88\x5b\x3d\x37\x8c\xde\ +\xde\x5b\x79\x2e\x10\x78\x7f\x7d\x76\xc3\x25\x45\x51\x8a\xf5\xf5\ +\xf5\x8f\xbd\x66\x9a\xa6\x41\x94\xc2\xb8\xd9\x73\xdd\xe8\xed\xb9\ +\x95\x17\x02\xa1\xfd\x2f\xbd\xd8\x74\x49\x10\x84\x52\x2d\xfe\x49\ +\x04\x7c\x51\x14\xd1\x9f\xfb\xe3\x4c\x53\xe3\xcb\x67\x2b\x95\x8a\ +\x9e\xcd\x66\x67\x6d\xdf\x24\x9f\xcb\xdd\x3d\xb3\xb1\x69\xcb\x59\ +\x49\x92\xf4\x64\x32\x39\x67\xbb\x6b\x65\xea\x25\x1c\x1e\x1e\x96\ +\x28\xa5\x62\x20\x10\xb0\x14\x45\x19\x23\x84\xcc\xd9\x3e\x4a\xa9\ +\x54\xa9\x54\x44\xc7\x71\x9e\x88\x5f\xc8\x42\x16\xf2\x9f\xcd\xdf\ +\x59\xc3\x28\x7d\x22\x67\xcd\xde\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ \x00\x00\x08\xa7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -452,84 +530,6 @@ qt_resource_data = b"\ \x9b\x4d\x09\x04\x80\xe2\xe0\xbe\xfd\xb4\xe1\x87\xc5\x00\x79\x14\ \x45\x0e\x46\x9e\x64\x9f\x15\xfe\x0b\xcb\xb8\x24\x28\xb2\xbb\x52\ \x2f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x04\xb5\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ -\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x04\x6c\x49\x44\x41\x54\x58\x85\xed\x94\x5b\x6c\x14\x55\ -\x18\xc7\xff\x67\x2e\x3b\xbb\x3b\xb3\xb3\xb3\x33\xee\xb2\xcb\x2e\ -\x77\xea\x4b\x81\xb5\x98\x60\x8c\x49\x0b\x41\x0a\x89\x17\xc0\x58\ -\x1f\x9a\x52\x85\x17\x9e\xac\x25\xf8\xa6\x11\x22\x11\x12\xb9\x93\ -\xf0\x2a\xe2\x83\x0f\x9a\x82\x0f\x26\xd5\xc4\x04\x78\x41\x84\x40\ -\x6b\x8c\x06\x94\x76\x8b\x29\x58\xda\xee\xec\x6e\xbb\xdb\xb9\xcf\ -\xf1\x61\x69\xad\x65\xdb\xc2\x9b\x89\xfd\x27\x93\x7c\xc9\xf9\x9d\ -\xc9\x2f\xdf\xf9\xce\x01\x16\xb2\x90\x85\xfc\xdf\xc3\x4e\xab\x55\ -\x00\x8b\x00\x08\x00\x2c\x00\xfe\x3c\x7b\x9f\x96\x9f\x57\x20\xdd\ -\xbc\x75\x73\xdf\xe2\x4c\x9a\x29\xe8\x85\x01\xdb\xb6\xdd\x47\x3f\ -\x9e\x2d\x4f\xcb\xcf\x2b\xa0\xad\x5a\xbd\xf2\xdd\x3d\xbb\xf7\x3c\ -\x37\x5e\x2e\xb5\x48\x72\x64\x70\xe8\xc1\x90\x0e\xc0\x06\xe0\xd6\ -\xd8\xab\xae\x5a\xbd\xb2\xe3\x9d\xb7\x77\x37\x94\x2b\x63\x2d\x51\ -\x45\x19\x2c\xe8\x05\xdd\x75\xdd\xd9\xf8\xb9\x05\x64\x59\x56\x33\ -\x4b\xd2\x1d\x47\x3f\x3d\xce\x6f\x69\x6e\x96\xef\xe5\x72\xdb\x62\ -\x6a\x34\xcb\x71\x81\x3b\xa6\x69\xda\xb6\x6d\x9b\x00\xe8\x24\x9f\ -\x48\x24\x62\xc9\xd4\xa2\x8e\x63\x47\x4f\x70\x5b\x9a\xb7\xca\xb9\ -\xfe\xbe\x6d\xb2\x1c\xc9\x86\x42\xe1\x3b\x0c\xc3\x58\xe5\x72\xd9\ -\x9a\xce\xcf\x2b\x90\x48\x24\x62\xf1\xb8\xd6\xb1\xab\xad\x1d\x94\ -\xfa\x78\xf5\x95\xd7\xf8\xba\x67\xeb\x96\xdf\xf9\xfd\x76\xeb\x33\ -\x71\xcd\x17\xc3\xd2\x80\x2c\xcb\x9e\xae\xeb\x16\x00\xa4\x52\x29\ -\x35\xa6\x2a\x33\xf8\xd5\xcb\x7f\xbb\xfd\x6b\x6b\x54\x91\x7d\x35\ -\xa6\xdd\x93\x65\xd9\xcd\xe7\xf3\xf6\x13\x09\x2c\x5b\xb6\x2c\x16\ -\x89\x88\xef\xed\x6a\x6b\xc7\x78\x65\x1c\x8e\x6b\x23\x93\x59\xca\ -\xb4\xbc\xf9\x56\xc0\x34\x27\x36\x8c\xe6\x1f\xee\x0c\x05\x85\xbe\ -\x58\x4c\x2b\x69\x9a\x66\xc9\xb2\x2c\x87\x42\x42\x6d\xde\x30\x5e\ -\x18\x1a\xbe\xbf\x53\x0c\x87\xfb\x53\xa9\x74\x49\x96\x65\x6b\x64\ -\x64\xc4\xab\x25\x40\x26\x8b\xc6\xc6\xc6\x15\xc1\x10\xdf\xff\xfd\ -\x77\x3f\xa0\x38\x56\x00\x01\x01\x08\xc0\xb3\x1c\x04\x21\x84\x87\ -\xc3\x43\x38\x70\xe0\x23\x73\xe8\xe1\x5f\xdd\xa6\xe3\x1c\x62\x3c\ -\xa6\x08\xe2\x3d\xc6\x73\x2c\x87\xe0\x0c\xde\x03\x0e\x05\xd9\xe0\ -\x9f\xd9\x6c\xb6\x70\xf0\xe0\xc1\x7f\xdd\x96\xa9\x0e\x34\x34\x34\ -\x28\x20\xb4\xb3\xb5\xb5\x0d\x85\x92\x0e\xcf\xf3\xe0\x7a\x3e\x5c\ -\xd7\x81\x69\x19\x90\xa4\x08\x76\x6c\x7f\x83\x5b\x9c\xce\xd4\xfd\ -\xf2\x73\x6f\x1b\x61\x49\x91\x10\x6c\x6e\x6d\x6d\x83\x65\x5b\x20\ -\x0c\x01\x43\x18\x00\x80\xeb\x3a\x90\xa4\x08\xb6\xbf\xbe\x83\x4b\ -\xa7\xd3\x75\x3d\x37\x6f\xb6\xf9\xbe\x6f\x54\x2a\x13\x83\xaa\xaa\ -\x96\x07\x06\x06\xa6\x24\x98\xc9\x42\x51\x14\x48\x92\x08\x00\xe0\ -\x58\x1e\x2c\xcb\x81\x63\x19\x10\xc2\x80\x52\xa0\x3c\x51\x46\x69\ -\xbc\x88\x4d\x4d\x9b\xb8\x13\x27\x4e\x47\x42\x41\xe1\xb0\x28\x56\ -\x79\xdb\xb6\xab\x9f\x63\xc1\xb4\x4c\x18\xa6\x81\xe2\x58\x01\xa5\ -\xf1\x22\x36\x36\x6d\xe2\x4e\x9e\x3c\x13\x09\x08\xdc\x61\xdf\xb7\ -\x5a\xd6\xae\x5d\x1b\x9e\xde\x01\x6e\xb2\xd0\x34\x8d\x16\x8a\x55\ -\x31\x41\x08\x82\x90\xea\xe9\x50\xea\xc3\xf7\x7d\x04\x78\x01\x41\ -\x41\xc0\xb5\x9f\x7e\x74\xcf\x7f\x71\xce\x88\xca\xd1\xc3\x8e\xeb\ -\x1c\x99\x9f\xbf\xea\x7e\x7e\xfe\x9c\x11\x53\x62\x9f\x44\xa3\xda\ -\x97\xe1\x70\x78\xa2\xa6\x40\x3c\x1e\xa7\xb6\x53\x5d\x0b\x06\x04\ -\x80\x10\x50\xbf\x2a\xc4\xf3\x01\xe8\x7a\x1e\xa7\x4e\x1f\x37\xf4\ -\xbc\xde\xad\x26\xe2\x87\xe4\xa0\xac\x0f\xde\x1f\x38\x32\x27\x7f\ -\xea\x98\xa1\xeb\x7a\x77\x22\x95\xfa\x58\x8d\xa8\xf7\x3a\x3b\x3b\ -\x4b\x84\x10\x5a\x53\x20\x12\x89\x50\xf1\xd1\x11\xb0\x1c\x07\xdf\ -\xf7\xc1\xf2\x3c\xa8\x4f\xd1\xdd\xfd\xad\x79\xfd\xc6\xb5\x07\x0c\ -\x61\xf7\x67\xd7\xad\xbf\x6a\x18\x46\x81\xe7\xf9\x64\xa1\x34\x32\ -\x3b\x7f\xfd\xda\x03\x9e\x67\xf7\x67\xd7\x3d\x7f\xd5\x30\x8c\xc2\ -\xde\xbd\x7b\x9d\x7d\xfb\xf6\x61\x66\xa6\x04\xa2\xd1\x28\xd5\x8b\ -\x55\x01\xcf\xf3\xc0\x73\x3c\xfa\x73\x7d\xee\xc5\x6f\xba\x2c\xdf\ -\xf7\x8e\xad\xa9\x6f\xf8\xcc\x34\xcd\x7c\x7b\x7b\x7b\x05\x00\xba\ -\xba\xba\xe8\xe4\x0c\xfc\xc3\xdf\x75\x2f\x5c\xec\xb2\x28\xf5\x8f\ -\xae\x59\xd3\x70\x6e\x3a\x3f\x5b\xa6\x04\x54\x55\xc5\xc8\x68\x75\ -\x3e\x6c\xdb\xc6\x85\x8b\x5f\x1b\xa3\xf9\x91\xcb\xc9\x44\xe2\xc3\ -\x4c\x66\x45\xff\x95\x2b\x57\xc6\xa6\x5f\x21\x45\x51\xa8\x34\x6d\ -\x08\xbb\x2e\x7c\x65\xe4\xf3\xa3\x97\x97\xa4\x17\x7f\x90\x4c\x2e\ -\xcd\xcd\xe4\xe7\x15\x50\x14\x85\x8a\x92\x88\x5b\x3d\x37\x8c\xde\ -\xde\x5b\x79\x2e\x10\x78\x7f\x7d\x76\xc3\x25\x45\x51\x8a\xf5\xf5\ -\xf5\x8f\xbd\x66\x9a\xa6\x41\x94\xc2\xb8\xd9\x73\xdd\xe8\xed\xb9\ -\x95\x17\x02\xa1\xfd\x2f\xbd\xd8\x74\x49\x10\x84\x52\x2d\xfe\x49\ -\x04\x7c\x51\x14\xd1\x9f\xfb\xe3\x4c\x53\xe3\xcb\x67\x2b\x95\x8a\ -\x9e\xcd\x66\x67\x6d\xdf\x24\x9f\xcb\xdd\x3d\xb3\xb1\x69\xcb\x59\ -\x49\x92\xf4\x64\x32\x39\x67\xbb\x6b\x65\xea\x25\x1c\x1e\x1e\x96\ -\x28\xa5\x62\x20\x10\xb0\x14\x45\x19\x23\x84\xcc\xd9\x3e\x4a\xa9\ -\x54\xa9\x54\x44\xc7\x71\x9e\x88\x5f\xc8\x42\x16\xf2\x9f\xcd\xdf\ -\x59\xc3\x28\x7d\x22\x67\xcd\xde\x00\x00\x00\x00\x49\x45\x4e\x44\ -\xae\x42\x60\x82\ \x00\x00\x06\x3c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -632,9 +632,117 @@ qt_resource_data = b"\ \x53\x3d\x60\xbc\x3d\xe6\xaa\xff\x4c\x02\x67\x10\xc2\x82\x36\x03\ \xcf\xb6\x8b\x1c\xce\xe2\x7f\x16\x4f\x0f\x53\x97\x54\x4d\x69\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x06\x41\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\ +\x67\x9b\xee\x3c\x1a\x00\x00\x05\xd3\x49\x44\x41\x54\x58\x85\xc5\ +\x96\x7d\x6c\x55\x77\x19\xc7\x3f\xcf\x39\xe7\xde\xde\xbe\x5d\x90\ +\x76\x75\x1b\x14\xba\x0e\xa1\x32\x64\xab\xc2\x22\xad\x9b\x38\xe6\ +\x1f\x25\x9a\xf9\x87\x24\x33\x01\x06\xcb\xa2\x73\x09\x26\x9a\x68\ +\x32\xc7\x62\x7c\x99\x26\x66\x46\x11\xff\x71\x8e\xd9\xd1\x2d\xea\ +\xa6\x2e\xbe\x64\xd9\x74\x33\xc8\x68\x81\xf1\xa6\xa1\xac\x8c\x52\ +\x46\x4b\x81\x4a\x69\xef\xe5\xf6\xf6\xbe\x9c\x97\xdf\xe3\x1f\xed\ +\xbd\x5e\x2e\x97\xae\x2f\x4b\x7c\x92\x27\xbf\xdf\xb9\xf7\x77\xce\ +\xf7\xf3\x7b\x7e\xcf\xf3\x9c\x23\xaa\xca\xff\xd3\xac\xd9\xdf\x2a\ +\xd2\xf5\xbc\x7c\xff\xe8\x33\x32\x6f\x2e\x00\xce\x6c\x6e\x3a\xf4\ +\xa2\x44\x8d\xf2\x47\x85\xf5\x63\x61\x7e\x32\x17\x80\x19\x47\x60\ +\xff\x1e\x59\x66\x8c\x9c\x58\xb4\xe2\xc1\x7b\x2d\xdb\x71\xe7\x22\ +\x3e\x63\x80\xce\x76\xd9\xe0\x38\x95\xc7\x96\xb5\x7e\xbb\xbe\xae\ +\xf1\xf3\x21\x85\x39\x27\xd0\xb4\x01\x0e\xec\x91\x27\x23\xf3\x1a\ +\xfe\x70\xc7\xfa\xa7\x2b\x2b\xaa\xab\x04\x64\xae\xda\xc0\x34\x72\ +\xe0\x6f\x1d\x52\x59\x0d\xbf\x5d\xb0\xe8\xbe\xfb\x17\x37\x7f\x25\ +\xa2\xde\x3b\x04\xd9\x33\x58\xe1\xdb\xf8\x20\x20\xa6\x04\x38\xd8\ +\x2e\x0d\xd5\x8e\xf5\xf7\xc5\x77\x3e\xb6\xa4\x76\xf1\xfa\x50\x90\ +\x39\x82\x06\x97\x41\x9c\x0f\x44\x7c\x4a\x80\xae\x5f\xcb\x7d\x76\ +\xa4\xfa\x95\xa6\xd6\x1f\x54\x97\xcf\xaf\x97\x20\x7d\x14\x35\x49\ +\xc0\x66\xe2\xe4\x04\x11\xb1\xc3\x36\x17\x0f\xbc\x20\x71\x84\x73\ +\x1a\xf0\x7b\x31\xbc\xba\x76\xab\x9e\x9a\x2e\x80\x94\x6a\x44\x5d\ +\x7b\xe4\x1b\xe5\xd1\xa5\x4f\x2d\x6b\xfd\x5e\xc4\x09\x05\x04\xd9\ +\xd3\xa0\x59\x54\xb3\xf9\x31\x54\xd5\x06\x66\x8c\xc0\x8f\xe3\xbb\ +\x23\xb8\xc9\x3e\x12\x57\xde\x73\x87\xfb\xff\xe5\xab\x71\xdf\xf0\ +\x3c\x1e\xb9\x67\x9b\x0e\xcf\x08\x60\x6f\xbb\x44\xc2\x36\xed\x0b\ +\x16\xae\x7f\xa0\xa1\xf9\xab\x11\x0d\xfa\x51\x7f\x08\x00\xc5\x07\ +\xf5\x26\x01\x5c\x30\x1e\x6a\xae\x12\xf8\x43\x60\xc6\x10\xab\x0a\ +\xbb\xec\xa3\x88\x53\xcf\xe8\xe0\xbf\xfd\x4b\x7d\x87\x32\x9e\x37\ +\xfa\x68\xeb\x26\x7d\x71\x5a\x00\x9d\xcf\x49\xb5\x15\xa2\xf3\xd6\ +\xa6\x4d\xcb\x6f\x5e\xf6\x40\xd8\x4f\x1f\x01\x4d\x92\x2f\x14\x0d\ +\x00\x1f\x55\x0f\x4c\x12\x6f\x7c\x2f\x1a\x5c\xbf\x41\xb1\x3e\x84\ +\x53\x7e\x37\x6a\xdf\x45\x7f\xf7\x9f\x33\xe3\xa3\x3d\x07\x62\xa3\ +\xb4\xb5\x6d\xd7\x6c\x29\x80\x7c\x19\xb6\x3e\xac\x63\x08\xbb\x47\ +\x06\xf7\x07\x5e\x36\x86\xe5\xd4\xa2\x26\x03\x26\x0d\x26\x8d\x6a\ +\x06\xd5\x2c\x1a\xc4\x70\x93\xaf\x97\x14\x07\x50\x13\xc3\x1b\x7f\ +\x9d\x20\xd5\x41\x63\xf3\xe7\x22\x0b\x16\x36\xb7\xcc\x9f\xcf\x8f\ +\xa6\x75\x04\x00\x9d\x7b\xa4\xcd\x09\x47\x5f\x5e\xde\xfa\x78\x45\ +\xa4\x22\x2a\x7e\xe6\x30\xa8\x0f\x18\x34\x48\xe0\x8d\xbf\x09\x9a\ +\x66\xa2\x0a\xa6\xee\x43\x62\xd7\xe0\x44\x1f\xa2\xf7\xed\x3f\x65\ +\x32\xf1\xbe\x7b\x5b\xb6\xea\xe1\xf7\x05\x00\xe8\xea\x90\x95\x60\ +\xff\x63\xe9\x9a\xc7\x16\x44\x3f\x7c\xa7\xed\x8f\xef\xc3\x78\x03\ +\xf8\xe9\xb7\x41\x53\x00\x44\x6a\x77\x80\x06\xa8\xa6\x41\x33\x68\ +\x30\x8a\x9f\x39\x81\x71\x4f\x03\x41\xfe\x59\x76\xd9\xc7\xf0\xcc\ +\x1a\xed\x3d\xf4\x5c\xff\xbc\x08\xcb\x57\x6c\xd4\x6b\xda\x77\xc9\ +\x4e\xd8\xb2\x59\xbb\x21\x58\xd9\x77\x64\x57\xcf\xc5\x9e\xdf\xb8\ +\xe2\xdc\x82\xf1\xce\xe5\xc5\x27\xd0\x85\xee\x7f\xee\xf2\x7b\xf6\ +\x3f\x9f\x3a\x7b\xfc\x2f\x63\xff\xe9\xef\x75\x7d\x56\x53\x56\xf3\ +\x35\xec\xc8\x9a\xfc\xb2\x20\x7b\x92\x48\xa5\x4a\xf4\xa6\x25\x37\ +\xc5\xd2\x7c\xa9\x58\xeb\x86\xad\xb8\x65\xb3\x5e\xce\xfa\xac\xb9\ +\x7c\xf6\xcd\xd7\xce\x1e\xfd\x5d\xda\xa9\xfa\x22\x76\x64\xf5\xff\ +\x16\xa8\x87\xef\x65\x02\x77\x3c\xb6\x2e\x31\x7c\xe1\xc1\x4b\x67\ +\x8f\x7f\xab\xf7\x50\xc7\xc5\xf7\x8e\xb5\xa7\xc4\x6e\xc2\xa9\x58\ +\x37\xf9\x78\x43\x90\x3e\x42\xb4\xb6\xbe\x42\x84\x15\xd3\x06\x00\ +\x58\xb7\x55\x33\x9f\xdc\xc4\x17\x92\xa3\xe7\x76\x9e\xea\x7c\x36\ +\xad\xd6\x2a\x9c\xca\xfb\x01\x0b\x35\x13\xd1\x70\xa1\xb7\x75\xab\ +\xbe\xfa\xa9\x2d\xba\x33\x1e\xa3\x31\x31\x1c\xfb\xe9\xc9\xce\x97\ +\x32\xbe\x5f\x81\x5d\x76\x07\x00\x26\x18\x21\x54\xe6\x88\x25\xac\ +\x9a\x11\xc0\xe4\x56\x75\xed\x66\x7d\xdc\x4d\xc7\xbf\xfc\x6e\x67\ +\x47\x2a\x9b\x0e\x11\xaa\xda\x80\x9a\x71\x8a\x93\xb0\x6d\xbb\x66\ +\x5b\x1e\xd2\x1d\x1a\x64\x9f\x18\x38\xb9\x2f\x65\x85\x1a\x40\xc2\ +\xa8\x49\xe2\x84\x40\xe1\x23\xb3\x00\x98\xb0\x96\x2d\xfa\x82\xf1\ +\xbc\xcf\x9e\x39\xfa\xda\xd5\xf8\xe5\x0b\x66\xa2\x12\x4a\xdb\x85\ +\x72\x76\xa6\x93\xc9\xf3\x89\x91\x7e\x15\xbb\x0e\xc1\x42\x64\x1c\ +\x55\x6a\x66\x0d\x00\xb0\x76\x9b\x76\x79\xaa\xcd\x83\xef\x1e\x3f\ +\x7f\xf1\xf4\x5b\x9e\xa8\x96\x7c\x23\x6d\xdc\xa8\x81\x1a\x9e\x49\ +\x5d\xbd\xe2\x89\x84\xc1\xaa\x20\x33\x36\x8c\x08\xef\xcc\x0a\x40\ +\x26\xcc\x12\x11\xfb\xd3\x5b\x18\xe8\xeb\xe1\x13\x23\x83\xe7\x0f\ +\x1b\x63\xc2\xdd\x67\x08\x89\x88\x53\xe0\xb6\x88\x58\xc6\x30\xe6\ +\x7b\x69\x1f\x0c\x22\x65\x24\x46\xe3\x59\x13\xf0\xd7\x69\x01\x14\ +\x08\x3a\x22\x12\x02\x42\x40\x38\xe7\x9b\x7f\x48\x7a\xfb\xcf\xd9\ +\xe0\xba\xec\xee\xbf\x40\x08\x28\x2b\xfc\x1f\x08\x67\x7d\xa2\x6a\ +\x2c\x41\x03\x3c\xd7\x10\x1b\x4a\xf8\x96\xcf\x2f\xaf\xd3\x2a\x6c\ +\x44\x22\x22\x93\x50\x39\x97\xa2\x79\xb1\x13\x8d\x22\x89\x44\x3e\ +\x1b\x15\xd0\xbb\x9b\x70\x7e\xf6\x04\x07\x97\x34\xd5\xd5\x96\x57\ +\x85\x82\xc1\xd3\x23\xd6\xc8\x48\xe6\xe9\xcf\x3c\xcc\x8f\x01\xa3\ +\xaa\x26\xa7\xe9\x14\x88\x5b\x45\xe2\xa5\x5c\x28\x82\x49\x24\xf2\ +\xc2\xb9\xd1\x7c\x7d\x1b\x6d\x95\xd5\x21\x37\x14\x31\xa7\x86\x06\ +\x62\xf3\xe3\xf1\xcc\x81\x1d\xbb\xd9\xc5\xc4\xc7\x84\x4c\x6e\xd4\ +\xa8\xaa\x8a\xaa\xe6\x76\x6e\x17\x89\x15\x5f\x17\xfe\x56\x08\x92\ +\x33\x03\x98\x67\xbf\xcb\xda\xa6\xa5\xd6\x23\x75\xf5\xe1\x54\x2a\ +\xee\x46\x47\x87\xcd\xc9\xef\xfc\x82\xa7\xde\x3a\x4e\x2a\xb7\x66\ +\xd2\x03\x55\x35\x39\x80\x1b\x09\x4f\x67\x2e\x80\xb9\x7d\x11\xf6\ +\x93\x8f\xb2\xae\xb1\x81\xd5\x95\x51\xb2\xe9\x24\xa1\x73\x03\xbc\ +\xf1\xcd\x9d\xec\xbb\x74\x09\xb7\x50\x38\x37\x57\xd5\xa0\x30\x02\ +\xa5\x76\x5d\x2a\x0a\xd7\x44\x60\xf5\x2a\x2a\xee\xf9\x38\x35\x77\ +\x35\x71\xfb\x2d\x75\x2c\xf4\x7d\xc6\x62\x31\x86\xf6\x1e\xe4\xc4\ +\xaf\x5e\xe1\x4a\xb1\x68\xc1\x75\x90\x3f\x82\xc9\x1c\xb8\x11\xc4\ +\x35\x89\x58\x55\x85\x5d\x53\x83\xd3\x78\x2b\xe1\x95\xb7\x51\x59\ +\x7b\x33\xe5\x15\x16\x8e\x67\xf0\x87\x06\x48\xee\xef\x26\x71\xec\ +\x14\xd9\x22\x41\x2d\x02\x09\x74\x52\xf8\xba\xd7\x71\xd1\x71\xbc\ +\x6f\x15\x14\xd8\x35\x95\x50\x24\x9c\x1b\x7d\x2d\x12\x2c\xf9\x3d\ +\x50\x00\x33\x15\x40\x7e\x59\x91\x78\x6e\xcc\x47\xa0\x58\x74\xda\ +\x00\x53\x40\x95\x12\x9f\x50\x9e\xe1\x03\xff\x0b\xe7\x04\xe8\x54\ +\x60\x4a\xc0\x61\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ " qt_resource_name = b"\ +\x00\x16\ +\x01\xd6\x37\x67\ +\x00\x6d\ +\x00\x65\x00\x64\x00\x69\x00\x61\x00\x2d\x00\x73\x00\x65\x00\x65\x00\x6b\x00\x2d\x00\x66\x00\x6f\x00\x72\x00\x77\x00\x61\x00\x72\ +\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x0e\xfe\x4a\xe7\ \x00\x73\ @@ -649,40 +757,42 @@ qt_resource_name = b"\ \x00\x64\ \x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ -\x00\x16\ -\x01\xd6\x37\x67\ -\x00\x6d\ -\x00\x65\x00\x64\x00\x69\x00\x61\x00\x2d\x00\x73\x00\x65\x00\x65\x00\x6b\x00\x2d\x00\x66\x00\x6f\x00\x72\x00\x77\x00\x61\x00\x72\ -\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x07\x11\xa8\xa7\ \x00\x76\ \x00\x69\x00\x64\x00\x65\x00\x6f\x00\x2d\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ +\x00\x0d\ +\x03\xd2\xbe\x67\ +\x00\x65\ +\x00\x64\x00\x69\x00\x74\x00\x2d\x00\x75\x00\x6e\x00\x64\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct_v1 = b"\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\x01\ -\x00\x00\x00\x28\x00\x00\x00\x00\x00\x01\x00\x00\x08\xab\ -\x00\x00\x00\x44\x00\x00\x00\x00\x00\x01\x00\x00\x15\x33\ -\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x1b\x45\ -\x00\x00\x00\x9e\x00\x00\x00\x00\x00\x01\x00\x00\x1f\xfe\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00\x01\ +\x00\x00\x00\x5a\x00\x00\x00\x00\x00\x01\x00\x00\x0d\x64\ +\x00\x00\x00\x76\x00\x00\x00\x00\x00\x01\x00\x00\x19\xec\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\xc6\x00\x00\x00\x00\x00\x01\x00\x00\x26\x3e\ +\x00\x00\x00\x9e\x00\x00\x00\x00\x00\x01\x00\x00\x1f\xfe\ +\x00\x00\x00\x32\x00\x00\x00\x00\x00\x01\x00\x00\x04\xb9\ " qt_resource_struct_v2 = b"\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x28\x00\x00\x00\x00\x00\x01\x00\x00\x08\xab\ -\x00\x00\x01\x81\x2f\x70\x80\x7f\ -\x00\x00\x00\x44\x00\x00\x00\x00\x00\x01\x00\x00\x15\x33\ -\x00\x00\x01\x17\x40\x9f\xf7\x88\ -\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x1b\x45\ -\x00\x00\x01\x0b\xcd\x30\x59\xb0\ -\x00\x00\x00\x9e\x00\x00\x00\x00\x00\x01\x00\x00\x1f\xfe\ -\x00\x00\x01\x17\x40\x9f\xfb\x70\ +\x00\x00\x00\x5a\x00\x00\x00\x00\x00\x01\x00\x00\x0d\x64\ +\x00\x00\x01\x81\x3d\x2c\xbf\x77\ +\x00\x00\x00\x76\x00\x00\x00\x00\x00\x01\x00\x00\x19\xec\ +\x00\x00\x01\x81\x3d\x2c\xbf\x7c\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x01\x0b\xcd\x30\x59\xb0\ +\x00\x00\x01\x81\x3d\x2c\xbf\x7d\ +\x00\x00\x00\xc6\x00\x00\x00\x00\x00\x01\x00\x00\x26\x3e\ +\x00\x00\x01\x0c\xaa\x80\xf7\x70\ +\x00\x00\x00\x9e\x00\x00\x00\x00\x00\x01\x00\x00\x1f\xfe\ +\x00\x00\x01\x81\x3d\x2c\xbf\x7e\ +\x00\x00\x00\x32\x00\x00\x00\x00\x00\x01\x00\x00\x04\xb9\ +\x00\x00\x01\x81\x3d\x2c\xbf\x7e\ " qt_version = [int(v) for v in QtCore.qVersion().split('.')] diff --git a/resources.qrc b/resources.qrc index a60210038ac2af8a26766b44e97a5515fc447650..e911d05ee7c857f84bfa05e74b35d1945cae907a 100644 --- a/resources.qrc +++ b/resources.qrc @@ -5,5 +5,6 @@ <file alias="document-open.png">pics/document-open.png</file> <file alias="video-display.png">pics/video-display.png</file> <file alias="media-seek-forward.png">pics/media-seek-forward.png</file> + <file alias="edit-undo.png">pics/edit-undo.png</file> </qresource> </RCC> \ No newline at end of file diff --git a/ui_fossils.py b/ui_fossils.py index 821d40ae7d2b3df30a2e453fd400a52ed9e2f512..c13b08da698f32da6e46a06b08e2b93c555d40ce 100644 --- a/ui_fossils.py +++ b/ui_fossils.py @@ -14,44 +14,60 @@ from PyQt5 import QtCore, QtGui, QtWidgets class Ui_Form(object): def setupUi(self, Form): Form.setObjectName("Form") - Form.resize(708, 154) + Form.resize(745, 154) self.verticalLayout = QtWidgets.QVBoxLayout(Form) self.verticalLayout.setObjectName("verticalLayout") self.gridLayout = QtWidgets.QGridLayout() self.gridLayout.setObjectName("gridLayout") self.inpFilelabel = QtWidgets.QLabel(Form) + self.inpFilelabel.setStatusTip("") self.inpFilelabel.setObjectName("inpFilelabel") self.gridLayout.addWidget(self.inpFilelabel, 0, 0, 1, 1) self.inpFileLineEdit = QtWidgets.QLineEdit(Form) self.inpFileLineEdit.setObjectName("inpFileLineEdit") self.gridLayout.addWidget(self.inpFileLineEdit, 0, 1, 1, 1) self.inpFilePushButton = QtWidgets.QToolButton(Form) + self.inpFilePushButton.setWhatsThis("") self.inpFilePushButton.setObjectName("inpFilePushButton") self.gridLayout.addWidget(self.inpFilePushButton, 0, 2, 1, 1) self.inpFileEditPushButton = QtWidgets.QToolButton(Form) + self.inpFileEditPushButton.setWhatsThis("") self.inpFileEditPushButton.setObjectName("inpFileEditPushButton") self.gridLayout.addWidget(self.inpFileEditPushButton, 0, 3, 1, 1) + self.inpFileResetPushButton = QtWidgets.QToolButton(Form) + self.inpFileResetPushButton.setWhatsThis("") + self.inpFileResetPushButton.setObjectName("inpFileResetPushButton") + self.gridLayout.addWidget(self.inpFileResetPushButton, 0, 4, 1, 1) self.wrksplabel = QtWidgets.QLabel(Form) + self.wrksplabel.setStatusTip("") self.wrksplabel.setObjectName("wrksplabel") self.gridLayout.addWidget(self.wrksplabel, 1, 0, 1, 1) self.wrkspLineEdit = QtWidgets.QLineEdit(Form) self.wrkspLineEdit.setObjectName("wrkspLineEdit") self.gridLayout.addWidget(self.wrkspLineEdit, 1, 1, 1, 1) self.wrkspPushButton = QtWidgets.QToolButton(Form) + self.wrkspPushButton.setWhatsThis("") self.wrkspPushButton.setObjectName("wrkspPushButton") self.gridLayout.addWidget(self.wrkspPushButton, 1, 2, 1, 1) self.wrkspExplorePushButton = QtWidgets.QToolButton(Form) + self.wrkspExplorePushButton.setWhatsThis("") self.wrkspExplorePushButton.setObjectName("wrkspExplorePushButton") self.gridLayout.addWidget(self.wrkspExplorePushButton, 1, 3, 1, 1) + self.wrkspResetPushButton = QtWidgets.QToolButton(Form) + self.wrkspResetPushButton.setWhatsThis("") + self.wrkspResetPushButton.setObjectName("wrkspResetPushButton") + self.gridLayout.addWidget(self.wrkspResetPushButton, 1, 4, 1, 1) self.verticalLayout.addLayout(self.gridLayout) self.horizontalLayout_2 = QtWidgets.QHBoxLayout() self.horizontalLayout_2.setObjectName("horizontalLayout_2") spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout_2.addItem(spacerItem) self.runPushButton = QtWidgets.QPushButton(Form) + self.runPushButton.setStatusTip("") self.runPushButton.setObjectName("runPushButton") self.horizontalLayout_2.addWidget(self.runPushButton) self.viewPushButton = QtWidgets.QPushButton(Form) + self.viewPushButton.setStatusTip("") self.viewPushButton.setObjectName("viewPushButton") self.horizontalLayout_2.addWidget(self.viewPushButton) spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) @@ -64,11 +80,23 @@ class Ui_Form(object): def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) + self.inpFilelabel.setToolTip(_translate("Form", "name of the python file")) self.inpFilelabel.setText(_translate("Form", "input file")) + self.inpFilePushButton.setToolTip(_translate("Form", "select a python file")) self.inpFilePushButton.setText(_translate("Form", "...")) + self.inpFileEditPushButton.setToolTip(_translate("Form", "open a text editor")) self.inpFileEditPushButton.setText(_translate("Form", "Edit")) + self.inpFileResetPushButton.setToolTip(_translate("Form", "reset to default")) + self.inpFileResetPushButton.setText(_translate("Form", "Reset")) + self.wrksplabel.setToolTip(_translate("Form", "folder where the results are stored")) self.wrksplabel.setText(_translate("Form", "workspace")) + self.wrkspPushButton.setToolTip(_translate("Form", "select a folder")) self.wrkspPushButton.setText(_translate("Form", "...")) + self.wrkspExplorePushButton.setToolTip(_translate("Form", "open the folder in the explorer")) self.wrkspExplorePushButton.setText(_translate("Form", "Explore")) + self.wrkspResetPushButton.setToolTip(_translate("Form", "reset to default")) + self.wrkspResetPushButton.setText(_translate("Form", "Reset")) + self.runPushButton.setToolTip(_translate("Form", "start the simulation!")) self.runPushButton.setText(_translate("Form", "Run")) + self.viewPushButton.setToolTip(_translate("Form", "read/display the results stored in the folder of the workspace")) self.viewPushButton.setText(_translate("Form", "View"))