blob: 1678f871e764b612605e1fc36c740a9d5c6bc123 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
/// Returned by popup::show whenever the popup is opened
/// but there is no user action yet, so the UI should wait
constexpr static int POPUP_WAIT = -1;
namespace imutils
{
int popup(const std::string& title, const std::string& question, const std::string* choices, std::size_t num_choices,
float font_scale = 1.75f);
} // namespace imutils
|