Author: manolo
Date: 2010-07-01 06:21:32 -0700 (Thu, 01 Jul 2010)
New Revision: 7659
Log:
Renamed global variable from fl_device to fl_graphics_driver to better express 
its class

Modified:
   branches/branch-1.3/FL/Fl_Device.H
   branches/branch-1.3/FL/fl_draw.H
   branches/branch-1.3/src/Fl_Bitmap.cxx
   branches/branch-1.3/src/Fl_Device.cxx
   branches/branch-1.3/src/Fl_GDI_Printer.cxx
   branches/branch-1.3/src/Fl_Image.cxx
   branches/branch-1.3/src/Fl_Pixmap.cxx
   branches/branch-1.3/src/Fl_Quartz_Printer.mm
   branches/branch-1.3/src/Fl_cocoa.mm
   branches/branch-1.3/src/Fl_win32.cxx
   branches/branch-1.3/src/Fl_x.cxx
   branches/branch-1.3/src/fl_draw_pixmap.cxx
   branches/branch-1.3/src/fl_font_mac.cxx

Modified: branches/branch-1.3/FL/Fl_Device.H
===================================================================
--- branches/branch-1.3/FL/Fl_Device.H  2010-06-29 21:30:45 UTC (rev 7658)
+++ branches/branch-1.3/FL/Fl_Device.H  2010-07-01 13:21:32 UTC (rev 7659)
@@ -49,7 +49,7 @@
 class Fl_Display_Device;
 class Fl_Surface_Device;
 /** \brief Points to the driver that currently receives all graphics requests 
*/
-extern Fl_Graphics_Driver *fl_device;
+extern Fl_Graphics_Driver *fl_graphics_driver;
 /** \brief Points to the surface that currently receives all graphics requests 
*/
 extern Fl_Surface_Device *fl_surface;
 /** \brief Points to the platform's display */
@@ -97,9 +97,10 @@
  <br> The preferred FLTK API for drawing operations is the function collection 
of the 
  \ref fl_drawings and \ref fl_attributes modules. 
  <br> Alternatively, methods of the Fl_Graphics_Driver class can be called
- using the global variable Fl_Graphics_Driver * \ref fl_device that points at 
all time to the single driver 
- (an instance of an Fl_Graphics_Driver subclass) that's currently receiving 
graphics requests:
- \code fl_device->rect(x, y, w, h); \endcode
+ using the global variable Fl_Graphics_Driver * \ref fl_graphics_driver that 
points at all time to 
+ the single driver (an instance of an Fl_Graphics_Driver subclass) that's 
currently receiving graphics 
+ requests. For example:
+ \code fl_graphics_driver->rect(x, y, w, h); \endcode
  <br>Each protected method of the Fl_Graphics_Driver class has the same effect 
as the
  function of the \ref fl_drawings and \ref fl_attributes modules which bears 
the same name
  prefixed with fl_ and has the same parameter list.

Modified: branches/branch-1.3/FL/fl_draw.H
===================================================================
--- branches/branch-1.3/FL/fl_draw.H    2010-06-29 21:30:45 UTC (rev 7658)
+++ branches/branch-1.3/FL/fl_draw.H    2010-07-01 13:21:32 UTC (rev 7659)
@@ -57,7 +57,7 @@
  the foreground is not set for the current window.
  \param[in] c color 
  */
-inline void    fl_color(Fl_Color c) {fl_device->color(c); }; // select indexed 
color
+inline void    fl_color(Fl_Color c) {fl_graphics_driver->color(c); }; // 
select indexed color
 /** for back compatibility - use fl_color(Fl_Color c) instead */
 inline void fl_color(int c) {fl_color((Fl_Color)c);}
 /**
@@ -70,7 +70,7 @@
  the foreground is not set for the current window.
  \param[in] r,g,b color components
  */
-inline void    fl_color(uchar r, uchar g, uchar b) {fl_device->color(r,g,b); 
}; // select actual color
+inline void    fl_color(uchar r, uchar g, uchar b) 
{fl_graphics_driver->color(r,g,b); }; // select actual color
 /** \brief The current color */
 extern FL_EXPORT Fl_Color fl_color_;
 /**
@@ -89,13 +89,13 @@
  new region onto the stack.
  \param[in] x,y,w,h position and size
  */
