FLTK 1.3.2
win32.H
1 //
2 // "$Id: win32.H 9278 2012-03-12 11:55:50Z manolo $"
3 //
4 // WIN32 header file for the Fast Light Tool Kit (FLTK).
5 //
6 // Copyright 1998-2012 by Bill Spitzak and others.
7 //
8 // This library is free software. Distribution and use rights are outlined in
9 // the file "COPYING" which should have been included with this file. If this
10 // file is missing or damaged, see the license at:
11 //
12 // http://www.fltk.org/COPYING.php
13 //
14 // Please report all bugs and problems on the following page:
15 //
16 // http://www.fltk.org/str.php
17 //
18 
19 // Do not directly include this file, instead use <FL/x.H>. It will
20 // include this file if WIN32 is defined. This is to encourage
21 // portability of even the system-specific code...
22 
23 #ifndef FL_DOXYGEN
24 #ifndef Fl_X_H
25 # error "Never use <FL/win32.H> directly; include <FL/x.H> instead."
26 #endif // !Fl_X_H
27 
28 #include <windows.h>
29 typedef HRGN Fl_Region;
30 typedef HWND Window;
31 typedef POINT XPoint;
32 
33 #include <FL/Fl_Window.H>
34 
35 // this part is included only when compiling the FLTK library or if requested explicitly
36 #if defined(FL_LIBRARY) || defined(FL_INTERNALS)
37 
38 // In some of the distributions, the gcc header files are missing some stuff:
39 #ifndef LPMINMAXINFO
40 #define LPMINMAXINFO MINMAXINFO*
41 #endif
42 #ifndef VK_LWIN
43 #define VK_LWIN 0x5B
44 #define VK_RWIN 0x5C
45 #define VK_APPS 0x5D
46 #endif
47 
48 // some random X equivalents
49 struct XRectangle {int x, y, width, height;};
50 extern Fl_Region XRectangleRegion(int x, int y, int w, int h);
51 inline void XDestroyRegion(Fl_Region r) {DeleteObject(r);}
52 inline void XClipBox(Fl_Region r,XRectangle* rect) {
53  RECT win_rect; GetRgnBox(r,&win_rect);
54  rect->x=win_rect.left;
55  rect->y=win_rect.top;
56  rect->width=win_rect.right-win_rect.left;
57  rect->height=win_rect.bottom-win_rect.top;
58 }
59 #define XDestroyWindow(a,b) DestroyWindow(b)
60 #define XMapWindow(a,b) ShowWindow(b, SW_RESTORE)
61 #define XUnmapWindow(a,b) ShowWindow(b, SW_HIDE)
62 
63 // this object contains all win32-specific stuff about a window:
64 // Warning: this object is highly subject to change!
65 class FL_EXPORT Fl_X {
66 public:
67  // member variables - add new variables only at the end of this block
68  Window xid;
69  HBITMAP other_xid; // for double-buffered windows
70  Fl_Window* w;
71  Fl_Region region;
72  Fl_X *next;
73  int wait_for_expose;
74  HDC private_dc; // used for OpenGL
75  HCURSOR cursor;
76  HDC saved_hdc; // saves the handle of the DC currently loaded
77  // static variables, static functions and member functions
78  static Fl_X* first;
79  static Fl_X* i(const Fl_Window* w) {return w->i;}
80  static int fake_X_wm(const Fl_Window* w,int &X, int &Y,
81  int &bt,int &bx,int &by);
82  void setwindow(Fl_Window* wi) {w=wi; wi->i=this;}
83  void flush() {w->flush();}
84  void set_minmax(LPMINMAXINFO minmax);
85  void mapraise();
86  static Fl_X* make(Fl_Window*);
87 };
88 extern FL_EXPORT HCURSOR fl_default_cursor;
89 extern FL_EXPORT UINT fl_wake_msg;
90 extern FL_EXPORT char fl_override_redirect; // hack into Fl_Window::make_xid()
91 extern FL_EXPORT int fl_background_pixel; // hack into Fl_Window::make_xid()
92 extern FL_EXPORT HPALETTE fl_palette; // non-zero only on 8-bit displays!
93 extern FL_EXPORT void fl_release_dc(HWND w, HDC dc);
94 extern FL_EXPORT void fl_save_dc( HWND w, HDC dc);
95 
96 inline Window fl_xid(const Fl_Window* w) { Fl_X *temp = Fl_X::i(w); return temp ? temp->xid : 0; }
97 
98 #else
99 FL_EXPORT Window fl_xid_(const Fl_Window* w);
100 #define fl_xid(w) fl_xid_(w)
101 #endif // FL_LIBRARY || FL_INTERNALS
102 
103 FL_EXPORT Fl_Window* fl_find(Window xid);
104 void fl_clip_region(Fl_Region);
105 
106 // most recent fl_color() or fl_rgbcolor() points at one of these:
107 extern FL_EXPORT struct Fl_XMap {
108  COLORREF rgb; // this should be the type the RGB() macro returns
109  HPEN pen; // pen, 0 if none created yet
110  int brush; // ref to solid brush, 0 if none created yet
111 } *fl_current_xmap;
112 inline COLORREF fl_RGB() {return fl_current_xmap->rgb;}
113 inline HPEN fl_pen() {return fl_current_xmap->pen;}
114 FL_EXPORT HBRUSH fl_brush(); // allocates a brush if necessary
115 FL_EXPORT HBRUSH fl_brush_action(int); // now does the real work
116 
117 extern FL_EXPORT HINSTANCE fl_display;
118 extern FL_EXPORT Window fl_window;
119 extern FL_EXPORT HDC fl_gc;
120 extern FL_EXPORT MSG fl_msg;
121 extern FL_EXPORT HDC fl_GetDC(Window);
122 extern FL_EXPORT HDC fl_makeDC(HBITMAP);
123 
124 // off-screen pixmaps: create, destroy, draw into, copy to window
125 typedef HBITMAP Fl_Offscreen;
126 #define fl_create_offscreen(w, h) \
127  CreateCompatibleBitmap( (fl_gc ? fl_gc : fl_GetDC(0) ) , w, h)
128 
129 # define fl_begin_offscreen(b) \
130  HDC _sgc=fl_gc; Window _sw=fl_window; \
131  Fl_Surface_Device *_ss = Fl_Surface_Device::surface(); Fl_Display_Device::display_device()->set_current(); \
132  fl_gc=fl_makeDC(b); int _savedc = SaveDC(fl_gc); fl_window=(HWND)b; fl_push_no_clip()
133 
134 # define fl_end_offscreen() \
135  fl_pop_clip(); RestoreDC(fl_gc, _savedc); DeleteDC(fl_gc); _ss->set_current(); fl_window=_sw; fl_gc = _sgc
136 
137 
138 FL_EXPORT void fl_copy_offscreen(int x,int y,int w,int h,HBITMAP pixmap,int srcx,int srcy);
139 #define fl_delete_offscreen(bitmap) DeleteObject(bitmap)
140 
141 // Bitmap masks
142 typedef HBITMAP Fl_Bitmask;
143 
144 extern FL_EXPORT Fl_Bitmask fl_create_bitmask(int w, int h, const uchar *data);
145 extern FL_EXPORT Fl_Bitmask fl_create_alphamask(int w, int h, int d, int ld, const uchar *data);
146 extern FL_EXPORT void fl_delete_bitmask(Fl_Bitmask bm);
147 
148 // Dummy function to register a function for opening files via the window manager...
149 inline void fl_open_callback(void (*)(const char *)) {}
150 
151 extern FL_EXPORT int fl_parse_color(const char* p, uchar& r, uchar& g, uchar& b);
152 #endif // FL_DOXYGEN
153 //
154 // End of "$Id: win32.H 9278 2012-03-12 11:55:50Z manolo $".
155 //