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

KDevelop Property Editing Library

  • lib
  • widgets
  • propeditor
propertymachinefactory.h
Go to the documentation of this file.
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 PROPERTYMACHINEFACTORY_H
21 #define PROPERTYMACHINEFACTORY_H
22 
23 #include <tqmap.h>
24 
25 #include "propertywidget.h"
26 
27 class TQWidget;
28 
29 namespace PropertyLib{
30 
31 class Property;
32 class MultiProperty;
33 class ChildProperty;
34 
46 struct Machine{
47  Machine()
48  {
49  }
50  Machine(PropertyWidget *widget)
51  {
52  propertyEditor = widget;
53  }
54  ~Machine()
55  {
56  delete propertyEditor;
57  }
58 
60  PropertyWidget *propertyEditor;
61 };
62 
64 typedef Machine *(*createMachine)();
65 
69 class PropertyMachineFactory{
70 public:
74  void registerEditor(int type, createMachine creator);
75 
79  Machine *machineForProperty(MultiProperty *property);
80  bool hasDetailedEditors(int type);
81 
83  static PropertyMachineFactory *getInstance();
84 
85  static PropertyMachineFactory *m_factory;
86 
87 private:
88  PropertyMachineFactory();
89  virtual ~PropertyMachineFactory();
90 
91  //registered machines for property types
92  TQMap<TQString, createMachine > m_registeredForType;
93 };
94 
95 }
96 
97 #endif
PropertyLib
Namespace which contain property editing classes.
Definition: childproperty.cpp:29
PropertyLib::Machine::propertyEditor
PropertyWidget * propertyEditor
Property viewer and editor widget.
Definition: propertymachinefactory.h:60
PropertyLib::PropertyMachineFactory
Factory to create property editors and property viewers.
Definition: propertymachinefactory.h:69
PropertyLib::PropertyWidget
An abstract base class of property viewer and editor vidget.
Definition: propertywidget.h:49
propertywidget.h
Contains PropertyLib::PropertyWidget class.
PropertyLib::createMachine
Machine *(* createMachine)()
A pointer to factory function which creates and returns machine for a property.
Definition: propertymachinefactory.h:64
PropertyLib::MultiProperty
Holds a list of properties with the same name and type.
Definition: multiproperty.h:49
PropertyLib::Machine
Machine for a property type.
Definition: propertymachinefactory.h:46

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.