blob: 44d443f41bc2dde3dc80c94457d1b42cd81fbb78 (
plain)
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
|
//-*-C++-*-
/*
**************************************************************************
description
--------------------
copyright : (C) 2002 by Luis Carvalho
email : lpassos@mail.telepac.pt
**************************************************************************
**************************************************************************
* *
* 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. *
* *
**************************************************************************/
#ifndef PMPALETTEVALUE_H
#define PMPALETTEVALUE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "pmnamedobject.h"
/**
* Class for pallete values used for filter and transmit in image maps.
*/
class PMPaletteValue
{
public:
/** */
PMPaletteValue();
/** */
PMPaletteValue( int idx, double value );
/**
* Returns the index of the palette entry.
*/
int index( ) const { return m_index; }
/**
* Returns the value of the palette entry.
*/
double value( ) const { return m_value; }
/**
* Sets the index of the palette entry.
*/
void setIndex( int idx );
/**
* Sets the value of the palette entry.
*/
void setValue( double val );
/**
* Serializes the palette entry into a XML document.
*/
void serialize( TQDomElement& e, TQDomDocument& doc ) const;
/**
* Reads the palette entry from a XML document.
*/
void readAttributes( const TQDomElement& h );
/**
* Returns true if both values have the same index and value
*/
bool operator== ( const PMPaletteValue& p) const;
/**
* Returns false if both values have the same index and value
*/
bool operator!= ( const PMPaletteValue& p) const;
private:
int m_index;
double m_value;
};
#endif
|