mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-10 14:05:25 +00:00
0ea5d6fa4b
* Add dialog for deleting and renaming layouts. * Add documentation. Co-authored-by: Itay Cohen
43 lines
978 B
XML
43 lines
978 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ui version="4.0">
|
|
<class>LayoutManager</class>
|
|
<widget class="QDialog" name="LayoutManager">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>254</width>
|
|
<height>88</height>
|
|
</rect>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>Layout</string>
|
|
</property>
|
|
<layout class="QVBoxLayout" name="verticalLayout">
|
|
<item>
|
|
<widget class="QComboBox" name="layoutSelector"/>
|
|
</item>
|
|
<item>
|
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
<item>
|
|
<widget class="QPushButton" name="renameButton">
|
|
<property name="text">
|
|
<string>Rename</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QPushButton" name="deleteButton">
|
|
<property name="text">
|
|
<string>Delete</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
<resources/>
|
|
<connections/>
|
|
</ui>
|