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

KDevelop Property Editing Library

  • lib
  • widgets
  • propeditor
psizepolicyedit.cpp
1 /***************************************************************************
2  * Copyright (C) 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 "psizepolicyedit.h"
21 
22 #include <klineedit.h>
23 #include <tqlayout.h>
24 #include <tqpainter.h>
25 #include <tqsizepolicy.h>
26 
27 namespace PropertyLib{
28 
29 PSizePolicyEdit::PSizePolicyEdit(MultiProperty* property, const TQMap<TQString, TQVariant> &spValues, TQWidget* parent, const char* name)
30  :PropertyWidget(property, parent, name), m_spValues(spValues)
31 {
32  TQHBoxLayout *l = new TQHBoxLayout(this, 0, 0);
33  m_edit = new KLineEdit(this);
34  m_edit->setSizePolicy(TQSizePolicy::MinimumExpanding, TQSizePolicy::MinimumExpanding);
35  l->addWidget(m_edit);
36 
37  m_edit->setReadOnly(true);
38 }
39 
40 TQVariant PSizePolicyEdit::value() const
41 {
42  return m_value;
43 }
44 
45 void PSizePolicyEdit::drawViewer(TQPainter* p, const TQColorGroup& cg, const TQRect& r, const TQVariant& value)
46 {
47  p->setPen(TQt::NoPen);
48  p->setBrush(cg.background());
49  p->drawRect(r);
50  p->drawText(r, TQt::AlignLeft | TQt::AlignVCenter | TQt::SingleLine, TQString("%1/%2/%3/%4").arg(findValueDescription(value.toSizePolicy().horData())).arg(findValueDescription(value.toSizePolicy().verData())).arg(value.toSizePolicy().horStretch()).arg(value.toSizePolicy().verStretch()));
51 }
52 
53 void PSizePolicyEdit::setValue(const TQVariant& value, bool emitChange)
54 {
55  m_value = value;
56  m_edit->setText(TQString("%1/%2/%3/%4").arg(findValueDescription(value.toSizePolicy().horData())).arg(findValueDescription(value.toSizePolicy().verData())).arg(value.toSizePolicy().horStretch()).arg(value.toSizePolicy().verStretch()));
57 
58  if (emitChange)
59  emit propertyChanged(m_property, value);
60 }
61 
62 TQString PSizePolicyEdit::findValueDescription(TQVariant val) const
63 {
64 // tqWarning("PSizePolicyEdit::findValueDescription : %d", val.toInt());
65  for (TQMap<TQString, TQVariant>::const_iterator it = m_spValues.begin(); it != m_spValues.end(); ++ it)
66  {
67  if (it.data() == val)
68  return it.key();
69  }
70  return "";
71 }
72 
73 }
74 
75 #ifndef PURE_QT
76 #include "psizepolicyedit.moc"
77 #endif
PropertyLib::PSizeEdit::value
virtual TQVariant value() const
Definition: psizeedit.cpp:39
PropertyLib
Namespace which contain property editing classes.
Definition: childproperty.cpp:29
PropertyLib::PSizePolicyEdit::setValue
virtual void setValue(const TQVariant &value, bool emitChange)
Sets the value shown in the editor widget.
Definition: psizepolicyedit.cpp:53
PropertyLib::PropertyWidget::propertyChanged
void propertyChanged(MultiProperty *property, const TQVariant &value)
Emit this signal when property value is changed.
PropertyLib::PSizePolicyEdit::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: psizepolicyedit.cpp:45
PropertyLib::PSizePolicyEdit::value
virtual TQVariant value() const
Definition: psizepolicyedit.cpp:40

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.