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

KDevelop Property Editing Library

  • lib
  • widgets
  • propeditor
purledit.h
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 #ifndef PURLEDIT_H
21 #define PURLEDIT_H
22 
23 #include "propertywidget.h"
24 
25 #ifndef PURE_QT
26 #include <tdefile.h>
27 class KURLRequester;
28 #else
29 #include <klineedit.h>
30 class TQPushButton;
31 #endif
32 
33 
34 namespace PropertyLib{
35 
39 class PUrlEdit : public PropertyWidget
40 {
41 Q_OBJECT
42 
43 public:
44 #ifndef PURE_QT
45  enum Mode {File = KFile::File,Directory = KFile::Directory};
46 #else
47  enum Mode {File,Directory};
48 #endif
49 
50  PUrlEdit(Mode mode, MultiProperty* property, TQWidget* parent=0, const char* name=0);
51 
52  virtual TQVariant value() const;
53  virtual void setValue(const TQVariant& value, bool emitChange);
54 
55 private slots:
56  void updateProperty(const TQString &val);
57  void select();
58 private:
59 #ifndef PURE_QT
60  KURLRequester *m_edit;
61 #else
62  KLineEdit *m_edit;
63  TQPushButton *m_select;
64  TQString m_url;
65  Mode m_mode;
66 #endif
67 };
68 
69 }
70 
71 #endif
PropertyLib
Namespace which contain property editing classes.
Definition: childproperty.cpp:29
PropertyLib::PropertyWidget
An abstract base class of property viewer and editor vidget.
Definition: propertywidget.h:49
PropertyLib::PUrlEdit::value
virtual TQVariant value() const
Definition: purledit.cpp:53
PropertyLib::PUrlEdit::setValue
virtual void setValue(const TQVariant &value, bool emitChange)
Sets the value shown in the editor widget.
Definition: purledit.cpp:62
PropertyLib::PUrlEdit
Property editor with an url editor to choose the location of file or directory.
Definition: purledit.h:39
propertywidget.h
Contains PropertyLib::PropertyWidget class.
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.