File: printSpect.hxx

package info (click to toggle)
imview 1.1.9c-12
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,792 kB
  • ctags: 5,342
  • sloc: cpp: 28,736; sh: 2,624; ansic: 1,818; makefile: 723; exp: 112; python: 88
file content (132 lines) | stat: -rw-r--r-- 4,028 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
 * $Id: printSpect.hxx,v 4.0 2003/04/28 14:39:57 hut66au Exp $
 *
 * Imview, the portable image analysis application
 * http://www.cmis.csiro.au/Hugues.Talbot/imview
 * ----------------------------------------------------------
 *
 *  Imview is an attempt to provide an image display application
 *  suitable for professional image analysis. It was started in
 *  1997 and is mostly the result of the efforts of Hugues Talbot,
 *  Image Analysis Project, CSIRO Mathematical and Information
 *  Sciences, with help from others (see the CREDITS files for
 *  more information)
 *
 *  Imview is Copyrighted (C) 1997-2001 by Hugues Talbot and was
 *  supported in parts by the Australian Commonwealth Science and 
 *  Industry Research Organisation. Please see the COPYRIGHT file 
 *  for full details. Imview also includes the contributions of 
 *  many others. Please see the CREDITS file for full details.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *  
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *  
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
 * */

/*------------------------------------------------------------------------
 *
 * A printPreferenceWindow class for spectra
 *
 * not Experimenting OOP with fluid anymore!
 *
 * Hugues Talbot	 2 Sep 1998     
 *-----------------------------------------------------------------------*/

#ifndef PRINTSPECT_H
#define PRINTSPECT_H

#include <FL/Fl.H>
#include <FL/Fl_Box.H>
#include <FL/Fl_Button.H>
#include <FL/Fl_Check_Button.H>
#include <FL/Fl_Group.H>
#include <FL/Fl_Input.H>
#include <FL/Fl_Return_Button.H>
#include <FL/Fl_Window.H>
#include "imview.hxx"
#include "io/gplot2.hxx"

typedef enum {
    A4_PAGE = 0,
    LETTER_PAGE = 1,
    A3_PAGE = 2
} pagetype;

typedef enum {
    LANDSCAPE = 0,
    PORTRAIT = 1
} pageorient;

typedef enum {
    LINES = 0,
    SPLINES = 1
} jointype;

class printspect {
public:
    printspect();
    void setDefaults();
    void toggleToFile();
    void toggleToPrinter();
    void allowTitle(bool b);
    void printFileName(const char *fn);
    const char *filenameInputValue(void) { return filenameInput->value(); }
    void show();
    void hide();
    int doThePreview();
    int closePreview();
    int doThePrinting();
    void setCallerType(paneltype thisPanel) {whichPanel = thisPanel;}
    friend Fl_Window *printspect_panel(printspect &s);

private:
    paneltype             whichPanel;
    // the connection to gnuplot
    plot_t              *thePlot;
    // in the order they appear in fluid
    // -- The dialog window
    Fl_Window           *prefWindow; // the main window

    // Print type group
    Fl_Group            *printtypeGroup;
    Fl_Check_Button     *printerCheck, *fileCheck;

    // Input group
    Fl_Group            *inputGroup;
    Fl_Input            *commandInput;
    Fl_Input            *filenameInput;
    Fl_Button           *browseButton;
    Fl_Input            *titleInput;

    // Orientation Group
    Fl_Group            *orientationGroup;
    Fl_Check_Button     *portraitCheck, *landscapeCheck;

    // Paper size group
    Fl_Group            *papersizeGroup;
    Fl_Check_Button     *A4Check, *letterCheck, *A3Check;

    // Language Group
    Fl_Group            *joinGroup;
    Fl_Check_Button     *linesCheck, *splinesCheck;

    Fl_Input            *nbcopiesInput;

    
    Fl_Button           *previewButton, *CancelButton;
    Fl_Return_Button    *OKButton;
};



#endif // PRINTSPECT_H