mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-25 13:42:37 +00:00
make sure the mouse over widget and the focused widget are informed when the dialog is closed
svn-id: r4645
This commit is contained in:
parent
b9593a256a
commit
e0f1d6c5aa
@ -57,6 +57,24 @@ void Dialog::teardownScreenBuf()
|
||||
}
|
||||
}
|
||||
|
||||
void Dialog::open()
|
||||
{
|
||||
_gui->openDialog(this);
|
||||
}
|
||||
|
||||
void Dialog::close()
|
||||
{
|
||||
if (_mouseWidget) {
|
||||
_mouseWidget->handleMouseLeft(0);
|
||||
_mouseWidget = 0;
|
||||
}
|
||||
if (_focusedWidget) {
|
||||
_focusedWidget->lostFocus();
|
||||
_focusedWidget = 0;
|
||||
}
|
||||
_gui->closeTopDialog();
|
||||
}
|
||||
|
||||
void Dialog::draw()
|
||||
{
|
||||
Widget *w = _firstWidget;
|
||||
@ -220,13 +238,6 @@ Widget *Dialog::findWidget(int x, int y)
|
||||
return w;
|
||||
}
|
||||
|
||||
void Dialog::close()
|
||||
{
|
||||
_mouseWidget = 0;
|
||||
_focusedWidget = 0;
|
||||
_gui->closeTopDialog();
|
||||
}
|
||||
|
||||
void Dialog::addResText(int x, int y, int w, int h, int resID)
|
||||
{
|
||||
// Get the string
|
||||
|
@ -54,6 +54,9 @@ public:
|
||||
{}
|
||||
virtual ~Dialog();
|
||||
|
||||
virtual void open();
|
||||
virtual void close();
|
||||
|
||||
virtual void draw();
|
||||
|
||||
virtual void handleTickle(); // Called periodically (in every guiloop() )
|
||||
@ -71,7 +74,6 @@ public:
|
||||
|
||||
protected:
|
||||
Widget* findWidget(int x, int y); // Find the widget at pos x,y if any
|
||||
void close();
|
||||
|
||||
void addResText(int x, int y, int w, int h, int resID);
|
||||
void addButton(int x, int y, int w, int h, const char *label, uint32 cmd, char hotkey);
|
||||
|
10
newgui.cpp
10
newgui.cpp
@ -48,35 +48,35 @@ void NewGui::pauseDialog()
|
||||
{
|
||||
if (!_pauseDialog)
|
||||
_pauseDialog = new PauseDialog(this);
|
||||
openDialog(_pauseDialog);
|
||||
_pauseDialog->open();
|
||||
}
|
||||
|
||||
void NewGui::saveloadDialog()
|
||||
{
|
||||
if (!_saveLoadDialog)
|
||||
_saveLoadDialog = new SaveLoadDialog(this);
|
||||
openDialog(_saveLoadDialog);
|
||||
_saveLoadDialog->open();
|
||||
}
|
||||
|
||||
void NewGui::aboutDialog()
|
||||
{
|
||||
if (!_aboutDialog)
|
||||
_aboutDialog = new AboutDialog(this);
|
||||
openDialog(_aboutDialog);
|
||||
_aboutDialog->open();
|
||||
}
|
||||
|
||||
void NewGui::optionsDialog()
|
||||
{
|
||||
if (!_optionsDialog)
|
||||
_optionsDialog = new OptionsDialog(this);
|
||||
openDialog(_optionsDialog);
|
||||
_optionsDialog->open();
|
||||
}
|
||||
|
||||
void NewGui::soundDialog()
|
||||
{
|
||||
if (!_soundDialog)
|
||||
_soundDialog = new SoundDialog(this);
|
||||
openDialog(_soundDialog);
|
||||
_soundDialog->open();
|
||||
}
|
||||
|
||||
void NewGui::loop()
|
||||
|
Loading…
x
Reference in New Issue
Block a user