Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilr612 committed Sep 7, 2023
0 parents commit 4d130ee
Show file tree
Hide file tree
Showing 18 changed files with 1,550 additions and 0 deletions.
Empty file added ReadMe.md
Empty file.
Binary file added __pycache__/cardview_window.cpython-311.pyc
Binary file not shown.
Binary file added __pycache__/playback.cpython-311.pyc
Binary file not shown.
Binary file added __pycache__/settings_dialog.cpython-311.pyc
Binary file not shown.
Binary file added __pycache__/spsch.cpython-311.pyc
Binary file not shown.
Binary file added __pycache__/ui.cpython-311.pyc
Binary file not shown.
Binary file added __pycache__/uisetup.cpython-311.pyc
Binary file not shown.
444 changes: 444 additions & 0 deletions _qt_ui/cardview.ui

Large diffs are not rendered by default.

123 changes: 123 additions & 0 deletions _qt_ui/settings_dialog.ui
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>
Loading

0 comments on commit 4d130ee

Please sign in to comment.