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

KDevelop Property Editing Library

  • lib
  • widgets
  • propeditor
pyesnobutton.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 "pyesnobutton.h"
21 
22 #include <tqlayout.h>
23 #include <tqpainter.h>
24 #include <tqpushbutton.h>
25 
26 #ifndef PURE_QT
27 #include <tdelocale.h>
28 #else
29 #include "compat_tools.h"
30 #endif
31 
32 namespace PropertyLib{
33 
34 PYesNoButton::PYesNoButton(MultiProperty* property, TQWidget* parent, const char* name)
35  :PropertyWidget(property, parent, name)
36 {
37  TQHBoxLayout *l = new TQHBoxLayout(this, 0, 0);
38  m_edit = new TQPushButton(this);
39  m_edit->setToggleButton(true);
40  m_edit->setSizePolicy(TQSizePolicy::MinimumExpanding, TQSizePolicy::MinimumExpanding);
41  l->addWidget(m_edit);
42 
43  connect(m_edit, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(updateProperty(bool)));
44 }
45 
46 TQVariant PYesNoButton::value() const
47 {
48  return TQVariant(m_edit->isOn());
49 }
50 
51 void PYesNoButton::drawViewer(TQPainter* p, const TQColorGroup& cg, const TQRect& r, const TQVariant& value)
52 {
53  PropertyWidget::drawViewer(p, cg, r, value.toBool() ? i18n("Yes") : i18n("No"));
54 }
55 
56 void PYesNoButton::setValue(const TQVariant& value, bool emitChange)
57 {
58  disconnect(m_edit, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(updateProperty(bool)));
59  m_edit->setDown(value.toBool());
60  value.toBool() ? m_edit->setText(i18n("Yes")) : m_edit->setText(i18n("No"));
61  connect(m_edit, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(updateProperty(bool)));
62  if (emitChange)
63  emit propertyChanged(m_property, value);
64 }
65 
66 void PYesNoButton::updateProperty(bool toggled)
67 {
68  toggled ? m_edit->setText(i18n("Yes")) : m_edit->setText(i18n("No"));
69  emit propertyChanged(m_property, value());
70 }
71 
72 }
73 
74 #ifndef PURE_QT
75 #include "pyesnobutton.moc"
76 #endif
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::PYesNoButton::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: pyesnobutton.cpp:51
PropertyLib::PYesNoButton::value
virtual TQVariant value() const
Definition: pyesnobutton.cpp:46
PropertyLib::PUrlEdit::value
virtual TQVariant value() const
Definition: purledit.cpp:53
PropertyLib::PropertyWidget::propertyChanged
void propertyChanged(MultiProperty *property, const TQVariant &value)
Emit this signal when property value is changed.
PropertyLib::PYesNoButton::setValue
virtual void setValue(const TQVariant &value, bool emitChange)
Sets the value shown in the editor widget.
Definition: pyesnobutton.cpp:56

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.