• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • KDevelop Property Editing Library
 

KDevelop Property Editing Library

  • lib
  • widgets
  • propeditor
propertywidget.cpp
1 /***************************************************************************
2  * Copyright (C) 2002-2004 by Alexander Dymo *
3  * cloudtemple@mskat.net *
4  * *
5  * This program is free software; you can redistribute it and/or modify *
6  * it under the terms of the GNU Library General Public License as *
7  * published by the Free Software Foundation; either version 2 of the *
8  * License, or (at your option) any later version. *
9  * *
10  * This program is distributed in the hope that it will be useful, *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13  * GNU General Public License for more details. *
14  * *
15  * You should have received a copy of the GNU Library General Public *
16  * License along with this program; if not, write to the *
17  * Free Software Foundation, Inc., *
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19  ***************************************************************************/
20 #include "propertywidget.h"
21 
22 #include <tqpainter.h>
23 
24 namespace PropertyLib{
25 
26 PropertyWidget::PropertyWidget(MultiProperty *property, TQWidget *parent, const char *name)
27  :TQWidget(parent, name), m_property(property)
28 {
29 }
30 
31 TQString PropertyWidget::propertyName() const
32 {
33  return m_property->name();
34 }
35 
36 void PropertyWidget::setProperty(MultiProperty *property)
37 {
38  m_property = property;
39 }
40 
41 void PropertyWidget::drawViewer(TQPainter *p, const TQColorGroup &cg, const TQRect &r, const TQVariant &value)
42 {
43  p->setPen(TQt::NoPen);
44  p->setBrush(cg.background());
45  p->drawRect(r);
46  p->drawText(r, TQt::AlignLeft | TQt::AlignVCenter | TQt::SingleLine, value.toString());
47 }
48 
49 void PropertyWidget::setValueList(const TQMap<TQString, TQVariant> &// valueList
50  )
51 {
52  //this does nothing
53 }
54 
55 void PropertyWidget::undo()
56 {
57  m_property->undo();
58 }
59 
60 }
61 
62 #ifndef PURE_QT
63 #include "propertywidget.moc"
64 #endif
PropertyLib::PropertyWidget::undo
virtual void undo()
Reverts the property value to previous setting.
Definition: propertywidget.cpp:55
PropertyLib::PropertyWidget::propertyName
virtual TQString propertyName() const
Definition: propertywidget.cpp:31
PropertyLib::PropertyWidget::PropertyWidget
PropertyWidget(MultiProperty *property, TQWidget *parent=0, const char *name=0)
Constructs widget for property with name "propertyName".
Definition: propertywidget.cpp:26
PropertyLib::MultiProperty::undo
void undo()
Reverts the property value to previous setting.
Definition: multiproperty.cpp:262
PropertyLib
Namespace which contain property editing classes.
Definition: childproperty.cpp:29
PropertyLib::PropertyWidget::drawViewer
virtual void drawViewer(TQPainter *p, const TQColorGroup &cg, const TQRect &r, const TQVariant &value)
Function to draw a property viewer when the editor isn&#39;t shown.
Definition: propertywidget.cpp:41
PropertyLib::PropertyWidget::value
virtual TQVariant value() const =0
PropertyLib::MultiProperty::name
TQString name() const
Returns the name of a property.
Definition: multiproperty.cpp:46
propertywidget.h
Contains PropertyLib::PropertyWidget class.
PropertyLib::PropertyWidget::setValueList
virtual void setValueList(const TQMap< TQString, TQVariant > &valueList)
Sets the list of possible values shown in the editor widget.
Definition: propertywidget.cpp:49
PropertyLib::PropertyWidget::setProperty
virtual void setProperty(MultiProperty *property)
Sets the name of edited property.
Definition: propertywidget.cpp:36
PropertyLib::MultiProperty
Holds a list of properties with the same name and type.
Definition: multiproperty.h:49

KDevelop Property Editing Library

Skip menu "KDevelop Property Editing Library"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members

KDevelop Property Editing Library

Skip menu "KDevelop Property Editing Library"
  • buildtools
  •   lib
  •     base
  •     parsers
  •       autotools
  •       qmake
  •     widgets
  •   api
  • languages
  •   lib
  •     debugger
  •     designer_integration
  •     interfaces
  • lib
  •   catalog
  •   interfaces
  •     extensions
  •     external
  •     extras
  •   util
  •   widgets
  •     propeditor
  • parts
  •   documentation
  •     interfaces
  • src
  •   profileengine
  •     lib
Generated for KDevelop Property Editing Library by doxygen 1.8.13
This website is maintained by Timothy Pearson.