add cfg-editor

Change-Id: I68b8ba9311ec0487d7a2676095a7170a2447b3d0
Reviewed-on: https://forge.frm2.tum.de/review/20206
Tested-by: JenkinsCodeReview <bjoern_pedersen@frm2.tum.de>
Reviewed-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de>
This commit is contained in:
Seger Sandra
2019-03-19 10:39:41 +01:00
committed by Enrico Faulhaber
parent 0bf43d67ba
commit e1f017d678
35 changed files with 14621 additions and 7 deletions

View File

@ -0,0 +1,70 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>add_dialog</class>
<widget class="QDialog" name="add_dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>250</width>
<height>136</height>
</rect>
</property>
<property name="windowTitle">
<string>add dialog</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QGridLayout" name="add_layout"/>
</item>
<item>
<widget class="QDialogButtonBox" name="button_box">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<tabstops>
<tabstop>button_box</tabstop>
</tabstops>
<resources/>
<connections>
<connection>
<sender>button_box</sender>
<signal>accepted()</signal>
<receiver>add_dialog</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>button_box</sender>
<signal>rejected()</signal>
<receiver>add_dialog</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>
</connections>
</ui>

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>change_name_dialog</class>
<widget class="QDialog" name="change_name_dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>239</width>
<height>81</height>
</rect>
</property>
<property name="windowTitle">
<string>change name</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="1">
<widget class="QLineEdit" name="name"/>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>name:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QDialogButtonBox" name="button_box">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>button_box</sender>
<signal>accepted()</signal>
<receiver>change_name_dialog</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>button_box</sender>
<signal>rejected()</signal>
<receiver>change_name_dialog</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>
</connections>
</ui>

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,20 @@
<RCC>
<qresource>
<file>delete.png</file>
<file>duplicate.png</file>
<file>add_comment.png</file>
<file>add_interface.png</file>
<file>add_module.png</file>
<file>add_parameter.png</file>
<file>add_property.png</file>
<file>comment.png</file>
<file>interface.png</file>
<file>module.png</file>
<file>parameter.png</file>
<file>property.png</file>
<file>edit.png</file>
<file>new.png</file>
<file>open.png</file>
<file>save.png</file>
</qresource>
</RCC>

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,969 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>977</width>
<height>799</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="windowTitle">
<string>cfg-editor</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="icon_layout">
<item>
<widget class="QToolButton" name="new_btn">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>create new SEC node</string>
</property>
<property name="text">
<string>new</string>
</property>
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/new.png</normaloff>
<normalon>:/new.png</normalon>:/new.png</iconset>
</property>
<property name="iconSize">
<size>
<width>60</width>
<height>60</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="open_btn">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>open file</string>
</property>
<property name="text">
<string>open</string>
</property>
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/open.png</normaloff>
<normalon>:/open.png</normalon>:/open.png</iconset>
</property>
<property name="iconSize">
<size>
<width>60</width>
<height>60</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="save_btn">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>save</string>
</property>
<property name="text">
<string>save</string>
</property>
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/save.png</normaloff>
<normalon>:/save.png</normalon>:/save.png</iconset>
</property>
<property name="iconSize">
<size>
<width>60</width>
<height>60</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="add_interface_btn">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>add interface</string>
</property>
<property name="text">
<string>add interface</string>
</property>
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/add_interface.png</normaloff>
<normalon>:/add_interface.png</normalon>:/add_interface.png</iconset>
</property>
<property name="iconSize">
<size>
<width>60</width>
<height>60</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="add_module_btn">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>add module</string>
</property>
<property name="text">
<string>add module</string>
</property>
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/add_module.png</normaloff>
<normalon>:/add_module.png</normalon>:/add_module.png</iconset>
</property>
<property name="iconSize">
<size>
<width>60</width>
<height>60</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="add_parameter_btn">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>add parameter</string>
</property>
<property name="text">
<string>add parameter</string>
</property>
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/add_parameter.png</normaloff>
<normalon>:/add_parameter.png</normalon>:/add_parameter.png</iconset>
</property>
<property name="iconSize">
<size>
<width>60</width>
<height>60</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="add_property_btn">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>add property</string>
</property>
<property name="text">
<string>add property</string>
</property>
<property name="icon">
<iconset>
<normalon>:/add_property.png</normalon>
</iconset>
</property>
<property name="iconSize">
<size>
<width>60</width>
<height>60</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="add_comment_btn">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>add comment</string>
</property>
<property name="text">
<string>add comment</string>
</property>
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/add_comment.png</normaloff>:/add_comment.png</iconset>
</property>
<property name="iconSize">
<size>
<width>60</width>
<height>60</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line_2">
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="lineWidth">
<number>1</number>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="duplicate_btn">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>duplicate module or interface</string>
</property>
<property name="text">
<string>duplicate</string>
</property>
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/duplicate.png</normaloff>
<normalon>:/duplicate.png</normalon>:/duplicate.png</iconset>
</property>
<property name="iconSize">
<size>
<width>60</width>
<height>60</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="delete_btn">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>delete</string>
</property>
<property name="text">
<string>delete</string>
</property>
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/delete.png</normaloff>
<normalon>:/delete.png</normalon>:/delete.png</iconset>
</property>
<property name="iconSize">
<size>
<width>60</width>
<height>60</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="main_layout">
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="contextMenuPolicy">
<enum>Qt::DefaultContextMenu</enum>
</property>
<property name="tabShape">
<enum>QTabWidget::Rounded</enum>
</property>
<property name="currentIndex">
<number>-1</number>
</property>
<property name="documentMode">
<bool>false</bool>
</property>
<property name="tabsClosable">
<bool>false</bool>
</property>
<property name="movable">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>977</width>
<height>20</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
<property name="title">
<string>&amp;File</string>
</property>
<addaction name="actionNew"/>
<addaction name="actionOpen"/>
<addaction name="actionSave"/>
<addaction name="actionSave_as"/>
<addaction name="action_Close"/>
<addaction name="actionQuit"/>
</widget>
<widget class="QMenu" name="menu_Help">
<property name="title">
<string>&amp;Help</string>
</property>
<addaction name="actionAbout"/>
</widget>
<widget class="QMenu" name="menu_Edit">
<property name="title">
<string>&amp;Edit</string>
</property>
<addaction name="actionAdd_interface"/>
<addaction name="actionAdd_module"/>
<addaction name="actionAdd_parameter"/>
<addaction name="actionAdd_property"/>
<addaction name="actionAdd_comment"/>
<addaction name="actionDuplicate"/>
<addaction name="actionDelete"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menu_Edit"/>
<addaction name="menu_Help"/>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<action name="actionNew">
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/new.png</normaloff>
<normalon>:/new.png</normalon>:/new.png</iconset>
</property>
<property name="text">
<string>&amp;New</string>
</property>
<property name="toolTip">
<string>Create new file</string>
</property>
<property name="shortcut">
<string>Ctrl+N</string>
</property>
</action>
<action name="actionOpen">
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/open.png</normaloff>
<normalon>:/open.png</normalon>:/open.png</iconset>
</property>
<property name="text">
<string>&amp;Open ...</string>
</property>
<property name="shortcut">
<string>Ctrl+O</string>
</property>
</action>
<action name="actionSave">
<property name="icon">
<iconset resource="icons/cfg-editor.qrc">
<normaloff>:/save.png</normaloff>
<normalon>:/save.png</normalon>:/save.png</iconset>
</property>
<property name="text">
<string>&amp;Save</string>
</property>
<property name="shortcut">
<string>Ctrl+S</string>
</property>
</action>
<action name="actionSave_as">
<property name="text">
<string>Save &amp;as ...</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+S</string>
</property>
</action>
<action name="actionAbout">
<property name="text">
<string>&amp;About</string>
</property>
<property name="shortcut">
<string>Ctrl+A</string>
</property>
</action>
<action name="actionQuit">
<property name="text">
<string>&amp;Quit</string>
</property>
<property name="shortcut">
<string>Ctrl+Q</string>
</property>
</action>
<action name="actionAdd_SEC_node">
<property name="text">
<string>add SEC node</string>
</property>
</action>
<action name="actionAdd_interface">
<property name="text">
<string>add interface</string>
</property>
</action>
<action name="actionAdd_module">
<property name="text">
<string>add module</string>
</property>
</action>
<action name="actionAdd_parameter">
<property name="text">
<string>add parameter</string>
</property>
</action>
<action name="actionAdd_property">
<property name="text">
<string>add property</string>
</property>
</action>
<action name="actionAdd_comment">
<property name="text">
<string>add comment</string>
</property>
</action>
<action name="actionDuplicate">
<property name="text">
<string>duplicate</string>
</property>
</action>
<action name="actionDelete">
<property name="text">
<string>delete</string>
</property>
</action>
<action name="action_Close">
<property name="text">
<string>&amp;Close</string>
</property>
<property name="shortcut">
<string>Ctrl+F4</string>
</property>
</action>
</widget>
<resources>
<include location="icons/cfg-editor.qrc"/>
</resources>
<connections>
<connection>
<sender>new_btn</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>on_actionNew()</slot>
<hints>
<hint type="sourcelabel">
<x>39</x>
<y>76</y>
</hint>
<hint type="destinationlabel">
<x>3</x>
<y>91</y>
</hint>
</hints>
</connection>
<connection>
<sender>open_btn</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>on_actionOpen()</slot>
<hints>
<hint type="sourcelabel">
<x>132</x>
<y>81</y>
</hint>
<hint type="destinationlabel">
<x>3</x>
<y>45</y>
</hint>
</hints>
</connection>
<connection>
<sender>save_btn</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>on_actionSave()</slot>
<hints>
<hint type="sourcelabel">
<x>222</x>
<y>59</y>
</hint>
<hint type="destinationlabel">
<x>0</x>
<y>25</y>
</hint>
</hints>
</connection>
<connection>
<sender>add_interface_btn</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>on_add_interface()</slot>
<hints>
<hint type="sourcelabel">
<x>346</x>
<y>83</y>
</hint>
<hint type="destinationlabel">
<x>328</x>
<y>24</y>
</hint>
</hints>
</connection>
<connection>
<sender>add_module_btn</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>on_add_module()</slot>
<hints>
<hint type="sourcelabel">
<x>432</x>
<y>61</y>
</hint>
<hint type="destinationlabel">
<x>401</x>
<y>24</y>
</hint>
</hints>
</connection>
<connection>
<sender>add_parameter_btn</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>on_add_parameter()</slot>
<hints>
<hint type="sourcelabel">
<x>527</x>
<y>76</y>
</hint>
<hint type="destinationlabel">
<x>499</x>
<y>24</y>
</hint>
</hints>
</connection>
<connection>
<sender>add_property_btn</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>on_add_property()</slot>
<hints>
<hint type="sourcelabel">
<x>644</x>
<y>71</y>
</hint>
<hint type="destinationlabel">
<x>613</x>
<y>24</y>
</hint>
</hints>
</connection>
<connection>
<sender>add_comment_btn</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>on_add_comment()</slot>
<hints>
<hint type="sourcelabel">
<x>732</x>
<y>74</y>
</hint>
<hint type="destinationlabel">
<x>708</x>
<y>20</y>
</hint>
</hints>
</connection>
<connection>
<sender>duplicate_btn</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>on_duplicate()</slot>
<hints>
<hint type="sourcelabel">
<x>831</x>
<y>87</y>
</hint>
<hint type="destinationlabel">
<x>818</x>
<y>24</y>
</hint>
</hints>
</connection>
<connection>
<sender>delete_btn</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>on_delete()</slot>
<hints>
<hint type="sourcelabel">
<x>919</x>
<y>55</y>
</hint>
<hint type="destinationlabel">
<x>909</x>
<y>21</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionNew</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_actionNew()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionOpen</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_actionOpen()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionSave</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_actionSave()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionSave_as</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_actionSave_as()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionQuit</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_actionQuit()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionAbout</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_actionAbout()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionAdd_interface</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_add_interface()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionAdd_module</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_add_module()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionAdd_parameter</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_add_parameter()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionAdd_property</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_add_property()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionAdd_comment</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_add_comment()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionDuplicate</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_duplicate()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionDelete</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_delete()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
<connection>
<sender>action_Close</sender>
<signal>triggered()</signal>
<receiver>MainWindow</receiver>
<slot>on_action_Close()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>488</x>
<y>399</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>on_actionNew()</slot>
<slot>on_add_module()</slot>
<slot>on_add_interface()</slot>
<slot>on_add_parameter()</slot>
<slot>on_add_property()</slot>
<slot>on_add_comment()</slot>
<slot>on_actionOpen()</slot>
<slot>on_actionSave()</slot>
<slot>on_duplicate()</slot>
<slot>on_delete()</slot>
<slot>on_actionSave_as()</slot>
<slot>on_actionQuit()</slot>
<slot>on_actionAbout()</slot>
<slot>on_action_Close()</slot>
</slots>
</ui>

View File

@ -0,0 +1,89 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Form</class>
<widget class="QWidget" name="Form">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>945</width>
<height>671</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QSplitter" name="splitter">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="opaqueResize">
<bool>true</bool>
</property>
<property name="handleWidth">
<number>8</number>
</property>
<property name="childrenCollapsible">
<bool>true</bool>
</property>
<widget class="TreeWidget" name="tree_widget">
<property name="enabled">
<bool>true</bool>
</property>
<property name="autoExpandDelay">
<number>-1</number>
</property>
<property name="columnCount">
<number>1</number>
</property>
<attribute name="headerVisible">
<bool>false</bool>
</attribute>
<column>
<property name="text">
<string notr="true">1</string>
</property>
</column>
</widget>
<widget class="QScrollArea" name="scrollArea">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContent">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>73</width>
<height>651</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<layout class="QVBoxLayout" name="scroll_area_layout"/>
</item>
</layout>
</widget>
</widget>
</widget>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>TreeWidget</class>
<extends>QTreeWidget</extends>
<header>secop.gui.cfg_editor.widgets</header>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>