#endif
#include "wx/evtloop.h"
-#include "wx/ptr_scpd.h"
+#include "wx/scopedptr.h"
// ----------------------------------------------------------------------------
// wxWin macros
long style,
const wxString& name)
{
- return false;
+ if ( !wxTopLevelWindow::Create(parent, id, title, pos, size, style, name) )
+ return false;
+ return true;
}
wxDialog::~wxDialog()
{
+ Show (false);
}
// ----------------------------------------------------------------------------
// showing the dialogs
// ----------------------------------------------------------------------------
-wxWindow *wxDialog::FindSuitableParent() const
-{
- return NULL;
-}
-
bool wxDialog::Show(bool show)
{
- return false;
+ if (show && CanDoLayoutAdaptation())
+ DoLayoutAdaptation();
+
+ return wxTopLevelWindowPalm::Show (show);
}
void wxDialog::Raise()
// show dialog modally
int wxDialog::ShowModal()
{
+ Show (true);
+
+ if (errNone == FrmDoDialog ((FormType *)wxTopLevelWindow::GetForm())) {
+ return 0;
+ }
return -1;
}