FLTK 1.3.9
Loading...
Searching...
No Matches
print_panel.h
1//
2// "$Id$"
3//
4// Print panel for the Fast Light Tool Kit (FLTK).
5//
6// Copyright 1998-2010 by Bill Spitzak and others.
7//
8// This library is free software. Distribution and use rights are outlined in
9// the file "COPYING" which should have been included with this file. If this
10// file is missing or damaged, see the license at:
11//
12// http://www.fltk.org/COPYING.php
13//
14// Please report all bugs and problems on the following page:
15//
16// http://www.fltk.org/str.php
17//
18
19//
20// This is a temporary file. It is only for development and will
21// probably be removed later.
22//
23
24#ifndef print_panel_h
25#define print_panel_h
26#include <FL/Fl.H>
27#include <FL/Fl_Double_Window.H>
28#include <FL/Fl_Group.H>
29#include <FL/Fl_Choice.H>
30#include <FL/Fl_Button.H>
31#include <FL/Fl_Box.H>
32#include <FL/Fl_Round_Button.H>
33#include <FL/Fl_Input.H>
34#include <FL/Fl_Spinner.H>
35#include <FL/Fl_Check_Button.H>
36#include <FL/Fl_Return_Button.H>
37#include <FL/Fl_Progress.H>
38enum printing_style {SystemV, BSD};
39static Fl_Double_Window* make_print_panel();
40static void print_cb(Fl_Return_Button *, void *);
41static printing_style print_load();
42static void print_update_status();
43#endif
44
45//
46// End of "$Id$".
47//
Fl static class.
The Fl_Double_Window provides a double-buffered window.
Definition Fl_Double_Window.H:40
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:33