mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
#ifndef MWGUI_COUNTDIALOG_H
|
|
#define MWGUI_COUNTDIALOG_H
|
|
|
|
#include "window_base.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
class CountDialog : public WindowModal
|
|
{
|
|
public:
|
|
CountDialog(MWBase::WindowManager& parWindowManager);
|
|
void open(const std::string& item, const std::string& message, const int maxCount);
|
|
|
|
typedef MyGUI::delegates::CMultiDelegate2<MyGUI::Widget*, int> EventHandle_WidgetInt;
|
|
|
|
/** Event : Ok button was clicked.\n
|
|
signature : void method(MyGUI::Widget* _sender, int _count)\n
|
|
*/
|
|
EventHandle_WidgetInt eventOkClicked;
|
|
|
|
private:
|
|
MyGUI::ScrollBar* mSlider;
|
|
MyGUI::EditBox* mItemEdit;
|
|
MyGUI::TextBox* mItemText;
|
|
MyGUI::TextBox* mLabelText;
|
|
MyGUI::Button* mOkButton;
|
|
MyGUI::Button* mCancelButton;
|
|
|
|
void onCancelButtonClicked(MyGUI::Widget* _sender);
|
|
void onOkButtonClicked(MyGUI::Widget* _sender);
|
|
void onEditTextChange(MyGUI::EditBox* _sender);
|
|
void onSliderMoved(MyGUI::ScrollBar* _sender, size_t _position);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|