-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4d130ee
Showing
18 changed files
with
1,550 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>Dialog</class> | ||
<widget class="QDialog" name="Dialog"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>323</width> | ||
<height>210</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Configure</string> | ||
</property> | ||
<layout class="QVBoxLayout" name="verticalLayout"> | ||
<item> | ||
<widget class="QLabel" name="label"> | ||
<property name="text"> | ||
<string>Playback Settings:</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<layout class="QHBoxLayout" name="horizontalLayout"> | ||
<item> | ||
<widget class="QLabel" name="label_2"> | ||
<property name="toolTip"> | ||
<string>The time in seconds between succesive notes of an arpeggio</string> | ||
</property> | ||
<property name="text"> | ||
<string>Arpeggiation Duration:</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QDoubleSpinBox" name="arpegdurSpinBox"/> | ||
</item> | ||
</layout> | ||
</item> | ||
<item> | ||
<layout class="QHBoxLayout" name="horizontalLayout_2"> | ||
<item> | ||
<widget class="QLabel" name="label_3"> | ||
<property name="toolTip"> | ||
<string>The total duration of a chord in seconds</string> | ||
</property> | ||
<property name="text"> | ||
<string>Chord Duration:</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QDoubleSpinBox" name="chddurSpinBox"/> | ||
</item> | ||
</layout> | ||
</item> | ||
<item> | ||
<layout class="QHBoxLayout" name="horizontalLayout_4"> | ||
<item> | ||
<widget class="QLabel" name="label_5"> | ||
<property name="text"> | ||
<string>MIDI Program:</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QSpinBox" name="spinBox"/> | ||
</item> | ||
</layout> | ||
</item> | ||
<item> | ||
<widget class="QLabel" name="label_4"> | ||
<property name="text"> | ||
<string>Other:</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QCheckBox" name="checkBox"> | ||
<property name="toolTip"> | ||
<string>If set, lilypond will be used to generate notation for chords</string> | ||
</property> | ||
<property name="text"> | ||
<string>Use lilypond</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<layout class="QHBoxLayout" name="horizontalLayout_3"> | ||
<item> | ||
<widget class="QPushButton" name="applyButton"> | ||
<property name="maximumSize"> | ||
<size> | ||
<width>80</width> | ||
<height>60</height> | ||
</size> | ||
</property> | ||
<property name="text"> | ||
<string>Apply</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QPushButton" name="restoreButton"> | ||
<property name="maximumSize"> | ||
<size> | ||
<width>120</width> | ||
<height>60</height> | ||
</size> | ||
</property> | ||
<property name="text"> | ||
<string>Restore Defaults</string> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources/> | ||
<connections/> | ||
</ui> |
Oops, something went wrong.