Fixed build break on FLTK_ABI_VERSION >= 10302 introduce in r9293 as extern ref to fl_copy_offscreen would not be found anymore by linker... This can't be captured yet by the Jenkins continous intergration builds as the compilation is for the FLTK_ABIVERSION >= 10302
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9406 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
16fb1bad6a
commit
e67e798aeb
@ -70,7 +70,7 @@ void Fl_Double_Window::show() {
|
||||
\param srcx,srcy origin in offscreen buffer of rectangle to copy
|
||||
*/
|
||||
#if FLTK_ABI_VERSION >= 10302
|
||||
inline void fl_copy_offscreen(int x, int y, int w, int h, Fl_Offscreen pixmap, int srcx, int srcy) {
|
||||
void fl_copy_offscreen(int x, int y, int w, int h, Fl_Offscreen pixmap, int srcx, int srcy) {
|
||||
fl_graphics_driver->copy_offscreen(x, y, w, h, pixmap, srcx, srcy);
|
||||
}
|
||||
#else
|
||||
|
||||
@ -564,10 +564,28 @@ static void do_timer(CFRunLoopTimerRef timer, void* data)
|
||||
{
|
||||
containsGLsubwindow = contains;
|
||||
}
|
||||
|
||||
- (BOOL)canBecomeKeyWindow
|
||||
{
|
||||
if (Fl::modal_ && (Fl::modal_ != w))
|
||||
return NO; // prevent the caption to be redrawn as active on click
|
||||
// when another modal window is currently the key win
|
||||
|
||||
return !(w->tooltip_window() || w->menu_window());
|
||||
}
|
||||
|
||||
#if 0
|
||||
|
||||
- (BOOL)canBecomeMainWindow
|
||||
{
|
||||
if (Fl::modal_ && (Fl::modal_ != w))
|
||||
return NO; // prevent the caption to be redrawn as active on click
|
||||
// when another modal window is currently the key win
|
||||
|
||||
return !(w->tooltip_window() || w->menu_window());
|
||||
}
|
||||
#endif
|
||||
|
||||
@end
|
||||
|
||||
@interface FLApplication : NSObject
|
||||
@ -2107,6 +2125,9 @@ void Fl_X::make(Fl_Window* w)
|
||||
if ( w->border() || (!w->modal() && !w->tooltip_window()) ) {
|
||||
Fl_Tooltip::enter(0);
|
||||
}
|
||||
|
||||
if (w->modal()) Fl::modal_ = w;
|
||||
|
||||
w->set_visible();
|
||||
if ( w->border() || (!w->modal() && !w->tooltip_window()) ) Fl::handle(FL_FOCUS, w);
|
||||
Fl::first_window(w);
|
||||
@ -2129,7 +2150,7 @@ void Fl_X::make(Fl_Window* w)
|
||||
w->handle(Fl::e_number = FL_SHOW);
|
||||
Fl::e_number = old_event;
|
||||
|
||||
if (w->modal()) { Fl::modal_ = w; fl_fix_focus(); }
|
||||
// if (w->modal()) { Fl::modal_ = w; fl_fix_focus(); }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user