00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef print_panel_h
00025 #define print_panel_h
00026 #include <FL/Fl.H>
00027 #include <FL/Fl_Double_Window.H>
00028 #include <FL/Fl_Group.H>
00029 #include <FL/Fl_Choice.H>
00030 #include <FL/Fl_Button.H>
00031 #include <FL/Fl_Box.H>
00032 #include <FL/Fl_Round_Button.H>
00033 #include <FL/Fl_Input.H>
00034 #include <FL/Fl_Spinner.H>
00035 #include <FL/Fl_Check_Button.H>
00036 #include <FL/Fl_Return_Button.H>
00037 #include <FL/Fl_Progress.H>
00038 enum printing_style {SystemV, BSD};
00039 static Fl_Double_Window* make_print_panel();
00040 static void print_cb(Fl_Return_Button *, void *);
00041 static printing_style print_load();
00042 static void print_update_status();
00043 #endif
00044
00045
00046
00047