This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
-
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
Showing
8 changed files
with
354 additions
and
7 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ python: | |
path: . | ||
extra_requirements: | ||
- dev | ||
- gui |
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
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
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,119 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>SettingsDialog</class> | ||
<widget class="QDialog" name="SettingsDialog"> | ||
<property name="windowModality"> | ||
<enum>Qt::WindowModal</enum> | ||
</property> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>711</width> | ||
<height>497</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<family>Noto Sans</family> | ||
</font> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Settings</string> | ||
</property> | ||
<layout class="QGridLayout" name="gridLayout"> | ||
<item row="1" column="0"> | ||
<widget class="QDialogButtonBox" name="button_box"> | ||
<property name="standardButtons"> | ||
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="0" column="0"> | ||
<widget class="QTabWidget" name="tab_widget"> | ||
<property name="font"> | ||
<font> | ||
<family>Noto Sans</family> | ||
<pointsize>9</pointsize> | ||
</font> | ||
</property> | ||
<property name="tabPosition"> | ||
<enum>QTabWidget::West</enum> | ||
</property> | ||
<property name="currentIndex"> | ||
<number>0</number> | ||
</property> | ||
<widget class="QWidget" name="general"> | ||
<property name="font"> | ||
<font> | ||
<family>Noto Sans</family> | ||
<pointsize>8</pointsize> | ||
</font> | ||
</property> | ||
<attribute name="title"> | ||
<string>General</string> | ||
</attribute> | ||
<layout class="QGridLayout" name="gridLayout4"> | ||
<item row="0" column="1"> | ||
<widget class="QCheckBox" name="start_minimized"> | ||
<property name="text"> | ||
<string/> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="1" column="0"> | ||
<widget class="QLabel" name="start_with_system_l"> | ||
<property name="text"> | ||
<string>Start with system</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="0" column="2"> | ||
<spacer name="horizontal_spacer"> | ||
<property name="orientation"> | ||
<enum>Qt::Horizontal</enum> | ||
</property> | ||
<property name="sizeHint" stdset="0"> | ||
<size> | ||
<width>40</width> | ||
<height>20</height> | ||
</size> | ||
</property> | ||
</spacer> | ||
</item> | ||
<item row="0" column="0"> | ||
<widget class="QLabel" name="start_minimized_l"> | ||
<property name="text"> | ||
<string>Start minimized</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="2" column="0"> | ||
<spacer name="vertical_spacer"> | ||
<property name="orientation"> | ||
<enum>Qt::Vertical</enum> | ||
</property> | ||
<property name="sizeHint" stdset="0"> | ||
<size> | ||
<width>20</width> | ||
<height>40</height> | ||
</size> | ||
</property> | ||
</spacer> | ||
</item> | ||
<item row="1" column="1"> | ||
<widget class="QCheckBox" name="start_with_system"> | ||
<property name="text"> | ||
<string/> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources/> | ||
<connections/> | ||
</ui> |
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
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ This work | |
- power.svg | ||
- remove.svg | ||
- search.svg | ||
- settings.svg | ||
- start.svg | ||
- stop.svg | ||
- stopped.svg | ||
|
Oops, something went wrong.