summaryrefslogtreecommitdiffstats
path: root/lib/widgets/propeditor/propertywidgetproxy.cpp
blob: 813708cad355f29d92929bce13245d00084d7a1b (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/***************************************************************************
 *   Copyright (C) 2004 by Alexander Dymo                                  *
 *   cloudtemple@mskat.net                                                 *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU Library 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 Library General Public     *
 *   License along with this program; if not, write to the                 *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.             *
 ***************************************************************************/
#include "propertywidgetproxy.h"

#include <tqlayout.h>

#include "propertywidget.h"
#include "propertymachinefactory.h"

namespace PropertyLib{

PropertyWidgetProxy::PropertyWidgetProxy(TQWidget *parent, const char *name)
    :TQWidget(parent, name), mp(0), m_propertyType(Property::Invalid), m_editor(0)
{
    p = new Property();
    m_layout = new TQHBoxLayout(this, 0, 0);
}

PropertyWidgetProxy::~PropertyWidgetProxy()
{
    delete mp;
    delete p;
}

void PropertyWidgetProxy::setPropertyType(int propertyType)
{
    m_propertyType = static_cast<PropertyType>(propertyType);
    setWidget();
}

void PropertyWidgetProxy::setPropertyType2(PropertyType propertyType)
{
    m_propertyType = propertyType;
    setWidget();
}

void PropertyWidgetProxy::setWidget()
{
    if (m_editor)
        delete m_editor;
    p->setType(m_propertyType);
    mp = new MultiProperty(p);
    m_editor = PropertyMachineFactory::getInstance()->machineForProperty(mp)->propertyEditor;
    if (m_editor)
    {
        m_editor->reparent(this, TQPoint(0,0), true);
        m_layout->addWidget(m_editor);
    }
}

TQVariant PropertyWidgetProxy::value() const
{
    if (m_editor)
        return m_editor->value();
    else
        return TQVariant();
}

void PropertyWidgetProxy::setValue(const TQVariant &value)
{
    if (m_editor)
        m_editor->setValue(value, false);
}

bool PropertyWidgetProxy::setProperty( const char * name, const TQVariant & value )
{
	if( strcmp( name, "value") == 0 )
	{
		setPropertyType((int) value.type() );
		setValue( value );
		return true;
	}
	else
		return TQWidget::setProperty(name, value);
}

TQVariant PropertyWidgetProxy::property( const char * name ) const
{
	if( strcmp( name, "value") == 0 )
		return value(  );
	else
		return TQWidget::property(name);
}

}

#ifndef PURE_QT
#include "propertywidgetproxy.moc"
#endif