// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
-#ifdef __VMS
-#define XtDisplay XTDISPLAY
-#define XtWindow XTWINDOW
-#define XtParent XTPARENT
-#define XtScreen XTSCREEN
-#endif
-
#include "wx/dialog.h"
#ifndef WX_PRECOMP
XtSetArg (args[1], XmNautoUnmanage, False);
Widget dialogShell =
XmCreateBulletinBoardDialog( parentWidget,
- wxConstCast(name.mb_str(), char),
+ name.char_str(),
args, 2);
m_mainWidget = (WXWidget) dialogShell;
{
m_isBeingDeleted = true;
+ // if the dialog is modal, this will end its event loop
+ Show(false);
+
delete m_eventLoop;
if (m_mainWidget)
{
wxXmString str( title );
XtVaSetValues( (Widget)m_mainWidget,
- XmNtitle, title.mb_str(),
+ XmNtitle, (const char*)title.mb_str(),
XmNdialogTitle, str(),
- XmNiconName, title.mb_str(),
+ XmNiconName, (const char*)title.mb_str(),
NULL );
}
}
if( !wxWindowBase::Show( show ) )
return false;
+ if ( !show && IsModal() )
+ EndModal(wxID_CANCEL);
+
m_isShown = show;
if (show)
{
+ if (CanDoLayoutAdaptation())
+ DoLayoutAdaptation();
+
// this usually will result in TransferDataToWindow() being called
// which will change the controls values so do it before showing as
// otherwise we could have some flicker