FLTK 1.4.0
Loading...
Searching...
No Matches
print_panel.h
1//
2// Print panel for the Fast Light Tool Kit (FLTK).
3//
4// Copyright 1998-2010 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//
18// This is a temporary file. It is only for development and will
19// probably be removed later.
20//
21
22#ifndef print_panel_h
23#define print_panel_h
24#include <FL/Fl.H>
25#include <FL/Fl_Double_Window.H>
26#include <FL/Fl_Group.H>
27#include <FL/Fl_Choice.H>
28#include <FL/Fl_Button.H>
29#include <FL/Fl_Box.H>
30#include <FL/Fl_Round_Button.H>
31#include <FL/Fl_Input.H>
32#include <FL/Fl_Spinner.H>
33#include <FL/Fl_Check_Button.H>
34#include <FL/Fl_Return_Button.H>
35#include <FL/Fl_Progress.H>
36enum printing_style {SystemV, BSD};
37static Fl_Double_Window* make_print_panel();
38static void print_cb(Fl_Return_Button *, void *);
39static printing_style print_load();
40static void print_update_status();
41#endif
Fl static class.
Fl_Box widget.
Fl_Group and Fl_End classes.
The Fl_Double_Window provides a double-buffered window.
Definition Fl_Double_Window.H:31
The Fl_Return_Button is a subclass of Fl_Button that generates a callback when it is pressed or when ...
Definition Fl_Return_Button.H:31