FLTK 1.4.0
Loading...
Searching...
No Matches
print_button.h
1//
2// Header for "Print Window" functions for the Fast Light Tool Kit (FLTK).
3//
4// Copyright 1998-2022 by Bill Spitzak and others.
5//
6// This library is free software. Distribution and use rights are outlined in
7// the file "COPYING" which should have been included with this file. If this
8// file is missing or damaged, see the license at:
9//
10// https://www.fltk.org/COPYING.php
11//
12// Please see the following page on how to report bugs and issues:
13//
14// https://www.fltk.org/bugs.php
15//
16
17#ifndef _SRC_FL_PRINT_BUTTON_H_
18#define _SRC_FL_PRINT_BUTTON_H_
19
20#include <FL/Fl_Window.H>
21
22// These are all internal functions, do not FL_EXPORT these functions!
23// These functions are mplemented in src/print_button.cxx
24
25// Create and initialize the "Print/copy front window" dialog window
26
27int fl_create_print_window();
28
29// Print a window or copy its contents to the clipboard.
30
31int fl_print_or_copy_window(Fl_Window *win, bool grab_decoration, int mode);
32
33#endif // _SRC_FL_PRINT_BUTTON_H_
Fl_Window widget .
This widget produces an actual window.
Definition Fl_Window.H:55