123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>PlaybackDock</class>
- <widget class="QDockWidget" name="PlaybackDock">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>220</width>
- <height>152</height>
- </rect>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Maximum" vsizetype="Preferred">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>220</width>
- <height>152</height>
- </size>
- </property>
- <property name="windowTitle">
- <string>Playbac&k Dock</string>
- </property>
- <widget class="QWidget" name="dockWidgetContents">
- <layout class="QVBoxLayout" name="verticalLayout">
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QToolButton" name="loop_button">
- <property name="toolTip">
- <string>Toggle looping</string>
- </property>
- <property name="text">
- <string>loop</string>
- </property>
- <property name="icon">
- <iconset theme="view-refresh"/>
- </property>
- <property name="checkable">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="move_start_button">
- <property name="text">
- <string>To start</string>
- </property>
- <property name="icon">
- <iconset theme="media-skip-backward">
- <normaloff>.</normaloff>.</iconset>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="play_button">
- <property name="text">
- <string>Play</string>
- </property>
- <property name="icon">
- <iconset theme="media-playback-start">
- <normaloff>.</normaloff>.</iconset>
- </property>
- <property name="checkable">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="stop_button">
- <property name="text">
- <string>Stop</string>
- </property>
- <property name="icon">
- <iconset theme="media-playback-stop">
- <normaloff>.</normaloff>.</iconset>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="move_end_button">
- <property name="text">
- <string>To end</string>
- </property>
- <property name="icon">
- <iconset theme="media-skip-forward">
- <normaloff>.</normaloff>.</iconset>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0">
- <widget class="QLabel" name="label">
- <property name="text">
- <string>Time (frames)</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QDoubleSpinBox" name="time_box">
- <property name="minimum">
- <double>-65535.000000000000000</double>
- </property>
- <property name="maximum">
- <double>65535.000000000000000</double>
- </property>
- </widget>
- </item>
- <item row="1" column="0">
- <widget class="QLabel" name="label_2">
- <property name="text">
- <string>FPS</string>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="QSpinBox" name="fps_box"/>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- </widget>
- <resources/>
- <connections/>
- </ui>
|