19 #ifndef HEADER_DEBUG_DIALOG_HPP
20 #define HEADER_DEBUG_DIALOG_HPP
22 #include "guiengine/modaldialog.hpp"
23 #include "utils/cpp2011.hpp"
24 #include "utils/leak_check.hpp"
40 virtual void onEnterPressedInternal() OVERRIDE;
41 virtual void onUpdate(
float dt) OVERRIDE;
43 GUIEngine::EventPropagation
processEvent(
const std::string& eventSource) OVERRIDE;
For dialogs shown by the artist debug mode and similar utilities.
Definition: debug_message_dialog.hpp:31
virtual void onUpdate(float dt) OVERRIDE
Override to be notified of updates.
Definition: debug_message_dialog.cpp:83
GUIEngine::EventPropagation processEvent(const std::string &eventSource) OVERRIDE
Returns whether to block event propagation (usually, you will want to block events you processed)
Definition: debug_message_dialog.cpp:70
Abstract base class representing a modal dialog.
Definition: modaldialog.hpp:56