2010-07-07 16:48:06 +00:00
|
|
|
|
|
|
|
#include "guimanager.hpp"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
namespace MWGui
|
|
|
|
{
|
2010-07-07 18:12:00 +00:00
|
|
|
void GuiManager::enableWindow (GuiWindow window)
|
2010-07-07 16:48:06 +00:00
|
|
|
{
|
2010-07-07 18:12:00 +00:00
|
|
|
std::cout << "enable window: " << window << std::endl;
|
2010-07-07 16:48:06 +00:00
|
|
|
}
|
|
|
|
|
2010-07-07 18:12:00 +00:00
|
|
|
void GuiManager::showOneTimeDialogue (GuiOneTimeDialogue dialogue)
|
2010-07-07 16:48:06 +00:00
|
|
|
{
|
2010-07-07 18:12:00 +00:00
|
|
|
std::cout << "show one time dialogue: " << dialogue << std::endl;
|
2010-07-07 16:48:06 +00:00
|
|
|
}
|
|
|
|
|
2010-07-07 18:12:00 +00:00
|
|
|
void GuiManager::enableDialogue (GuiDialogue dialogue)
|
2010-07-07 16:48:06 +00:00
|
|
|
{
|
2010-07-07 18:12:00 +00:00
|
|
|
std::cout << "enable dialogue: " << dialogue << std::endl;
|
2010-07-07 16:48:06 +00:00
|
|
|
}
|
|
|
|
|
2010-07-07 18:12:00 +00:00
|
|
|
void GuiManager::showDialogue (GuiDialogue dialogue)
|
2010-07-07 16:48:06 +00:00
|
|
|
{
|
2010-07-07 18:12:00 +00:00
|
|
|
std::cout << "show dialogue: " << dialogue << std::endl;
|
2010-07-07 16:48:06 +00:00
|
|
|
}
|
2010-07-07 18:12:00 +00:00
|
|
|
|
2010-07-07 16:48:06 +00:00
|
|
|
bool GuiManager::isGuiActive() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|