mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-06 10:47:34 +01:00
added autostart feature
This commit is contained in:
parent
747b6bfbc6
commit
663dd8d887
@ -18,6 +18,7 @@ void CommandArgsParser::defineAll() {
|
||||
define('p', "port", "Server mode port", 5259);
|
||||
define('r', "root", "Root directory, where all config files are stored", std::filesystem::absolute(root).string());
|
||||
define('s', "server", "Run in server mode");
|
||||
define('\0', "autostart", "Automatically start the SDR after loading");
|
||||
}
|
||||
|
||||
int CommandArgsParser::parse(int argc, char* argv[]) {
|
||||
|
@ -221,6 +221,7 @@ void MainWindow::init() {
|
||||
}
|
||||
}
|
||||
|
||||
autostart = core::args["autostart"].b();
|
||||
initComplete = true;
|
||||
|
||||
core::moduleManager.doPostInitAll();
|
||||
@ -385,6 +386,12 @@ void MainWindow::draw() {
|
||||
}
|
||||
if (playButtonLocked && !tmpPlaySate) { style::endDisabled(); }
|
||||
|
||||
// Handle auto-start
|
||||
if (autostart) {
|
||||
autostart = false;
|
||||
setPlayState(true);
|
||||
}
|
||||
|
||||
ImGui::SameLine();
|
||||
float origY = ImGui::GetCursorPosY();
|
||||
|
||||
|
@ -63,6 +63,7 @@ private:
|
||||
int selectedWindow = 0;
|
||||
|
||||
bool initComplete = false;
|
||||
bool autostart = false;
|
||||
|
||||
EventHandler<VFOManager::VFO*> vfoCreatedHandler;
|
||||
};
|
Loading…
Reference in New Issue
Block a user