X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fb8dcb05283b9ccfd130eeb0bdae24b6615d5ce8..bd235295fb3b35fdb29326084b87893cf5432eb5:/src/osx/cocoa/dialog.mm?ds=sidebyside diff --git a/src/osx/cocoa/dialog.mm b/src/osx/cocoa/dialog.mm index 9d99165c63..51a4d7ea40 100644 --- a/src/osx/cocoa/dialog.mm +++ b/src/osx/cocoa/dialog.mm @@ -24,39 +24,24 @@ extern wxList wxModalDialogs; -void wxDialog::DoShowModal() -{ - - SetFocus() ; -/* - WindowGroupRef windowGroup; - WindowGroupRef formerParentGroup; - bool resetGroupParent = false; - - if ( GetParent() == NULL ) - { - windowGroup = GetWindowGroup(windowRef) ; - formerParentGroup = GetWindowGroupParent( windowGroup ); - SetWindowGroupParent( windowGroup, GetWindowGroupOfClass( kMovableModalWindowClass ) ); - resetGroupParent = true; - } -*/ - +void wxDialog::DoShowWindowModal() +{ + wxTopLevelWindow* parent = static_cast(wxGetTopLevelParent(GetParent())); + + wxASSERT_MSG(parent, "ShowWindowModal requires the dialog to have a parent."); + + NSWindow* parentWindow = parent->GetWXWindow(); NSWindow* theWindow = GetWXWindow(); - NSModalSession session = [NSApp beginModalSessionForWindow:theWindow]; - while (IsModal()) - { - if ([NSApp runModalSession:session] != NSRunContinuesResponse) - break; - // TODO should we do some idle processing ? - } - [NSApp endModalSession:session]; + [NSApp beginSheet: theWindow + modalForWindow: parentWindow + modalDelegate: theWindow + didEndSelector: nil + contextInfo: nil]; +} -/* - if ( resetGroupParent ) - { - SetWindowGroupParent( windowGroup , formerParentGroup ); - } -*/ +void wxDialog::EndWindowModal() +{ + [NSApp endSheet: GetWXWindow()]; + [GetWXWindow() orderOut:GetWXWindow()]; }