blob: e3417b390426328308842e70c6ebac277ceafeea (
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
79
80
81
82
83
84
|
/*
**************************************************************************
description
--------------------
copyright : (C) 2002 by Luis Passos 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. *
* *
**************************************************************************/
#include "pmpalettevaluememento.h"
#include "pmdebug.h"
PMPaletteValueMemento::PMPaletteValueMemento( PMObject* originator )
: PMMemento( originator )
{
m_bFilterPaletteValuesSaved = false;
m_bTransmitPaletteValuesSaved = false;
}
PMPaletteValueMemento::~PMPaletteValueMemento( )
{
}
void PMPaletteValueMemento::setFilterPaletteValues( const TQValueList<PMPaletteValue>& v )
{
if( !m_bFilterPaletteValuesSaved )
{
// Direct assignment does not work with TQt 2.3.x
// The list will be changed later in a graphical
// change because TQValueList::detach( ) is called
// too late!
// Copy the list by hand.
TQValueList<PMPaletteValue>::ConstIterator it = v.begin( );
for( ; it != v.end( ); ++it )
m_filterPaletteValues.append( *it );
m_bFilterPaletteValuesSaved = true;
addChange( PMCData );
}
}
TQValueList<PMPaletteValue> PMPaletteValueMemento::filterPaletteValues( ) const
{
if( !m_bFilterPaletteValuesSaved )
kdError( PMArea ) << "Filter palette values not saved in PMPaletteValueMemento::filterPaletteValues\n";
return m_filterPaletteValues;
}
void PMPaletteValueMemento::setTransmitPaletteValues( const TQValueList<PMPaletteValue>& v )
{
if( !m_bTransmitPaletteValuesSaved )
{
// Direct assignment does not work with TQt 2.3.x
// The list will be changed later in a graphical
// change because TQValueList::detach( ) is called
// too late!
// Copy the list by hand.
TQValueList<PMPaletteValue>::ConstIterator it = v.begin( );
for( ; it != v.end( ); ++it )
m_transmitPaletteValues.append( *it );
m_bTransmitPaletteValuesSaved = true;
addChange( PMCData );
}
}
TQValueList<PMPaletteValue> PMPaletteValueMemento::transmitPaletteValues( ) const
{
if( !m_bTransmitPaletteValuesSaved )
kdError( PMArea ) << "Transmit palette values not saved in PMPaletteValueMemento::transmitPaletteValues\n";
return m_transmitPaletteValues;
}
|