Files
simplePCBuilding-PC-Configu…/gui_main/configurator.kv
2022-04-04 16:25:33 +02:00

74 lines
2.5 KiB
Plaintext

ConfigureScreen:
name: "Config"
md_bg_color: app.theme_cls.accent_color
# md_bg_color: (0, 0, 0, 1)
MDFloatLayout:
cols:1
MDFlatButton:
text: "Back"
pos_hint: {"x": 0.07, "y": 0.07}
font_size: 20
md_bg_color: app.theme_cls.primary_color
size_hint: 0.1, 0.05
on_release:
app.root.current = "HomeScreen"
root.manager.transition.direction = "left"
Spinner:
text: "Haupt-Anwendungsbereich"
size_hint: 0.3, 0.1
pos_hint: {"x": 0.6, "y": 0.85}
values: ["Gaming", "Videobearbeitung", "Fotobearbeitung", "Live-Streaming", "Office/Internet"]
Spinner:
text: "Betriebssystem"
size_hint: 0.3, 0.1
pos_hint: {"x": 0.1, "y": 0.55}
values: ["Windows 10", "Windows 11", "GNU/Linux (Alle Distributionen)"]
Spinner:
text: "Bildschirmauflösung"
size_hint: 0.3, 0.1
pos_hint: {"x": 0.6, "y": 0.7}
values: ["720p (720x1280)", "1080p (1080x1920)", "2K/1440p (1440x2560)", "4K/2160p (2160x3840)"]
Spinner:
text: "Bildschrimwiederholrate"
size_hint: 0.3, 0.1
pos_hint: {"x": 0.1, "y": 0.7}
values: ["60Hz - 75Hz", "75 - 120Hz", "120Hz - 144Hz", "144 - 165Hz", "bis 250Hz", "Mehr als 250Hz"]
GridLayout:
size_hint: 0.3, 0.1
pos_hint: {"x": 0.6, "y": 0.55}
cols: 3
Label:
text: "Gaming"
MDCheckbox:
size: "24dp", "24dp"
Button:
text: "Welche?"
MDProgressBar:
orientation: "horizontal"
value: 0
GridLayout:
size_hint: 0.3, 0.1
pos_hint: {"x": 0.1, "y": 0.4}
cols: 2
Label:
text: "WLAN, Bluetooth"
MDCheckbox:
size: "24dp", "24dp"
GridLayout:
size_hint: 0.3, 0.1
pos_hint: {"x": 0.6, "y": 0.4}
cols: 2
Label:
text: "DVD"
MDCheckbox:
size: "24dp", "24dp"
MDTextField:
hint_text: "Budget"
id: budget_info
size_hint: 0.3, 0.1
pos_hint: {"x": 0.1, "y": 0.85}
Button:
text: "Weitere Optionen"
size_hint: 0.3, 0.1
pos_hint: {"x":0.6, "y": 0.2}