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