-inline void fl_push_clip(int x, int y, int w, int h) 
{fl_device->push_clip(x,y,w,h); };
+inline void fl_push_clip(int x, int y, int w, int h) 
{fl_graphics_driver->push_clip(x,y,w,h); };
 /** The fl_clip() name is deprecated and will be removed from future releases 
*/
 #define fl_clip fl_push_clip
 /**
  Pushes an empty clip region onto the stack so nothing will be clipped.
  */
-inline void fl_push_no_clip() {fl_device->push_no_clip(); };
+inline void fl_push_no_clip() {fl_graphics_driver->push_no_clip(); };
 /**
  Restores the previous clip region.
  
@@ -103,7 +103,7 @@
  Unpredictable results may occur if the clip stack is not empty when
  you return to FLTK.
  */
-inline void fl_pop_clip() {fl_device->pop_clip(); };
+inline void fl_pop_clip() {fl_graphics_driver->pop_clip(); };
 /**
  Does the rectangle intersect the current clip region?
  \param[in] x,y,w,h position and size of rectangle
@@ -114,7 +114,7 @@
  Under X this returns 2 if the rectangle is partially clipped, 
  and 1 if it is entirely inside the clip region.
  */
-inline int fl_not_clipped(int x, int y, int w, int h) {return 
fl_device->not_clipped(x,y,w,h); };
+inline int fl_not_clipped(int x, int y, int w, int h) {return 
fl_graphics_driver->not_clipped(x,y,w,h); };
 /**
  Intersects the rectangle with the current clip region and returns the
  bounding box of the result.
@@ -130,7 +130,7 @@
  \returns Non-zero if the resulting rectangle is different to the original.
  */
 inline int fl_clip_box(int x , int y, int w, int h, int& X, int& Y, int& W, 
int& H) 
-  {return fl_device->clip_box(x,y,w,h,X,Y,W,H); };
+  {return fl_graphics_driver->clip_box(x,y,w,h,X,Y,W,H); };
 /** Undoes any clobbering of clip done by your program */
 extern void fl_restore_clip();
 /**
@@ -150,7 +150,7 @@
 /**
  Draws a single pixel at the given coordinates
  */
-inline void fl_point(int x, int y) { fl_device->point(x,y); };
+inline void fl_point(int x, int y) { fl_graphics_driver->point(x,y); };
 
 // line type:
 /**
@@ -180,7 +180,7 @@
  \note      The \p dashes array does not work under Windows 95, 98 or Me,
  since those operating systems do not support complex line styles.
  */
