WoW Model Viewer
Your premiere tool for viewing, equipping and animating World of Warcraft models.
Loading...
Searching...
No Matches
AppDialogs.h
Go to the documentation of this file.
1#pragma once
2
3// ---- Application modal dialogs --------------------------------------------
4// Extracted from main.cpp — standalone modals that operate directly on
5// AppState (URL Import, Config Selection, About, Language / Locale).
6
7struct AppState;
8
10namespace AppDialogs
11{
12
14void drawImportDialog(AppState& app);
15
17void drawConfigPopup(AppState& app);
18
20void drawAboutDialog(AppState& app);
21
24
25} // namespace AppDialogs
Application modal dialogs (URL Import, Config Selection, About, Language).
Definition AppDialogs.h:11
void drawConfigPopup(AppState &app)
Draw the game config selection popup (locale / product picker).
void drawAboutDialog(AppState &app)
Draw the About dialog with version and credits.
void drawLanguageDialog(AppState &app)
Draw the Language / Locale selection dialog.
void drawImportDialog(AppState &app)
Draw the URL import dialog (Armory / Wowhead).
Top-level aggregate of all mutable application state.
Definition AppState.h:261