You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.1 KiB
83 lines
3.1 KiB
/***************************************************************************
|
|
* 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
|
|
{
|
|
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
|