#pragma once #include #include #include namespace gui { // Show a dialog with the given message void showNotification(const std::string &message); // Request a line of text from the user std::optional promptText(const std::string &message); // Let the user choose from a list of items std::optional chooseList(const std::string &message, const std::string &header, const std::vector &options); }