2001-11-25 15:30:25 +03:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// "$Id$"
|
2001-11-25 15:30:25 +03:00
|
|
|
//
|
|
|
|
// Tiled image header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2015-03-01 23:16:56 +03:00
|
|
|
// Copyright 1998-2015 by Bill Spitzak and others.
|
2001-11-25 15:30:25 +03:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
2001-11-25 15:30:25 +03:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// http://www.fltk.org/COPYING.php
|
2001-11-25 15:30:25 +03:00
|
|
|
//
|
2005-04-16 04:13:17 +04:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/str.php
|
2001-11-25 15:30:25 +03:00
|
|
|
//
|
|
|
|
|
2008-10-15 17:46:06 +04:00
|
|
|
/* \file
|
2008-09-16 11:26:22 +04:00
|
|
|
Fl_Tiled_Image widget . */
|
|
|
|
|
2001-11-25 15:30:25 +03:00
|
|
|
#ifndef Fl_Tiled_Image_H
|
|
|
|
# define Fl_Tiled_Image_H
|
|
|
|
|
|
|
|
# include "Fl_Image.H"
|
|
|
|
|
|
|
|
|
2008-09-15 20:39:05 +04:00
|
|
|
/**
|
2015-03-01 23:16:56 +03:00
|
|
|
This class supports tiling of images over a specified area.
|
|
|
|
|
|
|
|
The source (tile) image is \b not copied unless you call the
|
|
|
|
color_average(), desaturate(), or inactive() methods.
|
2008-09-15 20:39:05 +04:00
|
|
|
*/
|
2002-07-15 01:25:39 +04:00
|
|
|
class FL_EXPORT Fl_Tiled_Image : public Fl_Image {
|
2001-11-25 15:30:25 +03:00
|
|
|
protected:
|
|
|
|
|
2015-03-01 23:16:56 +03:00
|
|
|
Fl_Image *image_; // The image that is tiled
|
2001-11-25 15:30:25 +03:00
|
|
|
int alloc_image_; // Did we allocate this image?
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
Fl_Tiled_Image(Fl_Image *i, int W = 0, int H = 0);
|
|
|
|
virtual ~Fl_Tiled_Image();
|
|
|
|
|
|
|
|
virtual Fl_Image *copy(int W, int H);
|
|
|
|
Fl_Image *copy() { return copy(w(), h()); }
|
|
|
|
virtual void color_average(Fl_Color c, float i);
|
|
|
|
virtual void desaturate();
|
|
|
|
virtual void draw(int X, int Y, int W, int H, int cx, int cy);
|
|
|
|
void draw(int X, int Y) { draw(X, Y, w(), h(), 0, 0); }
|
2015-03-01 23:16:56 +03:00
|
|
|
/** Gets The image that is tiled */
|
2004-04-11 07:50:38 +04:00
|
|
|
Fl_Image *image() { return image_; }
|
2001-11-25 15:30:25 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !Fl_Tiled_Image_H
|
|
|
|
|
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// End of "$Id$"
|
2001-11-25 15:30:25 +03:00
|
|
|
//
|