mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 16:49:55 +00:00
3f846a50d9
Conflicts: apps/openmw/mwgui/travelwindow.cpp
39 lines
955 B
C++
39 lines
955 B
C++
#ifndef MWGUI_JOURNAL_H
|
|
#define MWGUI_JOURNAL_H
|
|
|
|
#include <string>
|
|
|
|
#include "windowbase.hpp"
|
|
#include "imagebutton.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
class JournalWindow : public WindowBase
|
|
{
|
|
public:
|
|
JournalWindow();
|
|
virtual void open();
|
|
|
|
private:
|
|
void displayLeftText(std::string text);
|
|
void displayRightText(std::string text);
|
|
|
|
|
|
/**
|
|
*Called when next/prev button is used.
|
|
*/
|
|
void notifyNextPage(MyGUI::Widget* _sender);
|
|
void notifyPrevPage(MyGUI::Widget* _sender);
|
|
|
|
MyGUI::EditBox* mLeftTextWidget;
|
|
MyGUI::EditBox* mRightTextWidget;
|
|
MWGui::ImageButton* mPrevBtn;
|
|
MWGui::ImageButton* mNextBtn;
|
|
std::vector<std::string> mLeftPages;
|
|
std::vector<std::string> mRightPages;
|
|
int mPageNumber; //store the number of the current left page
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|