1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>UndoHistoryDock</class>
- <widget class="QDockWidget" name="UndoHistoryDock">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>203</width>
- <height>188</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>&Undo history</string>
- </property>
- <widget class="QWidget" name="dockWidgetContents">
- <layout class="QVBoxLayout" name="verticalLayout">
- <item>
- <widget class="QListView" name="action_list"/>
- </item>
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QToolButton" name="undo">
- <property name="text">
- <string>Undo</string>
- </property>
- <property name="icon">
- <iconset theme="edit-undo"/>
- </property>
- <property name="autoRaise">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="redo">
- <property name="text">
- <string>Redo</string>
- </property>
- <property name="icon">
- <iconset theme="edit-redo"/>
- </property>
- <property name="autoRaise">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="clear">
- <property name="text">
- <string>Clear</string>
- </property>
- <property name="icon">
- <iconset theme="edit-clear"/>
- </property>
- <property name="autoRaise">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item>
- <spacer name="horizontalSpacer">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>40</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- </widget>
- <resources/>
- <connections/>
- </ui>
|