mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-14 05:42:13 +08:00
26 lines
663 B
C++
26 lines
663 B
C++
#pragma once
|
|
|
|
#include "starpilot/ui/qt/offroad/starpilot_settings.h"
|
|
|
|
class StarPilotUtilitiesPanel : public StarPilotListWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit StarPilotUtilitiesPanel(StarPilotSettingsWindow *parent, bool forceOpen = false);
|
|
|
|
private:
|
|
bool forceOpenDescriptions;
|
|
|
|
StarPilotSettingsWindow *parent;
|
|
|
|
Params params;
|
|
Params params_memory{"", true};
|
|
|
|
std::set<std::string> excluded_keys = {
|
|
"AvailableModels", "AvailableModelNames", "StarPilotStats",
|
|
"GithubSshKeys", "GithubUsername", "MapBoxRequests",
|
|
"ModelDrivesAndScores", "OverpassRequests", "SpeedLimits",
|
|
"SpeedLimitsFiltered", "UpdaterAvailableBranches",
|
|
};
|
|
};
|