summaryrefslogtreecommitdiffstats
path: root/lib/widgets/propeditor/propertywidgetproxy.h
blob: 642d7824361423262991665a1f0aeee6354b0a97 (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
/***************************************************************************
 *   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.             *
 ***************************************************************************/
#ifndef PROPERTYWIDGETPROXY_H
#define PROPERTYWIDGETPROXY_H

#include <tqwidget.h>
#include <tqvariant.h>

#include "multiproperty.h"

class TQHBoxLayout;

namespace PropertyLib{

class PropertyWidget;

#define PropertyType Property::PropertyType

/**
Property Widget Proxy.
It is sometimes useful to create single property editor widgets instead of having them
all in the property editor. Proxy creates an empty widget and shows the property editor
depending on the property type.
*/
class PropertyWidgetProxy: public TQWidget
{
Q_OBJECT
  TQ_OBJECT
TQ_PROPERTY( int propertyType READ propertyType WRITE setPropertyType DESIGNABLE true )
TQ_PROPERTY( PropertyType propertyType2 READ propertyType2 WRITE setPropertyType2 DESIGNABLE false )
public:
    PropertyWidgetProxy(TQWidget *parent = 0, const char *name = 0);
    ~PropertyWidgetProxy();
    
    /**Sets the type of a property editor to appear.*/
    void setPropertyType(int propertyType);
    int propertyType() const { return m_propertyType; }
    /**Sets the type of a property editor to appear.*/
    void setPropertyType2(PropertyType propertyType);
    PropertyType propertyType2() const { return m_propertyType; }
    
    TQVariant value() const;
    void setValue(const TQVariant &value);
    
    /**Sets the type of an editor basing on the @p value if the name is "value".
    Otherwise works as TQWidget::setProperty.*/
    bool setProperty( const char *name, const TQVariant &value);
    TQVariant property( const char *name) const;
    
protected:
    virtual void setWidget();
    
private:
    Property *p;
    MultiProperty *mp;
    
    PropertyType m_propertyType;
    PropertyWidget *m_editor;
    
    TQHBoxLayout *m_layout;
};

}

#endif