You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.0 KiB
C++
51 lines
1.0 KiB
C++
#ifndef MWGUI_DIALOGE_H
|
|
#define MWGUI_DIALOGE_H
|
|
|
|
#include "window_base.hpp"
|
|
#include <boost/array.hpp>
|
|
|
|
namespace MWGui
|
|
{
|
|
class WindowManager;
|
|
}
|
|
|
|
/*
|
|
This file contains the dialouge window
|
|
Layout is defined by resources/mygui/openmw_dialogue_window_layout.xml.
|
|
*/
|
|
|
|
namespace MWGui
|
|
{
|
|
class DialogeHistory;
|
|
|
|
using namespace MyGUI;
|
|
|
|
class DialogueWindow: public WindowBase
|
|
{
|
|
public:
|
|
DialogueWindow(WindowManager& parWindowManager);
|
|
|
|
void open();
|
|
|
|
// Events
|
|
typedef delegates::CDelegate0 EventHandle_Void;
|
|
|
|
/** Event : Dialog finished, OK button clicked.\n
|
|
signature : void method()\n
|
|
*/
|
|
EventHandle_Void eventBye;
|
|
|
|
protected:
|
|
void onSelectTopic(MyGUI::List* _sender, size_t _index);
|
|
void onByeClicked(MyGUI::Widget* _sender);
|
|
void onHistoryClicked(MyGUI::Widget* _sender);
|
|
|
|
private:
|
|
void updateOptions();
|
|
|
|
DialogeHistory* history;
|
|
MyGUI::ListPtr topicsList;
|
|
};
|
|
}
|
|
#endif
|