Skip to content

Commit

Permalink
Improved Mac OS implementation of Fl_Window::wait_for_expose().
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10828 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
Manolo Gouy authored and Manolo Gouy committed Aug 11, 2015
1 parent e9888e0 commit 1e6bc1c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
1 change: 0 additions & 1 deletion FL/mac.H
Expand Up @@ -208,7 +208,6 @@ public:
static Fl_Fontdesc* calc_fl_fonts(void); // computes the fl_fonts global variable
static int dnd(int use_selection); // call Fl_X::dnd(1) to support text dragging
static int calc_mac_os_version(void); // computes the fl_mac_os_version global variable
static void do_wait_for_expose();
private:
#if FLTK_ABI_VERSION >= 10304
CGRect* subRect_; // makes sure subwindow remains inside its parent window
Expand Down
7 changes: 3 additions & 4 deletions src/Fl_Window.cxx
Expand Up @@ -401,6 +401,8 @@ void Fl_Window::free_icons() {
#endif
}


#ifndef __APPLE__
/**
Waits for the window to be displayed after calling show().
Expand Down Expand Up @@ -462,14 +464,11 @@ void Fl_Window::free_icons() {

void Fl_Window::wait_for_expose() {
if (!shown()) return;
#ifdef __APPLE__
Fl_X::do_wait_for_expose();
#else
while (!i || i->wait_for_expose) {
Fl::wait();
}
#endif
}
#endif // ! __APPLE__

//
// End of "$Id$".
Expand Down
12 changes: 7 additions & 5 deletions src/Fl_cocoa.mm
Expand Up @@ -3085,11 +3085,13 @@ static void set_subwindow_frame(Fl_Window *w) { // maps a subwindow at its corre
}
}

void Fl_X::do_wait_for_expose()
{ // this will make freshly created windows appear on the screen
[NSApp nextEventMatchingMask:NSAnyEventMask untilDate:nil inMode:NSDefaultRunLoopMode dequeue:NO];
if (fl_mac_os_version >= 101100) { // this extra message seems necessary with 10.11
[NSApp nextEventMatchingMask:NSAnyEventMask untilDate:nil inMode:NSDefaultRunLoopMode dequeue:NO];
void Fl_Window::wait_for_expose()
{
if (shown()) {
// this makes freshly created windows appear on the screen, if they are not there already
NSModalSession session = [NSApp beginModalSessionForWindow:i->xid];
[NSApp runModalSession:session];
[NSApp endModalSession:session];
}
}

Expand Down

0 comments on commit 1e6bc1c

Please sign in to comment.