X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1bc822dfb5cdc24fd2d98b59ea20c9951301bfb1..cd318cd31b8fd9876af7ba5f4878b90f446bd0f5:/src/motif/toplevel.cpp diff --git a/src/motif/toplevel.cpp b/src/motif/toplevel.cpp index 67ad48ed5d..5f2891a4e5 100644 --- a/src/motif/toplevel.cpp +++ b/src/motif/toplevel.cpp @@ -17,7 +17,7 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(__APPLE__) +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "toplevel.h" #endif @@ -25,7 +25,11 @@ #include "wx/app.h" #ifdef __VMS__ - #pragma message disable nosimpint +#define XtDisplay XTDISPLAY +#define XtParent XTPARENT +#define XtScreen XTSCREEN +#define XtWindow XTWINDOW +#pragma message disable nosimpint #endif #include @@ -60,10 +64,8 @@ static void wxTLWEventHandler( Widget wid, // wxTopLevelWindowMotif implementation // =========================================================================== -wxTopLevelWindowMotif::~wxTopLevelWindowMotif() +void wxTopLevelWindowMotif::PreDestroy() { - wxTopLevelWindows.DeleteObject(this); - if ( (GetWindowStyleFlag() & wxDIALOG_MODAL) != wxDIALOG_MODAL ) wxModelessWindows.DeleteObject(this); @@ -81,21 +83,11 @@ wxTopLevelWindowMotif::~wxTopLevelWindowMotif() wxTLWEventHandler, (XtPointer)this ); } +} - DoDestroy(); - +wxTopLevelWindowMotif::~wxTopLevelWindowMotif() +{ SetMainWidget( (WXWidget)0 ); - - // If this is the last top-level window, exit. - if (wxTheApp && (wxTopLevelWindows.GetCount() == 0)) - { - wxTheApp->SetTopWindow(NULL); - - if (wxTheApp->GetExitOnFrameDelete()) - { - wxTheApp->ExitMainLoop(); - } - } } void wxTopLevelWindowMotif::Init() @@ -312,6 +304,32 @@ bool wxTopLevelWindowMotif::IsMaximized() const return FALSE; } +void wxTopLevelWindowMotif::SetSizeHints( int minW, int minH, + int maxW, int maxH, + int incW, int incH ) +{ + wxTopLevelWindowBase::SetSizeHints( minW, minH, maxW, maxH, incW, incH ); + + int count = 0; + Arg args[6]; + + if( minW > -1 ) { XtSetArg( args[count], XmNminWidth, minW ); ++count; } + if( minH > -1 ) { XtSetArg( args[count], XmNminHeight, minH ); ++count; } + if( maxW > -1 ) { XtSetArg( args[count], XmNmaxWidth, maxW ); ++count; } + if( maxH > -1 ) { XtSetArg( args[count], XmNmaxHeight, maxH ); ++count; } + if( incW > -1 ) { XtSetArg( args[count], XmNwidthInc, incW ); ++count; } + if( incH > -1 ) { XtSetArg( args[count], XmNheightInc, incH ); ++count; } + + XtSetValues( (Widget)GetShellWidget(), args, count ); +} + +bool wxTopLevelWindowMotif::SetShape( const wxRegion& region ) +{ + return wxDoSetShape( (Display*)GetXDisplay(), + XtWindow( (Widget)GetShellWidget() ), + region ); +} + // --------------------------------------------------------------------------- // Callback definition // ---------------------------------------------------------------------------