From a6163888f3c56123b1db313743c6147ba498732c Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Fri, 8 Aug 2014 14:42:07 +0300 Subject: Add third_party libs --- .../fltk-1.1.10/documentation/Fl_Shared_Image.html | 96 ++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 third_party/windows/fltk-1.1.10/documentation/Fl_Shared_Image.html (limited to 'third_party/windows/fltk-1.1.10/documentation/Fl_Shared_Image.html') diff --git a/third_party/windows/fltk-1.1.10/documentation/Fl_Shared_Image.html b/third_party/windows/fltk-1.1.10/documentation/Fl_Shared_Image.html new file mode 100644 index 0000000..2f45b77 --- /dev/null +++ b/third_party/windows/fltk-1.1.10/documentation/Fl_Shared_Image.html @@ -0,0 +1,96 @@ + + + Fl_Shared_Image + + + + + +

class Fl_Shared_Image

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Shared_Image class supports caching, loading, +and drawing of image files. Most applications will also want to +link against the fltk_images library and call the +fl_register_images() +function to support standard image formats such as BMP, GIF, JPEG, and PNG.

+ +

Methods

+ + + +

protected Fl_Shared_Image::Fl_Shared_Image();
+protected Fl_Shared_Image::Fl_Shared_Image(const char *name, Fl_Image *img);

+ +

The constructors create a new shared image record in the +image cache. + +

The constructors are protected and cannot be used directly +from a program. Use the get() method instead. + +

protected Fl_Shared_Image::~Fl_Shared_Image();

+ +

The destructor free all memory and server resources that are +used by the image. The destructor is protected and cannot be +used directly from a program. Use the release() method +instead. + +

static Fl_Shared_Image *find(const char *n, int W = 0, int H = 0);

+ +

static Fl_Shared_Image *get(const char *n, int W = 0, int H = 0);

+ +

static Fl_Shared_Image **images();

+ +

const char *name();

+ +

static int num_images();

+ +

int refcount();

+ +

void release();

+ +

void reload();

+ + + -- cgit v1.3.1