From a8530c73fa2e7a53f0fcef9f391ce3ea6cbd6c4a Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Thu, 23 Dec 2010 14:24:29 +0000 Subject: Adopted use of FL_LIBRARY #define symbol under Mac OS X. This allows to compile client applications without including Mac OS system headers, with a gain in speed of compilation and portability. The source files of all FLTK libraries must now be compiled with -DFL_LIBRARY under Mac OS X. Make, CMake and Xcode project support files have been modified accordingly. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8113 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_cocoa.mm | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/Fl_cocoa.mm') diff --git a/src/Fl_cocoa.mm b/src/Fl_cocoa.mm index cd191a5a0..2ad315037 100644 --- a/src/Fl_cocoa.mm +++ b/src/Fl_cocoa.mm @@ -3266,6 +3266,11 @@ CGRect fl_cgrectmake_cocoa(int x, int y, int w, int h) { return CGRectMake(x, y, w > 0 ? w - 0.9 : 0, h > 0 ? h - 0.9 : 0); } +Window fl_xid(const Fl_Window* w) +{ + return Fl_X::i(w)->xid; +} + #endif // __APPLE__ // -- cgit v1.2.3