25#  error "Never use <FL/mac.H> directly; include <FL/x.H> instead." 
   30typedef FLWindow *Window;
 
   32typedef class FLWindow *Window; 
 
   35#if !(defined(FL_LIBRARY) || defined(FL_INTERNALS))  
   38typedef struct flCocoaRegion* Fl_Region;
 
   39typedef struct CGContext* CGContextRef;
 
   40typedef struct OpaquePMPrintSettings*   PMPrintSettings;
 
   41typedef struct OpaquePMPageFormat*      PMPageFormat;
 
   42typedef struct OpaquePMPrintSession*    PMPrintSession;
 
   43typedef struct CGImage* CGImageRef;
 
   44typedef struct __CFData* CFMutableDataRef; 
 
   45typedef CGContextRef Fl_Offscreen;
 
   50#include <ApplicationServices/ApplicationServices.h> 
   53#ifndef MAC_OS_X_VERSION_10_4 
   54#define MAC_OS_X_VERSION_10_4 1040 
   56#ifndef MAC_OS_X_VERSION_10_5 
   57#define MAC_OS_X_VERSION_10_5 1050 
   59#ifndef MAC_OS_X_VERSION_10_6 
   60#define MAC_OS_X_VERSION_10_6 1060 
   62#ifndef MAC_OS_X_VERSION_10_7 
   63#define MAC_OS_X_VERSION_10_7 1070 
   65#ifndef MAC_OS_X_VERSION_10_8 
   66#define MAC_OS_X_VERSION_10_8 1080 
   68#ifndef MAC_OS_X_VERSION_10_9 
   69#define MAC_OS_X_VERSION_10_9 1090 
   71#ifndef MAC_OS_X_VERSION_10_10 
   72#define MAC_OS_X_VERSION_10_10 101000 
   74#ifndef MAC_OS_X_VERSION_10_11 
   75#define MAC_OS_X_VERSION_10_11 101100 
   77#ifndef MAC_OS_X_VERSION_10_12 
   78#define MAC_OS_X_VERSION_10_12 101200 
   80#ifndef MAC_OS_X_VERSION_10_13 
   81#define MAC_OS_X_VERSION_10_13 101300 
   83#ifndef MAC_OS_X_VERSION_10_14 
   84#define MAC_OS_X_VERSION_10_14 101400 
   86#ifndef MAC_OS_X_VERSION_10_15 
   87#define MAC_OS_X_VERSION_10_15 101500 
   89#ifndef MAC_OS_X_VERSION_10_16 
   90#define MAC_OS_X_VERSION_10_16 101600 
   92#ifndef MAC_OS_VERSION_11_0 
   93#define MAC_OS_VERSION_11_0 110000 
   95#ifndef MAC_OS_VERSION_12_0 
   96#define MAC_OS_VERSION_12_0 120000 
   98#ifndef MAC_OS_VERSION_13_0 
   99#define MAC_OS_VERSION_13_0 130000 
  101#ifndef MAC_OS_VERSION_14_0 
  102#define MAC_OS_VERSION_14_0 140000 
  105#ifndef NSINTEGER_DEFINED  
  106#if defined(__LP64__) && __LP64__ 
  107typedef long NSInteger;
 
  108typedef unsigned long NSUInteger;
 
  110typedef int NSInteger;
 
  111typedef unsigned int NSUInteger;
 
  117@class NSOpenGLPixelFormat;
 
  118@class NSOpenGLContext;
 
  121class NSOpenGLPixelFormat;
 
  122class NSOpenGLContext;
 
  125typedef CGContextRef Fl_Offscreen;
 
  126#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_4 
  127typedef CGImageAlphaInfo CGBitmapInfo;
 
  130typedef struct flCocoaRegion {
 
  136#  include "../src/Fl_Font.H" 
  139struct XPoint { 
int x, y; };
 
  140struct XRectangle {
int x, y, width, height;};
 
  141#ifndef CGFLOAT_DEFINED  
  142#if defined(__LP64__) && __LP64__ 
  143typedef double CGFloat;
 
  145typedef float CGFloat;
 
  149extern CGRect fl_cgrectmake_cocoa(
int x, 
int y, 
int w, 
int h);
 
  150inline Fl_Region XRectangleRegion(
int x, 
int y, 
int w, 
int h) {
 
  151  Fl_Region R = (Fl_Region)malloc(
sizeof(*R));
 
  153  R->rects = (CGRect *)malloc(
sizeof(CGRect));
 
  154  *(R->rects) = fl_cgrectmake_cocoa(x, y, w, h);
 
  157inline void XDestroyRegion(Fl_Region r) {
 
  163extern NSCursor *fl_default_cursor;
 
  171  Fl_Offscreen other_xid;  
 
  174#if FLTK_ABI_VERSION < 10304 
  178#if FLTK_ABI_VERSION < 10304 
  185  static Fl_X* i(
const Fl_Window* w) {
return w->i;}
 
  186  static int fake_X_wm(
const Fl_Window*,
int&,
int&,
int&,
int&,
int&,
int,
int,
int,
int);
 
  187  static void make(Fl_Window*);
 
  189  static void set_high_resolution(
bool);
 
  190#if FLTK_ABI_VERSION >= 10304 
  191  CGRect* subRect() { 
return subRect_; } 
 
  192  void subRect(CGRect *r) { subRect_ = r; } 
 
  194  CGRect* subRect() { 
return (CGRect*)subRegion; } 
 
  195  void subRect(CGRect *r) { subRegion = (Fl_Region)r; } 
 
  197  bool mapped_to_retina();      
 
  198  void mapped_to_retina(
bool);  
 
  199  bool changed_resolution();      
 
  200  void changed_resolution(
bool);
 
  201  bool in_windowDidResize();      
 
  202  void in_windowDidResize(
bool);  
 
  205  static void q_fill_context();    
 
  206  static void q_clear_clipping();  
 
  207  static void q_release_context(Fl_X *x=0); 
 
  208  static void q_begin_image(CGRect&, 
int x, 
int y, 
int w, 
int h);
 
  209  static void q_end_image();
 
  211  static NSOpenGLPixelFormat *mode_to_NSOpenGLPixelFormat(
int mode, 
const int*); 
 
  212  static NSOpenGLContext* create_GLcontext_for_window(NSOpenGLPixelFormat *pixelformat, NSOpenGLContext *shared_ctx, Fl_Window *window);
 
  213  static void GLcontext_update(NSOpenGLContext*);
 
  214  static void GLcontext_flushbuffer(NSOpenGLContext*);
 
  215  static void GLcontext_release(NSOpenGLContext*);
 
  216  static void GLcontext_makecurrent(NSOpenGLContext*);
 
  217  static NSOpenGLContext* GLcontext_getcurrent();
 
  218  static void GL_cleardrawable(
void);
 
  219  static void gl_start(NSOpenGLContext*);
 
  224  WindowRef window_ref(
void); 
 
  225  void set_key_window(
void);
 
  227  static void set_default_icons(
const Fl_RGB_Image*[], 
int) {};
 
  230  int set_cursor(
const Fl_RGB_Image*, 
int, 
int);
 
  231  static CGImageRef CGImage_from_window_rect(Fl_Window *win, 
int x, 
int y, 
int w, 
int h);
 
  232  static unsigned char *bitmap_from_window_rect(Fl_Window *win, 
int x, 
int y, 
int w, 
int h, 
int *bytesPerPixel);
 
  233  static Fl_Region intersect_region_and_rect(Fl_Region current, 
int x,
int y,
int w, 
int h);
 
  234  static void *get_carbon_function(
const char *name);
 
  235  static void screen_work_area(
int &X, 
int &Y, 
int &W, 
int &H, 
int n); 
 
  236  static int next_marked_length; 
 
  237  static int insertion_point_location(
int *px, 
int *py, 
int *pheight); 
 
  238  static const int CoreText_threshold;  
 
  239  static Fl_Fontdesc* calc_fl_fonts(
void); 
 
  240  static int dnd(
int use_selection); 
 
  241  static int calc_mac_os_version(
void); 
 
  242  static void clip_to_rounded_corners(CGContextRef gc, 
int w, 
int h);
 
  243  static void *get_titlebar_layer(Fl_Window *win);
 
  244  static void draw_layer_to_context(
void *layer, CGContextRef ctxt, 
int w, 
int h);
 
  246#if FLTK_ABI_VERSION >= 10304 
  250  unsigned mapped_to_retina_;
 
  256extern Window fl_window;
 
  260typedef CGImageRef Fl_Bitmask;
 
  262extern CGContextRef fl_gc;
 
  268extern Fl_Bitmask fl_create_bitmask(
int w, 
int h, 
const uchar *data);
 
  269extern Fl_Bitmask fl_create_alphamask(
int w, 
int h, 
int d, 
int ld, 
const uchar *data);
 
  270extern void fl_delete_bitmask(Fl_Bitmask bm);
 
  272extern void fl_copy_offscreen(
int x,
int y,
int w,
int h, Fl_Offscreen gWorld, 
int srcx,
int srcy);
 
  278extern void fl_open_display();
 
Fl_Cursor
The following constants define the mouse cursors that are available in FLTK.
Definition Enumerations.H:1055
This widget produces an actual window.
Definition Fl_Window.H:57
unsigned char uchar
unsigned char
Definition fl_types.h:30
FL_EXPORT void gl_start()
Creates an OpenGL context.
Definition gl_start.cxx:56
void fl_begin_offscreen(Fl_Offscreen ctx)
Send all subsequent drawing commands to this offscreen buffer.
Definition Fl_Double_Window.cxx:345
Fl_Offscreen fl_create_offscreen(int w, int h)
Creation of an offscreen graphics buffer.
Definition Fl_Double_Window.cxx:287
Fl_Region fl_clip_region()
Returns the current clipping region.
Definition fl_draw.H:140
void fl_delete_offscreen(Fl_Offscreen ctx)
Deletion of an offscreen graphics buffer.
Definition Fl_Double_Window.cxx:328
void fl_copy_offscreen(int x, int y, int w, int h, Fl_Offscreen pixmap, int srcx, int srcy)
Copy a rectangular area of the given offscreen buffer into the current drawing destination.
Definition Fl_Double_Window.cxx:94
void fl_end_offscreen()
Quit sending drawing commands to the current offscreen buffer.
Definition Fl_Double_Window.cxx:363
void fl_open_callback(void(*cb)(const char *))
Register a function called for each file dropped onto an application icon.
int fl_mac_os_version
The version number of the running Mac OS X (e.g., 100604 for 10.6.4)
void fl_mac_set_about(Fl_Callback *cb, void *user_data, int shortcut=0)
Attaches a callback to the "About myprog" item of the system application menu.
Definition Fl_Sys_Menu_Bar.mm:208
int fl_mac_quit_early
Determines whether cmd-Q or the "Quit xxx" item of application menu terminates the app or only the ev...
class Fl_Sys_Menu_Bar * fl_sys_menu_bar
The system menu bar.
Definition Fl_Sys_Menu_Bar.mm:50