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
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
2001-11-25 15:30:25 +03:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-04-16 04:13:17 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.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 {
|
2022-08-10 11:53:29 +03:00
|
|
|
protected:
|
2001-11-25 15:30:25 +03:00
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
Fl_Image *image_; // The image that is tiled
|
|
|
|
int alloc_image_; // Did we allocate this image?
|
2001-11-25 15:30:25 +03:00
|
|
|
|
2022-08-10 11:53:29 +03:00
|
|
|
public:
|
2001-11-25 15:30:25 +03:00
|
|
|
Fl_Tiled_Image(Fl_Image *i, int W = 0, int H = 0);
|
|
|
|
virtual ~Fl_Tiled_Image();
|
|
|
|
|
2022-12-30 21:14:36 +03:00
|
|
|
Fl_Image *copy(int W, int H) const FL_OVERRIDE;
|
2022-03-20 21:59:22 +03:00
|
|
|
Fl_Image *copy() const {
|
|
|
|
return Fl_Image::copy();
|
|
|
|
}
|
2022-12-30 21:14:36 +03:00
|
|
|
void color_average(Fl_Color c, float i) FL_OVERRIDE;
|
|
|
|
void desaturate() FL_OVERRIDE;
|
|
|
|
void draw(int X, int Y, int W, int H, int cx = 0, int cy = 0) FL_OVERRIDE;
|
2001-11-25 15:30:25 +03:00
|
|
|
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
|