1998-10-20 01:39:29 +04:00
|
|
|
//
|
|
|
|
// Double-buffered window header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2010-11-29 00:06:39 +03:00
|
|
|
// Copyright 1998-2010 by Bill Spitzak and others.
|
1998-10-20 01:39:29 +04: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:
|
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
1998-10-20 01:39:29 +04: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
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-10-15 17:46:06 +04:00
|
|
|
/* \file
|
2008-09-16 11:26:22 +04:00
|
|
|
Fl_Double_Window widget . */
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
#ifndef Fl_Double_Window_H
|
|
|
|
#define Fl_Double_Window_H
|
|
|
|
|
|
|
|
#include "Fl_Window.H"
|
|
|
|
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
The Fl_Double_Window provides a double-buffered window.
|
2021-11-26 17:01:36 +03:00
|
|
|
It will draw the window data into an off-screen pixmap, and then
|
2008-09-14 02:33:03 +04:00
|
|
|
copy it to the on-screen window.
|
|
|
|
*/
|
2016-03-14 01:16:37 +03:00
|
|
|
class FL_EXPORT Fl_Double_Window : public Fl_Window
|
|
|
|
{
|
2016-03-07 00:33:07 +03:00
|
|
|
public:
|
2008-09-21 22:55:58 +04:00
|
|
|
/**
|
2016-03-07 00:33:07 +03:00
|
|
|
Return non-null if this is an Fl_Overlay_Window object.
|
2008-09-21 22:55:58 +04:00
|
|
|
*/
|
2016-03-07 01:22:22 +03:00
|
|
|
virtual Fl_Double_Window *as_double_window() {return this; }
|
2002-08-14 20:49:38 +04:00
|
|
|
void show();
|
1998-10-06 22:21:25 +04:00
|
|
|
void show(int a, char **b) {Fl_Window::show(a,b);}
|
2002-08-14 20:49:38 +04:00
|
|
|
void resize(int,int,int,int);
|
|
|
|
void hide();
|
2016-03-14 01:16:37 +03:00
|
|
|
void flush();
|
2002-08-14 20:49:38 +04:00
|
|
|
~Fl_Double_Window();
|
2020-07-01 19:03:10 +03:00
|
|
|
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2012-07-24 08:37:22 +04:00
|
|
|
Creates a new Fl_Double_Window widget using the given
|
|
|
|
position, size, and label (title) string.
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2012-07-24 08:37:22 +04:00
|
|
|
Fl_Double_Window(int W, int H, const char *l = 0);
|
2020-07-01 19:03:10 +03:00
|
|
|
|
2012-07-24 08:37:22 +04:00
|
|
|
/**
|
|
|
|
See Fl_Double_Window::Fl_Double_Window(int w, int h, const char *label = 0)
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2012-07-24 08:37:22 +04:00
|
|
|
Fl_Double_Window(int X, int Y, int W, int H, const char *l = 0);
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|