| 243 | } |
| 244 | |
| 245 | void Scene_Debug::PushUiNumberInput(int init_value, int digits, bool show_operator) { |
| 246 | Push(eUiNumberInput); |
| 247 | |
| 248 | numberinput_window->SetNumber(init_value); |
| 249 | numberinput_window->SetShowOperator(show_operator); |
| 250 | numberinput_window->SetVisible(true); |
| 251 | numberinput_window->SetActive(true); |
| 252 | numberinput_window->SetMaxDigits(digits); |
| 253 | numberinput_window->Refresh(); |
| 254 | |
| 255 | RefreshDetailWindow(); |
| 256 | UpdateRangeListWindow(); |
| 257 | } |
| 258 | |
| 259 | void Scene_Debug::PushUiChoices(std::vector<std::string> choices, std::vector<bool> choices_enabled) { |
| 260 | Push(eUiChoices); |
nothing calls this directly
no test coverage detected