blob: 72a0378829a5029a74b372a35443632a731a0970 (
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
|
/*
**************************************************************************
description
--------------------
copyright : (C) 2002 by Andreas Zehender
email : zehender@kde.org
**************************************************************************
**************************************************************************
* *
* 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 "pmenumproperty.h"
PMEnumProperty::PMEnumProperty( const char* name, bool readOnly,
bool writeOnly )
: PMPropertyBase( name, PMVariant::String, readOnly, writeOnly )
{
}
void PMEnumProperty::addEnumValue( const QString& str, int value )
{
m_valueMap[value] = str;
m_stringMap[str] = value;
}
QStringList PMEnumProperty::enumValues( ) const
{
QStringList l;
PMEnumStringValueMap::const_iterator it;
for( it = m_stringMap.begin( ); it != m_stringMap.end( ); ++it )
l.append( it.key( ) );
return l;
}
bool PMEnumProperty::setProtected( PMObject* obj, const PMVariant& v )
{
PMEnumStringValueMap::iterator it = m_stringMap.find( v.stringData( ) );
if( it == m_stringMap.end( ) )
return false;
setEnum( obj, it.data( ) );
return true;
}
PMVariant PMEnumProperty::getProtected( const PMObject* obj )
{
int v = getEnum( obj );
PMEnumValueStringMap::const_iterator it = m_valueMap.find( v );
if( it == m_valueMap.end( ) )
return PMVariant( QString::null );
return it.data( );
}
|