| 1234567891011121314151617181920 |
- #include "common_dialogs.h"
- #include "constants.h"
- static DialogMessageButton totp_dialogs_common(PluginState* plugin_state, const char* text) {
- DialogMessage* message = dialog_message_alloc();
- dialog_message_set_buttons(message, "Exit", NULL, NULL);
- dialog_message_set_text(
- message, text, SCREEN_WIDTH_CENTER, SCREEN_HEIGHT_CENTER, AlignCenter, AlignCenter);
- DialogMessageButton result = dialog_message_show(plugin_state->dialogs_app, message);
- dialog_message_free(message);
- return result;
- }
- DialogMessageButton totp_dialogs_config_loading_error(PluginState* plugin_state) {
- return totp_dialogs_common(plugin_state, "An error has occurred\nduring loading config file");
- }
- DialogMessageButton totp_dialogs_config_updating_error(PluginState* plugin_state) {
- return totp_dialogs_common(plugin_state, "An error has occurred\nduring updating config file");
- }
|