mirror of https://github.com/fltk/fltk
Added Fl_Copy_Surface::w() and Fl_Copy_Surface::h() member functions.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10441 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
eb6c15bcef
commit
baf5ea7d56
|
@ -79,6 +79,10 @@ public:
|
||||||
~Fl_Copy_Surface();
|
~Fl_Copy_Surface();
|
||||||
void set_current();
|
void set_current();
|
||||||
void draw(Fl_Widget* widget, int delta_x = 0, int delta_y = 0);
|
void draw(Fl_Widget* widget, int delta_x = 0, int delta_y = 0);
|
||||||
|
/** Returns the pixel width of the copy surface */
|
||||||
|
int w() { return width; }
|
||||||
|
/** Returns the pixel height of the copy surface */
|
||||||
|
int h() { return height; }
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(__APPLE__)
|
#if defined(__APPLE__)
|
||||||
|
|
|
@ -570,7 +570,7 @@ void copy(Fl_Widget *, void *data) {
|
||||||
if (strcmp(operation, "Fl_Copy_Surface") == 0) {
|
if (strcmp(operation, "Fl_Copy_Surface") == 0) {
|
||||||
Fl_Copy_Surface *copy_surf = new Fl_Copy_Surface(target->w()+10, target->h()+20);
|
Fl_Copy_Surface *copy_surf = new Fl_Copy_Surface(target->w()+10, target->h()+20);
|
||||||
copy_surf->set_current();
|
copy_surf->set_current();
|
||||||
fl_color(FL_YELLOW);fl_rectf(0,0,1000,1000);
|
fl_color(FL_YELLOW);fl_rectf(0,0,copy_surf->w(), copy_surf->h());
|
||||||
copy_surf->draw(target, 5, 10);
|
copy_surf->draw(target, 5, 10);
|
||||||
delete copy_surf;
|
delete copy_surf;
|
||||||
Fl_Display_Device::display_device()->set_current();
|
Fl_Display_Device::display_device()->set_current();
|
||||||
|
|
Loading…
Reference in New Issue