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 --- .../documentation/Fl_Double_Window.html | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 third_party/windows/fltk-1.1.10/documentation/Fl_Double_Window.html (limited to 'third_party/windows/fltk-1.1.10/documentation/Fl_Double_Window.html') diff --git a/third_party/windows/fltk-1.1.10/documentation/Fl_Double_Window.html b/third_party/windows/fltk-1.1.10/documentation/Fl_Double_Window.html new file mode 100644 index 0000000..88441d2 --- /dev/null +++ b/third_party/windows/fltk-1.1.10/documentation/Fl_Double_Window.html @@ -0,0 +1,54 @@ + + + Fl_Double_Window + + + +

class Fl_Double_Window

+
+

Class Hierarchy

+ +

Include Files

+ +

Description

+ The Fl_Double_Window class provides a double-buffered window. + If possible this will use the X double buffering extension (Xdbe). If +not, it will draw the window data into an off-screen pixmap, and then +copy it to the on-screen window. +

It is highly recommended that you put the following code before the +first show() of any window in your program:

+ + This makes sure you can use Xdbe on servers where double buffering +does not exist for every visual. +

Methods

+ +

+Fl_Double_Window::Fl_Double_Window(int w, int h, const +char *label = 0)
+Fl_Double_Window::Fl_Double_Window(int x, int y, int w, int h, const +char *label = 0)

+

Creates a new Fl_Double_Window widget using the given +position, size, and label (title) string.

+

virtual +Fl_Double_Window::~Fl_Double_Window()

+ The destructor also deletes all the children. This allows a +whole tree to be deleted at once, without having to keep a pointer to +all the children in the user code. + -- cgit v1.3.1