gitextract_2zak6t04/ ├── .clang-format ├── .gitattributes ├── .github/ │ └── workflows/ │ └── Build.yml ├── .gitignore ├── .gitmodules ├── CHANGES.md ├── CONTRIBUTORS.md ├── LICENSE.md ├── QDriverStation.pro ├── README.md ├── doc/ │ └── config/ │ ├── doxyfile │ └── startpage.md ├── etc/ │ ├── deploy/ │ │ ├── linux/ │ │ │ └── qdriverstation.desktop │ │ ├── macOS/ │ │ │ ├── icon.icns │ │ │ └── info.plist │ │ └── windows/ │ │ ├── nsis/ │ │ │ └── setup.nsi │ │ └── resources/ │ │ └── info.rc │ └── resources/ │ └── resources.qrc ├── qml/ │ ├── Dialogs/ │ │ ├── SettingsWindow.qml │ │ └── VirtualJoystickWindow.qml │ ├── Globals.js │ ├── MainWindow/ │ │ ├── About.qml │ │ ├── BatteryChart.qml │ │ ├── Charts.qml │ │ ├── Diagnostics.qml │ │ ├── JoystickItem.qml │ │ ├── Joysticks.qml │ │ ├── LeftTab.qml │ │ ├── MainWindow.qml │ │ ├── Messages.qml │ │ ├── Operator.qml │ │ ├── Preferences.qml │ │ ├── RightTab.qml │ │ ├── Status.qml │ │ └── VoltageGraph.qml │ ├── Widgets/ │ │ ├── Button.qml │ │ ├── Checkbox.qml │ │ ├── Combobox.qml │ │ ├── Icon.qml │ │ ├── Icons.qml │ │ ├── LED.qml │ │ ├── Label.qml │ │ ├── LineEdit.qml │ │ ├── ListViewer.qml │ │ ├── Panel.qml │ │ ├── Plot.qml │ │ ├── Progressbar.qml │ │ ├── Scrollbar.qml │ │ ├── Spinbox.qml │ │ └── TextEditor.qml │ ├── main.qml │ └── qml.qrc └── src/ ├── beeper.cpp ├── beeper.h ├── dashboards.cpp ├── dashboards.h ├── main.cpp ├── shortcuts.cpp ├── shortcuts.h ├── utilities.cpp ├── utilities.h └── versions.h