|
- //
- // "$Id: Fl_Cairo.cxx 8198 2011-01-06 10:24:58Z manolo $"
- //
- // Main header file for the Fast Light Tool Kit (FLTK).
- //
- // Copyright 1998-2010 by Bill Spitzak and others.
- //
- // This library is free software; you can redistribute it and/or
- // modify it under the terms of the GNU Library General Public
- // License as published by the Free Software Foundation; either
- // version 2 of the License, or (at your option) any later version.
- //
- // This library is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- // Library General Public License for more details.
- //
- // You should have received a copy of the GNU Library General Public
- // License along with this library; if not, write to the Free Software
- // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
- // USA.
- //
- // Please report all bugs and problems on the following page:
- //
- // http://www.fltk.org/str.php
- //
-
- #include <config.h>
-
- #include <FL/Fl.H>
- #include <FL/x.H>
- #include <FL/Fl_Window.H>
- #ifdef __APPLE__
- #include <Carbon/Carbon.h>
- #endif
-
- /*
- Creates transparently a cairo_surface_t object.
- gc is an HDC context in WIN32, a CGContext* in Quartz, a display on X11
- */
- cairo_surface_t * cairo_create_surface(void * gc, Window w, int W, int H) {
- # if defined(USE_X11)
- return cairo_xlib_surface_create(fl_display, w, fl_visual->visual, W, H);
- # elif defined(WIN32)
- return cairo_win32_surface_create((HDC) gc);
- # elif defined(__APPLE_QUARTZ__)
- return cairo_quartz_surface_create_for_cg_context((CGContext*) gc, W, H);
- # else
- # error Cairo is not supported under this platform.
- # endif
- }
-
- cairo_t *fl_cairo_context;
-
- cairo_surface_t *
- Fl::cairo_create_surface ( Window xid, int W, int H )
- {
- return ::cairo_create_surface( fl_gc, xid, W, H );
- }
-
- cairo_t *
- Fl::cairo_make_current( cairo_t *cc )
- {
- fl_cairo_context = cc;
-
- return cc;
- }
-
- //
- // End of "$Id: Fl_Cairo.cxx 8198 2011-01-06 10:24:58Z manolo $" .
- //
|