Engauge Digitizer 2
Loading...
Searching...
No Matches
DlgFilterCommand.h
Go to the documentation of this file.
1/******************************************************************************************************
2 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5 ******************************************************************************************************/
6
7#ifndef DLG_FILTER_COMMAND_H
8#define DLG_FILTER_COMMAND_H
9
10#include "ColorFilterMode.h"
11
14{
15public:
18 double low0To1,
19 double high0To1);
20
23
26
29
31 double high0To1 () const;
32
34 double low0To1 () const;
35
36private:
38
39 ColorFilterMode m_colorFilterMode;
40 double m_low0To1;
41 double m_high0To1;
42};
43
44#endif // DLG_FILTER_COMMAND_H
ColorFilterMode
double high0To1() const
Get method for high value.
double low0To1() const
Get method for low value.
ColorFilterMode colorFilterMode() const
Get method for filter mode.
DlgFilterCommand & operator=(const DlgFilterCommand &other)
Assignment operator.
DlgFilterCommand(ColorFilterMode colorFilterMode, double low0To1, double high0To1)
Initial constructor.