FullscreenUI: Allow tweaking notification vertical position

This commit is contained in:
Connor McLaughlin
2021-03-13 21:01:02 +10:00
parent c062cc2c26
commit 28e52e53e7
2 changed files with 32 additions and 5 deletions

View File

@@ -244,6 +244,10 @@ bool IsChoiceDialogOpen();
void OpenChoiceDialog(const char* title, bool checkable, ChoiceDialogOptions options, ChoiceDialogCallback callback);
void CloseChoiceDialog();
float GetNotificationVerticalPosition();
float GetNotificationVerticalDirection();
void SetNotificationVerticalPosition(float position, float direction);
void OpenBackgroundProgressDialog(const char* str_id, std::string message, s32 min, s32 max, s32 value);
void UpdateBackgroundProgressDialog(const char* str_id, std::string message, s32 min, s32 max, s32 value);
void CloseBackgroundProgressDialog(const char* str_id);