summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2010-03-18 18:02:50 +0000
committerManolo Gouy <Manolo>2010-03-18 18:02:50 +0000
commitcf37057367fab0e0c7257a1588d73eba80873d2e (patch)
tree85204d459ef5dadaba7913b633a692a7ee91c910 /FL
parentc72a57a56bc164b1d02b246e66d8fae54c994f05 (diff)
Renamed class Fl_Virtual_Printer into Fl_Abstract_Printer
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7301 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Device.H4
-rw-r--r--FL/Fl_Printer.H10
2 files changed, 7 insertions, 7 deletions
diff --git a/FL/Fl_Device.H b/FL/Fl_Device.H
index fee8b034e..33fc33ed3 100644
--- a/FL/Fl_Device.H
+++ b/FL/Fl_Device.H
@@ -44,7 +44,7 @@ class Fl_RGB_Image;
class Fl_Pixmap;
class Fl_Bitmap;
class Fl_Display;
-class Fl_Virtual_Printer;
+class Fl_Abstract_Printer;
extern Fl_Display *fl_display_device;
typedef void (*Fl_Draw_Image_Cb)(void* ,int,int,int,uchar*);
@@ -237,7 +237,7 @@ public:
: Fl_Plugin(klass(), name) { }
virtual const char *klass() { return "fltk:device"; }
virtual const char *name() = 0;
- virtual int print(Fl_Virtual_Printer*, Fl_Widget*, int x, int y) { return 0; }
+ virtual int print(Fl_Abstract_Printer*, Fl_Widget*, int x, int y) { return 0; }
};
#endif // Fl_Device_H
diff --git a/FL/Fl_Printer.H b/FL/Fl_Printer.H
index 791b3ccf7..8f2769638 100644
--- a/FL/Fl_Printer.H
+++ b/FL/Fl_Printer.H
@@ -51,7 +51,7 @@
*/
class
#ifndef FL_DOXYGEN
- Fl_Virtual_Printer
+ Fl_Abstract_Printer
#else
Fl_Printer
#endif
@@ -74,7 +74,7 @@ protected:
void *gc; // the printer's graphics context, if there's one, NULL otherwise
void delete_image_list(); // deletes the page image list
#ifndef FL_DOXYGEN
- Fl_Virtual_Printer(void) { gc = NULL; bg_r_ = bg_g_ = bg_b_ = 0; };
+ Fl_Abstract_Printer(void) { gc = NULL; bg_r_ = bg_g_ = bg_b_ = 0; };
#endif
public:
#ifdef FL_DOXYGEN
@@ -234,7 +234,7 @@ public:
};
#ifdef __APPLE__
-class Fl_Quartz_Printer : public Fl_Virtual_Printer {
+class Fl_Quartz_Printer : public Fl_Abstract_Printer {
private:
float scale_x;
float scale_y;
@@ -259,7 +259,7 @@ public:
#endif
#ifdef WIN32
-class Fl_GDI_Printer : public Fl_Virtual_Printer {
+class Fl_GDI_Printer : public Fl_Abstract_Printer {
private:
int abortPrint;
PRINTDLG pd;
@@ -293,7 +293,7 @@ public:
*/
class Fl_PSfile_Device : public
#ifndef FL_DOXYGEN
- Fl_Virtual_Printer
+ Fl_Abstract_Printer
#else
Fl_Device
#endif