git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26773
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
DECLARE_DYNAMIC_CLASS(wxDialog)
public:
DECLARE_DYNAMIC_CLASS(wxDialog)
public:
// Constructor with a modal flag, but no window id - the old convention
wxDialog(wxWindow *parent,
// Constructor with a modal flag, but no window id - the old convention
wxDialog(wxWindow *parent,
long style = wxDEFAULT_DIALOG_STYLE,
const wxString& name = wxDialogNameStr)
{
long style = wxDEFAULT_DIALOG_STYLE,
const wxString& name = wxDialogNameStr)
{
- long modalStyle = modal ? wxDIALOG_MODAL : wxDIALOG_MODELESS ;
+ Init();
+ m_isModalStyle = modal;
Create(parent, -1, title, wxPoint(x, y), wxSize(width, height),
Create(parent, -1, title, wxPoint(x, y), wxSize(width, height),
- style | modalStyle, name);
}
// Constructor with no modal flag - the new convention.
}
// Constructor with no modal flag - the new convention.
long style = wxDEFAULT_DIALOG_STYLE,
const wxString& name = wxDialogNameStr)
{
long style = wxDEFAULT_DIALOG_STYLE,
const wxString& name = wxDialogNameStr)
{
Create(parent, id, title, pos, size, style, name);
}
Create(parent, id, title, pos, size, style, name);
}
void DoShowModal();
private:
void DoShowModal();
private:
+ void Init();
+ bool m_isModalStyle;
+ m_isModalStyle = false;
}
bool wxDialog::Create(wxWindow *parent, wxWindowID id,
}
bool wxDialog::Create(wxWindow *parent, wxWindowID id,
- m_windowStyle |= wxDIALOG_MODAL;
wxModelessWindows.DeleteObject(this);
#if TARGET_CARBON
wxModelessWindows.DeleteObject(this);
#if TARGET_CARBON
- m_windowStyle &= ~wxDIALOG_MODAL;
+ m_isModalStyle = false;
wxModelessWindows.Append(this);
}
wxModelessWindows.Append(this);
}
bool wxDialog::IsModal() const
{
bool wxDialog::IsModal() const
{
- return (GetWindowStyleFlag() & wxDIALOG_MODAL) != 0;