-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.kv
More file actions
36 lines (32 loc) · 953 Bytes
/
main.kv
File metadata and controls
36 lines (32 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#:kivy 2.0.0
# main.kv
# Description:
# This file contains the definition of the window manager for the application.
# It also connects defined screens to the window manager
# Widgets
# There is no need to import these in screens
#:include ./Widgets/TopBarLayout.kv
# Screens
#:include ./Screens/Login.kv
#:include ./Screens/MainMenu.kv
#:include ./Screens/PlaneInfo.kv
#:include ./Screens/Schedule.kv
#:include ./Screens/Manager.kv
#:include ./Screens/Radar.kv
#:include ./Screens/TerminalSimulation.kv
#:include ./Screens/MasterLog.kv
#:include ./Screens/IncidentLog.kv
#:include ./Screens/GroundCrewSimulation.kv
#:include ./Screens/Communications.kv
# GUI definition of the WindowManager controller
WindowManager:
LoginWindow:
MainMenuWindow:
PlaneInfoWindow:
ScheduleWindow:
RadarWindow:
TerminalSimulationWindow:
MasterLogWindow:
IncidentLogWindow:
GroundCrewSimulationWindow:
CommunicationsWindow: