123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>TempoDialog</class>
- <widget class="QDialog" name="TempoDialog">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>587</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Dialog</string>
- </property>
- <widget class="QDialogButtonBox" name="buttonBox">
- <property name="geometry">
- <rect>
- <x>40</x>
- <y>550</y>
- <width>341</width>
- <height>32</height>
- </rect>
- </property>
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="standardButtons">
- <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
- </property>
- </widget>
- <widget class="QTableView" name="tableView">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>10</y>
- <width>381</width>
- <height>401</height>
- </rect>
- </property>
- </widget>
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>20</x>
- <y>470</y>
- <width>64</width>
- <height>17</height>
- </rect>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- <widget class="QPushButton" name="btnTempo">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>450</y>
- <width>381</width>
- <height>25</height>
- </rect>
- </property>
- <property name="text">
- <string>Add tempo change</string>
- </property>
- </widget>
- <widget class="QPushButton" name="btnTimeSignature">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>480</y>
- <width>381</width>
- <height>25</height>
- </rect>
- </property>
- <property name="text">
- <string>Add timesignature change</string>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton_3">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>510</y>
- <width>381</width>
- <height>25</height>
- </rect>
- </property>
- <property name="text">
- <string>Remove selected event</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_2">
- <property name="geometry">
- <rect>
- <x>20</x>
- <y>420</y>
- <width>71</width>
- <height>17</height>
- </rect>
- </property>
- <property name="text">
- <string>Position</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="txtPos">
- <property name="geometry">
- <rect>
- <x>90</x>
- <y>420</y>
- <width>113</width>
- <height>25</height>
- </rect>
- </property>
- </widget>
- <widget class="QLabel" name="label_3">
- <property name="geometry">
- <rect>
- <x>220</x>
- <y>420</y>
- <width>64</width>
- <height>17</height>
- </rect>
- </property>
- <property name="text">
- <string>Value</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="txtValue">
- <property name="geometry">
- <rect>
- <x>270</x>
- <y>420</y>
- <width>113</width>
- <height>25</height>
- </rect>
- </property>
- </widget>
- </widget>
- <resources/>
- <connections>
- <connection>
- <sender>buttonBox</sender>
- <signal>accepted()</signal>
- <receiver>TempoDialog</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>buttonBox</sender>
- <signal>rejected()</signal>
- <receiver>TempoDialog</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>
|