mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-20 15:54:13 +08:00
26 lines
663 B
C++
26 lines
663 B
C++
#pragma once
|
|
|
|
#include "frogpilot/ui/qt/offroad/frogpilot_settings.h"
|
|
|
|
class FrogPilotUtilitiesPanel : public FrogPilotListWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FrogPilotUtilitiesPanel(FrogPilotSettingsWindow *parent, bool forceOpen = false);
|
|
|
|
private:
|
|
bool forceOpenDescriptions;
|
|
|
|
FrogPilotSettingsWindow *parent;
|
|
|
|
Params params;
|
|
Params params_memory{"", true};
|
|
|
|
std::set<std::string> excluded_keys = {
|
|
"AvailableModels", "AvailableModelNames", "FrogPilotStats",
|
|
"GithubSshKeys", "GithubUsername", "MapBoxRequests",
|
|
"ModelDrivesAndScores", "OverpassRequests", "SpeedLimits",
|
|
"SpeedLimitsFiltered", "UpdaterAvailableBranches",
|
|
};
|
|
};
|