static void OnOptimized(CheckBoxControl &control) { is_locked = !control.GetState(); protected_task_manager->TargetLock(target_point, is_locked); RefreshCalculator(); }
void MacCreadySetupPanel::OnAction(int id) { TaskBehaviour &task_behaviour = CommonInterface::SetComputerSettings().task; task_behaviour.auto_mc = auto_mc.GetState(); Profile::Set(ProfileKeys::AutoMc, task_behaviour.auto_mc); }
static void OnUserLevel(CheckBoxControl &control) { const bool expert = control.GetState(); CommonInterface::SetUISettings().dialog.expert = expert; Profile::Set(ProfileKeys::UserLevel, expert); tab_menu->UpdateLayout(); }
static void OnUserLevel(CheckBoxControl &control) { const bool expert = control.GetState(); CommonInterface::SetUISettings().dialog.expert = expert; Profile::Set(szProfileUserLevel, expert); wf->FilterAdvanced(expert); wTabMenu->UpdateLayout(); }
static void OnUserLevel(CheckBoxControl &control) { const bool expert = control.GetState(); CommonInterface::SetUISettings().dialog.expert = expert; Profile::Set(ProfileKeys::UserLevel, expert); /* force layout update */ pager->PagerWidget::Move(pager->GetPosition()); }
bool TaskPointWidget::ReadValues() { OrderedTaskPoint &tp = ordered_task.GetPoint(active_index); if (tp.GetType() == TaskPointType::AST) { const bool new_score_exit = score_exit.GetState(); ASTPoint &ast = (ASTPoint &)tp; if (new_score_exit != ast.GetScoreExit()) { ast.SetScoreExit(new_score_exit); ordered_task.ClearName(); task_modified = true; } } return properties_dock.SaveWidget(task_modified); }
static void OnNorthUp(CheckBoxControl &control) { wdf->SetNorthUp(control.GetState()); }
static void OnAutoZoom(CheckBoxControl &control) { wdf->SetAutoZoom(control.GetState()); }