-inline void fl_line_style(int style, int width=0, char* dashes=0) 
{fl_device->line_style(style,width,dashes); };
+inline void fl_line_style(int style, int width=0, char* dashes=0) 
{fl_graphics_driver->line_style(style,width,dashes); };
 enum {
   FL_SOLID     = 0,            ///< line style: <tt>___________</tt>
   FL_DASH      = 1,            ///< line style: <tt>_ _ _ _ _ _</tt>
@@ -204,12 +204,12 @@
  This function is meant for quick drawing of simple boxes. The behavior is 
  undefined for line widths that are not 1.
  */
-inline void fl_rect(int x, int y, int w, int h) { fl_device->rect(x,y,w,h); };
+inline void fl_rect(int x, int y, int w, int h) { 
fl_graphics_driver->rect(x,y,w,h); };
 
 /** Draws with passed color a 1-pixel border \e inside the given bounding box 
*/
 inline void fl_rect(int x, int y, int w, int h, Fl_Color c) {fl_color(c); 
fl_rect(x,y,w,h);}
 /** Colors with current color a rectangle that exactly fills the given 
bounding box */
-inline void fl_rectf(int x, int y, int w, int h) { fl_device->rectf(x,y,w,h); 
};
+inline void fl_rectf(int x, int y, int w, int h) { 
fl_graphics_driver->rectf(x,y,w,h); };
 /** Colors with passsed color a rectangle that exactly fills the given 
bounding box */
 inline void fl_rectf(int x, int y, int w, int h, Fl_Color c) {fl_color(c); 
fl_rectf(x,y,w,h);}
 
@@ -226,63 +226,63 @@
 /**
  Draws a line from (x,y) to (x1,y1)
  */
-inline void fl_line(int x, int y, int x1, int y1) {fl_device->line(x,y,x1,y1); 
};
+inline void fl_line(int x, int y, int x1, int y1) 
{fl_graphics_driver->line(x,y,x1,y1); };
 /**
  Draws a line from (x,y) to (x1,y1) and another from (x1,y1) to (x2,y2)
  */
-inline void fl_line(int x, int y, int x1, int y1, int x2, int y2) 
{fl_device->line(x,y,x1,y1,x2,y2); };
+inline void fl_line(int x, int y, int x1, int y1, int x2, int y2) 
{fl_graphics_driver->line(x,y,x1,y1,x2,y2); };
 
 // closed line segments:
 /**
  Outlines a 3-sided polygon with lines
  */
-inline void fl_loop(int x, int y, int x1, int y1, int x2, int y2) 
{fl_device->loop(x,y,x1,y1,x2,y2); };
+inline void fl_loop(int x, int y, int x1, int y1, int x2, int y2) 
{fl_graphics_driver->loop(x,y,x1,y1,x2,y2); };
 /**
  Outlines a 4-sided polygon with lines
  */
 inline void fl_loop(int x, int y, int x1, int y1, int x2, int y2, int x3, int 
y3) 
-  {fl_device->loop(x,y,x1,y1,x2,y2,x3,y3); };
+  {fl_graphics_driver->loop(x,y,x1,y1,x2,y2,x3,y3); };
 
 // filled polygons
 /**
  Fills a 3-sided polygon. The polygon must be convex.
  */
-inline void fl_polygon(int x, int y, int x1, int y1, int x2, int y2) 
{fl_device->polygon(x,y,x1,y1,x2,y2); };
+inline void fl_polygon(int x, int y, int x1, int y1, int x2, int y2) 
{fl_graphics_driver->polygon(x,y,x1,y1,x2,y2); };
 /**
  Fills a 4-sided polygon. The polygon must be convex.
  */
 inline void fl_polygon(int x, int y, int x1, int y1, int x2, int y2, int x3, 
int y3) 
-  { fl_device->polygon(x,y,x1,y1,x2,y2,x3,y3); };
+  { fl_graphics_driver->polygon(x,y,x1,y1,x2,y2,x3,y3); };
 
 // draw rectilinear lines, horizontal segment first:
 /**
  Draws a horizontal line from (x,y) to (x1,y)
  */
-inline void fl_xyline(int x, int y, int x1) {fl_device->xyline(x,y,x1);};
+inline void fl_xyline(int x, int y, int x1) 
{fl_graphics_driver->xyline(x,y,x1);};
 /**
  Draws a horizontal line from (x,y) to (x1,y), then vertical from (x1,y) to 
(x1,y2)
  */
-inline void fl_xyline(int x, int y, int x1, int y2) 
{fl_device->xyline(x,y,x1,y2);};
+inline void fl_xyline(int x, int y, int x1, int y2) 
{fl_graphics_driver->xyline(x,y,x1,y2);};
 /**
  Draws a horizontal line from (x,y) to (x1,y), then a vertical from (x1,y) to 
(x1,y2)
  and then another horizontal from (x1,y2) to (x3,y2)
  */
-inline void fl_xyline(int x, int y, int x1, int y2, int x3) 
{fl_device->xyline(x,y,x1,y2,x3);};
+inline void fl_xyline(int x, int y, int x1, int y2, int x3) 
{fl_graphics_driver->xyline(x,y,x1,y2,x3);};
 
 // draw rectilinear lines, vertical segment first:
 /**
  Draws a vertical line from (x,y) to (x,y1)
  */
-inline void fl_yxline(int x, int y, int y1) {fl_device->yxline(x,y,y1);};
+inline void fl_yxline(int x, int y, int y1) 
{fl_graphics_driver->yxline(x,y,y1);};
 /**
  Draws a vertical line from (x,y) to (x,y1), then a horizontal from (x,y1) to 
(x2,y1)
  */
-inline void fl_yxline(int x, int y, int y1, int x2) 
{fl_device->yxline(x,y,y1,x2);};
+inline void fl_yxline(int x, int y, int y1, int x2) 
{fl_graphics_driver->yxline(x,y,y1,x2);};
 /**
  Draws a vertical line from (x,y) to (x,y1) then a horizontal from (x,y1)
  to (x2,y1), then another vertical from (x2,y1) to (x2,y3)
  */
-inline void fl_yxline(int x, int y, int y1, int x2, int y3) 
{fl_device->yxline(x,y,y1,x2,y3);};
+inline void fl_yxline(int x, int y, int y1, int x2, int y3) 
{fl_graphics_driver->yxline(x,y,y1,x2,y3);};
 
 // circular lines and pie slices (code in fl_arci.C):
 /**
@@ -307,7 +307,7 @@
  counter-clockwise from 3 o'clock. \p a2 must be greater
  than or equal to \p a1.
  */
-inline void fl_arc(int x, int y, int w, int h, double a1, double a2) 
{fl_device->arc(x,y,w,h,a1,a2); };
+inline void fl_arc(int x, int y, int w, int h, double a1, double a2) 
{fl_graphics_driver->arc(x,y,w,h,a1,a2); };
 /**
  Draw filled ellipse sections using integer coordinates.
  
@@ -320,7 +320,7 @@
  counter-clockwise from 3 o'clock. \p a2 must be greater
  than or equal to \p a1.
  */
-inline void fl_pie(int x, int y, int w, int h, double a1, double a2) 
{fl_device->pie(x,y,w,h,a1,a2); };
+inline void fl_pie(int x, int y, int w, int h, double a1, double a2) 
{fl_graphics_driver->pie(x,y,w,h,a1,a2); };
 /** fl_chord declaration is a place holder - the function does not yet exist */
 FL_EXPORT void fl_chord(int x, int y, int w, int h, double a1, double a2); // 
nyi
 
@@ -335,24 +335,24 @@
 /**
  Starts drawing a list of points. Points are added to the list with fl_vertex()
  */
-inline void fl_begin_points() {fl_device->begin_points(); };
+inline void fl_begin_points() {fl_graphics_driver->begin_points(); };
 /**
  Starts drawing a list of lines.
  */
-inline void fl_begin_line() {fl_device->begin_line(); };
+inline void fl_begin_line() {fl_graphics_driver->begin_line(); };
 /**
  Starts drawing a closed sequence of lines.
  */
-inline void fl_begin_loop() {fl_device->begin_loop(); };
+inline void fl_begin_loop() {fl_graphics_driver->begin_loop(); };
 /**
  Starts drawing a convex filled polygon.
  */
-inline void fl_begin_polygon() {fl_device->begin_polygon(); };
+inline void fl_begin_polygon() {fl_graphics_driver->begin_polygon(); };
 /**
  Adds a single vertex to the current path.
  \param[in] x,y coordinate
  */
-inline void fl_vertex(double x, double y) {fl_device->vertex(x,y); };
+inline void fl_vertex(double x, double y) {fl_graphics_driver->vertex(x,y); };
 /**
  Add a series of points on a Bezier curve to the path.
  The curve ends (and two of the points) are at X0,Y0 and X3,Y3.
@@ -362,7 +362,7 @@
  \param[in] X3,Y3 curve end point
  */
 inline void fl_curve(double X0, double Y0, double X1, double Y1, double X2, 
double Y2, double X3, double Y3)
-  {fl_device->curve(X0,Y0,X1,Y1,X2,Y2,X3,Y3); };
+  {fl_graphics_driver->curve(X0,Y0,X1,Y1,X2,Y2,X3,Y3); };
 /**
  Add a series of points to the current path on the arc of a circle; you
  can get elliptical paths by using scale and rotate before calling fl_arc().
@@ -371,7 +371,7 @@
  counter-clockwise from 3 o'clock. If \p end is less than \p start
  then it draws the arc in a clockwise direction.
  */
-inline void fl_arc(double x, double y, double r, double start, double end) 
{fl_device->arc(x,y,r,start,end); };
+inline void fl_arc(double x, double y, double r, double start, double end) 
{fl_graphics_driver->arc(x,y,r,start,end); };
 /**
  fl_circle() is equivalent to fl_arc(x,y,r,0,360), but may be faster.
  
@@ -379,23 +379,23 @@
  a complex polygon you must use fl_arc()
  \param[in] x,y,r center and radius of circle
  */
-inline void fl_circle(double x, double y, double r) {fl_device->circle(x,y,r); 
};
+inline void fl_circle(double x, double y, double r) 
{fl_graphics_driver->circle(x,y,r); };
 /**
  Ends list of points, and draws.
  */
-inline void fl_end_points() {fl_device->end_points(); };
+inline void fl_end_points() {fl_graphics_driver->end_points(); };
 /**
  Ends list of lines, and draws.
  */
-inline void fl_end_line() {fl_device->end_line(); };
+inline void fl_end_line() {fl_graphics_driver->end_line(); };
 /**
  Ends closed sequence of lines, and draws.
  */
-inline void fl_end_loop() {fl_device->end_loop(); };
+inline void fl_end_loop() {fl_graphics_driver->end_loop(); };
 /**
  Ends convex filled polygon, and draws.
  */
-inline void fl_end_polygon() {fl_device->end_polygon(); };
+inline void fl_end_polygon() {fl_graphics_driver->end_polygon(); };
 /**
  Starts drawing a complex filled polygon.
  
@@ -410,18 +410,18 @@
  whether "even/odd" or "non-zero" winding rules are used to fill them.
  Holes should be drawn in the opposite direction to the outside loop.
  */
-inline void fl_begin_complex_polygon() {fl_device->begin_complex_polygon(); };
+inline void fl_begin_complex_polygon() 
{fl_graphics_driver->begin_complex_polygon(); };
 /**
  Call fl_gap() to separate loops of the path.
  
  It is unnecessary but harmless to call fl_gap() before the first vertex,
  after the last vertex, or several times in a row.
  */
-inline void fl_gap() {fl_device->gap(); };
+inline void fl_gap() {fl_graphics_driver->gap(); };
 /**
  Ends complex filled polygon, and draws.
  */
-inline void fl_end_complex_polygon() {fl_device->end_complex_polygon(); };
+inline void fl_end_complex_polygon() 
{fl_graphics_driver->end_complex_polygon(); };
 // get and use transformed positions:
 FL_EXPORT double fl_transform_x(double x, double y);
 FL_EXPORT double fl_transform_y(double x, double y);
@@ -431,7 +431,7 @@
  Adds coordinate pair to the vertex list without further transformations.
  \param[in] xf,yf transformed coordinate
  */
-inline void fl_transformed_vertex(double xf, double yf) 
{fl_device->transformed_vertex(xf,yf); };
+inline void fl_transformed_vertex(double xf, double yf) 
{fl_graphics_driver->transformed_vertex(xf,yf); };
 /** @} */
 
 /** \addtogroup  fl_attributes
@@ -448,7 +448,7 @@
   The size of the font is measured in pixels and not "points".
   Lines should be spaced \p size pixels apart or more.
 */
-inline void fl_font(Fl_Font face, Fl_Fontsize size) { 
fl_device->font(face,size); };
+inline void fl_font(Fl_Font face, Fl_Fontsize size) { 
fl_graphics_driver->font(face,size); };
 extern FL_EXPORT Fl_Font fl_font_; ///< current font index
 
 /**
@@ -554,16 +554,16 @@
 /**
   Draws an array of \p n characters starting at the given location.
 */
-inline void fl_draw(const char* str, int n, int x, int y) 
{fl_device->draw(str,n,x,y); };
+inline void fl_draw(const char* str, int n, int x, int y) 
{fl_graphics_driver->draw(str,n,x,y); };
 /**
   Draws an array of \p n characters starting at the given location,
   rotating \p angle degrees counterclockwise.
 */
-inline void fl_draw(int angle,const char* str, int n, int x, int y) 
{fl_device->draw(angle,str,n,x,y); };
+inline void fl_draw(int angle,const char* str, int n, int x, int y) 
{fl_graphics_driver->draw(angle,str,n,x,y); };
 /**
   Draws an array of \p n characters right to left starting at given location.
 */
-inline void fl_rtl_draw(const char* str, int n, int x, int y) 
{fl_device->rtl_draw(str,n,x,y); };
+inline void fl_rtl_draw(const char* str, int n, int x, int y) 
{fl_graphics_driver->rtl_draw(str,n,x,y); };
 FL_EXPORT void fl_measure(const char* str, int& x, int& y,
                           int draw_symbols = 1);
 FL_EXPORT void fl_draw(const char* str, int x, int y, int w, int h,
@@ -615,14 +615,14 @@
   to 32 bits.
   */
 inline void fl_draw_image(const uchar* buf, int X,int Y,int W,int H, int D=3, 
int L=0)
-  { fl_device->draw_image(buf, X, Y, W, H, D, L); };
+  { fl_graphics_driver->draw_image(buf, X, Y, W, H, D, L); };
 
 /**
   Draw a gray-scale (1 channel) image.
   \see fl_draw_image(const uchar* buf, int X,int Y,int W,int H, int D, int L)
   */
 inline void fl_draw_image_mono(const uchar* buf, int X,int Y,int W,int H, int 
D=1, int L=0)
-  { fl_device->draw_image_mono(buf, X, Y, W, H, D, L); };
+  { fl_graphics_driver->draw_image_mono(buf, X, Y, W, H, D, L); };
 
 /**
   Draw image using callback function to generate image data.
@@ -657,7 +657,7 @@
   If \p D is 4 or more, you must fill in the unused bytes with zero.
   */
 inline void fl_draw_image(Fl_Draw_Image_Cb cb, void* data, int X,int Y,int 
W,int H, int D=3)
-  { fl_device->draw_image(cb, data, X, Y, W, H, D); };
+  { fl_graphics_driver->draw_image(cb, data, X, Y, W, H, D); };
 
 /**
   Draw gray-scale image using callback function to generate image data.

Modified: branches/branch-1.3/src/Fl_Bitmap.cxx
===================================================================
--- branches/branch-1.3/src/Fl_Bitmap.cxx       2010-06-29 21:30:45 UTC (rev 
7658)
+++ branches/branch-1.3/src/Fl_Bitmap.cxx       2010-07-01 13:21:32 UTC (rev 
7659)
@@ -249,7 +249,7 @@
 }
 
 void Fl_Bitmap::draw(int XP, int YP, int WP, int HP, int cx, int cy) {
-  fl_device->draw(this, XP, YP, WP, HP, cx, cy);
+  fl_graphics_driver->draw(this, XP, YP, WP, HP, cx, cy);
 }
 
 static int start(Fl_Bitmap *bm, int XP, int YP, int WP, int HP, int w, int h, 
int &cx, int &cy, 

Modified: branches/branch-1.3/src/Fl_Device.cxx
===================================================================
--- branches/branch-1.3/src/Fl_Device.cxx       2010-06-29 21:30:45 UTC (rev 
7658)
+++ branches/branch-1.3/src/Fl_Device.cxx       2010-07-01 13:21:32 UTC (rev 
7659)
@@ -47,7 +47,7 @@
 /** \brief Use this drawing surface for future graphics requests. */
 void Fl_Surface_Device::set_current(void)
 {
-  fl_device = _driver;
+  fl_graphics_driver = _driver;
   fl_surface = this;
 }
 

Modified: branches/branch-1.3/src/Fl_GDI_Printer.cxx
===================================================================
--- branches/branch-1.3/src/Fl_GDI_Printer.cxx  2010-06-29 21:30:45 UTC (rev 
7658)
+++ branches/branch-1.3/src/Fl_GDI_Printer.cxx  2010-07-01 13:21:32 UTC (rev 
7659)
@@ -37,7 +37,7 @@
 Fl_Printer::Fl_System_Printer(void) : Fl_Paged_Device() {
   hPr = NULL;
   type_ = device_type;
-  driver(fl_device);
+  driver(fl_graphics_driver);
 }
 
 Fl_Printer::~Fl_System_Printer(void) {

Modified: branches/branch-1.3/src/Fl_Image.cxx
===================================================================
--- branches/branch-1.3/src/Fl_Image.cxx        2010-06-29 21:30:45 UTC (rev 
7658)
+++ branches/branch-1.3/src/Fl_Image.cxx        2010-07-01 13:21:32 UTC (rev 
7659)
@@ -434,7 +434,7 @@
 #endif // !WIN32 && !__APPLE_QUARTZ__
 
 void Fl_RGB_Image::draw(int XP, int YP, int WP, int HP, int cx, int cy) {
-  fl_device->draw(this, XP, YP, WP, HP, cx, cy);
+  fl_graphics_driver->draw(this, XP, YP, WP, HP, cx, cy);
 }
 
 static int start(Fl_RGB_Image *img, int XP, int YP, int WP, int HP, int w, int 
h, int &cx, int &cy, 

Modified: branches/branch-1.3/src/Fl_Pixmap.cxx
===================================================================
--- branches/branch-1.3/src/Fl_Pixmap.cxx       2010-06-29 21:30:45 UTC (rev 
7658)
+++ branches/branch-1.3/src/Fl_Pixmap.cxx       2010-07-01 13:21:32 UTC (rev 
7659)
@@ -75,7 +75,7 @@
 }
 
 void Fl_Pixmap::draw(int XP, int YP, int WP, int HP, int cx, int cy) {
-  fl_device->draw(this, XP, YP, WP, HP, cx, cy);
+  fl_graphics_driver->draw(this, XP, YP, WP, HP, cx, cy);
 }
 
 static int start(Fl_Pixmap *pxm, int XP, int YP, int WP, int HP, int w, int h, 
int &cx, int &cy, 

Modified: branches/branch-1.3/src/Fl_Quartz_Printer.mm
===================================================================
--- branches/branch-1.3/src/Fl_Quartz_Printer.mm        2010-06-29 21:30:45 UTC 
(rev 7658)
+++ branches/branch-1.3/src/Fl_Quartz_Printer.mm        2010-07-01 13:21:32 UTC 
(rev 7659)
@@ -41,7 +41,7 @@
   y_offset = 0;
   scale_x = scale_y = 1.;
   type_ = device_type;
-  driver(fl_device);
+  driver(fl_graphics_driver);
 }
 
 Fl_System_Printer::~Fl_System_Printer(void) {}

Modified: branches/branch-1.3/src/Fl_cocoa.mm
===================================================================
--- branches/branch-1.3/src/Fl_cocoa.mm 2010-06-29 21:30:45 UTC (rev 7658)
+++ branches/branch-1.3/src/Fl_cocoa.mm 2010-07-01 13:21:32 UTC (rev 7659)
@@ -120,7 +120,7 @@
 static Fl_Quartz_Graphics_Driver fl_quartz_driver;
 static Fl_Display_Device fl_quartz_display(&fl_quartz_driver);
 FL_EXPORT Fl_Display_Device *fl_display_device = 
(Fl_Display_Device*)&fl_quartz_display; // does not change
-FL_EXPORT Fl_Graphics_Driver *fl_device = 
(Fl_Graphics_Driver*)&fl_quartz_driver; // the current target device of 
graphics operations
+FL_EXPORT Fl_Graphics_Driver *fl_graphics_driver = 
(Fl_Graphics_Driver*)&fl_quartz_driver; // the current target device of 
graphics operations
 FL_EXPORT Fl_Surface_Device *fl_surface = 
(Fl_Surface_Device*)fl_display_device; // the current target surface of 
graphics operations
 
 // public variables

Modified: branches/branch-1.3/src/Fl_win32.cxx
===================================================================
--- branches/branch-1.3/src/Fl_win32.cxx        2010-06-29 21:30:45 UTC (rev 
7658)
+++ branches/branch-1.3/src/Fl_win32.cxx        2010-07-01 13:21:32 UTC (rev 
7659)
@@ -98,7 +98,7 @@
 static Fl_GDI_Graphics_Driver fl_gdi_driver;
 static Fl_Display_Device fl_gdi_display(&fl_gdi_driver);
 FL_EXPORT Fl_Display_Device *fl_display_device = 
(Fl_Display_Device*)&fl_gdi_display; // does not change
-FL_EXPORT Fl_Graphics_Driver *fl_device = (Fl_Graphics_Driver*)&fl_gdi_driver; 
// the current target driver of graphics operations
+FL_EXPORT Fl_Graphics_Driver *fl_graphics_driver = 
(Fl_Graphics_Driver*)&fl_gdi_driver; // the current target driver of graphics 
operations
 FL_EXPORT Fl_Surface_Device *fl_surface = 
(Fl_Surface_Device*)fl_display_device; // the current target surface of 
graphics operations
 
 // dynamic wsock dll handling api:

Modified: branches/branch-1.3/src/Fl_x.cxx
===================================================================
--- branches/branch-1.3/src/Fl_x.cxx    2010-06-29 21:30:45 UTC (rev 7658)
+++ branches/branch-1.3/src/Fl_x.cxx    2010-07-01 13:21:32 UTC (rev 7659)
@@ -54,7 +54,7 @@
 static Fl_Xlib_Graphics_Driver fl_xlib_driver;
 static Fl_Display_Device fl_xlib_display(&fl_xlib_driver);
 FL_EXPORT Fl_Display_Device *fl_display_device = 
(Fl_Display_Device*)&fl_xlib_display; // does not change
-FL_EXPORT Fl_Graphics_Driver *fl_device = 
(Fl_Graphics_Driver*)&fl_xlib_driver; // the current target device of graphics 
operations
+FL_EXPORT Fl_Graphics_Driver *fl_graphics_driver = 
(Fl_Graphics_Driver*)&fl_xlib_driver; // the current target device of graphics 
operations
 FL_EXPORT Fl_Surface_Device *fl_surface = 
(Fl_Surface_Device*)fl_display_device; // the current target surface of 
graphics operations
 
 ////////////////////////////////////////////////////////////////

Modified: branches/branch-1.3/src/fl_draw_pixmap.cxx
===================================================================
--- branches/branch-1.3/src/fl_draw_pixmap.cxx  2010-06-29 21:30:45 UTC (rev 
7658)
+++ branches/branch-1.3/src/fl_draw_pixmap.cxx  2010-07-01 13:21:32 UTC (rev 
7659)
@@ -341,7 +341,7 @@
 #endif
   
 #ifdef  __APPLE_QUARTZ__
-  if (fl_device->type() == Fl_Quartz_Graphics_Driver::device_type ) {
+  if (fl_graphics_driver->type() == Fl_Quartz_Graphics_Driver::device_type ) {
     bool transparent = (transparent_index>=0);
     transparent = true;
     U32 *array = new U32[d.w * d.h], *q = array;

Modified: branches/branch-1.3/src/fl_font_mac.cxx
===================================================================
--- branches/branch-1.3/src/fl_font_mac.cxx     2010-06-29 21:30:45 UTC (rev 
7658)
+++ branches/branch-1.3/src/fl_font_mac.cxx     2010-07-01 13:21:32 UTC (rev 
7659)
@@ -425,8 +425,8 @@
 
 void fl_draw(const char *str, int n, float x, float y) {
   
-  if(fl_device->type() != Fl_Quartz_Graphics_Driver::device_type) {
-    fl_device->draw(str, n, (int)x, (int)y );
+  if(fl_graphics_driver->type() != Fl_Quartz_Graphics_Driver::device_type) {
+    fl_graphics_driver->draw(str, n, (int)x, (int)y );
     return;
     }
   // avoid a crash if no font has been selected by user yet !

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to