File: transferFunction.hxx

package info (click to toggle)
imview 1.1.9h-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,512 kB
  • sloc: cpp: 32,590; sh: 2,664; ansic: 1,900; makefile: 811; exp: 112; python: 88
file content (113 lines) | stat: -rw-r--r-- 4,064 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
/*
 * $Id: transferFunction.hxx,v 4.1 2003/09/09 07:46:04 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.
 * */

/*------------------------------------------------------------------------
 *
 * The long-awaited contrast/brightness/gamma panel
 *
 * Hugues Talbot	 3 May 1998
 *
 *      
 *-----------------------------------------------------------------------*/

#ifndef TRANSFERFUNCTION_H
#define TRANSFERFUNCTION_H

#include <FL/Fl.H>
#include <FL/x.H>
#include <FL/Fl_Slider.H>
#include <FL/Fl_Button.H>
#include <FL/Fl_Input.H>
#include <FL/Fl_Float_Input.H>
#include <FL/Fl_Int_Input.H>
#include <FL/Fl_Check_Button.H>
#include <FL/Fl_Return_Button.H>
#include <FL/Fl_Choice.H>
#include <FL/Fl_Double_Window.H>
#include "transferBox.hxx"
#include "transferHistoBox.hxx"
#include "transferFunctionBox.hxx"

enum {
    TRANSFER_DSP = 0,
    HISTOGRAM_DSP = 1
};

void chosendisplay_cb(Fl_Menu_ *, void *);

    
class transfer {
public:
    transfer();
    ~transfer();
    void setDefaults();
    void computeDrawingParms();
    void setDrawingParms();
    void redrawWindowIfNeeded();
    void show();
    void hide();
    void setGammaSliderValue(float val) {gammaSlider->value(val);}
    void setGammaInputValue(const char *c) {gammaInput->value(c);}
    void setContrastSliderValue(float val) {contrastSlider->value(val);}
    void setBrightnessSliderValue(float val) {brightnessSlider->value(val);}
    void setTopValue(int t);
    void setBottomValue(int t);
    void setLeftValue(int t);
    void setRightValue(int t);
    void setTransfer();
    void setHisto();
    void getParameters(float &theGamma, float &theContrast, float &theBrightness) {
	transferBox->getParms(theContrast, theBrightness, theGamma);
    }
    void ensureImageRedraw(bool s) {transferBox->setRelease(s);}
    friend Fl_Double_Window *transfer_panel(transfer &s);

private:
                        
    Fl_Double_Window        *transferWindow;
    Fl_Choice               *displayChoice;
    Fl_Float_Input          *gammaInput;
    Fl_Int_Input            *topInput, *bottomInput, *leftInput, *rightInput;
    myTransferBox           *transferBox, *memoryBox;
    myTransferHistoBox      *transferHistoBox;
    myTransferFunctionBox   *transferFunctionBox;
    Fl_Slider               *contrastSlider, *brightnessSlider;
    Fl_Slider               *gammaSlider;
    Fl_Button               *resetButton, *normaliseButton;
    Fl_Check_Button         *applyToAllButton;
    Fl_Return_Button        *OKButton;
};

#endif // TRANSFERFUNCTION_H