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.
65 lines
1.7 KiB
C++
65 lines
1.7 KiB
C++
#ifndef MWGUI_BOOKWINDOW_H
|
|
#define MWGUI_BOOKWINDOW_H
|
|
|
|
#include "windowbase.hpp"
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
#include <components/widgets/imagebutton.hpp>
|
|
|
|
namespace MWGui
|
|
{
|
|
class BookWindow : public WindowBase
|
|
{
|
|
public:
|
|
BookWindow();
|
|
|
|
void setPtr(const MWWorld::Ptr& book);
|
|
void setInventoryAllowed(bool allowed);
|
|
|
|
void onResChange(int, int) { center(); }
|
|
|
|
protected:
|
|
void onNextPageButtonClicked (MyGUI::Widget* sender);
|
|
void onPrevPageButtonClicked (MyGUI::Widget* sender);
|
|
void onCloseButtonClicked (MyGUI::Widget* sender);
|
|
void onTakeButtonClicked (MyGUI::Widget* sender);
|
|
void onMouseWheel(MyGUI::Widget* _sender, int _rel);
|
|
void setTakeButtonShow(bool show);
|
|
|
|
void onKeyButtonPressed(MyGUI::Widget* sender, MyGUI::KeyCode key, MyGUI::Char character);
|
|
|
|
void nextPage();
|
|
void prevPage();
|
|
|
|
void updatePages();
|
|
void clearPages();
|
|
void adjustButton(Gui::ImageButton* button);
|
|
|
|
private:
|
|
typedef std::pair<int, int> Page;
|
|
typedef std::vector<Page> Pages;
|
|
|
|
Gui::ImageButton* mCloseButton;
|
|
Gui::ImageButton* mTakeButton;
|
|
Gui::ImageButton* mNextPageButton;
|
|
Gui::ImageButton* mPrevPageButton;
|
|
|
|
MyGUI::TextBox* mLeftPageNumber;
|
|
MyGUI::TextBox* mRightPageNumber;
|
|
MyGUI::Widget* mLeftPage;
|
|
MyGUI::Widget* mRightPage;
|
|
|
|
unsigned int mCurrentPage; // 0 is first page
|
|
Pages mPages;
|
|
|
|
MWWorld::Ptr mBook;
|
|
|
|
bool mTakeButtonShow;
|
|
bool mTakeButtonAllowed;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|