• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • TDevelop Interfaces Library
 

TDevelop Interfaces Library

  • lib
  • interfaces
kdevdesignerintegration.h
Go to the documentation of this file.
1 /* This file is part of the KDE project
2  Copyright (C) 2004 Alexander Dymo <adymo@kdevelop.org>
3 
4  This library is free software; you can redistribute it and/or
5  modify it under the terms of the GNU Library General Public
6  License as published by the Free Software Foundation; either
7  version 2 of the License, or (at your option) any later version.
8 
9  This library is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  Library General Public License for more details.
13 
14  You should have received a copy of the GNU Library General Public License
15  along with this library; see the file COPYING.LIB. If not, write to
16  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  Boston, MA 02110-1301, USA.
18 */
19 #ifndef KDEVDESIGNERINTEGRATION_H
20 #define KDEVDESIGNERINTEGRATION_H
21 
22 #include <designer.h>
23 #include <tqobject.h>
24 #include <tqdom.h>
25 
51 class KDevDesignerIntegration : public TQObject
52 {
53 Q_OBJECT
54 
55 public:
59  KDevDesignerIntegration(TQObject *parent = 0, const char *name = 0);
61  ~KDevDesignerIntegration();
62 
64  virtual void saveSettings(TQDomDocument dom, TQString path) = 0;
66  virtual void loadSettings(TQDomDocument dom, TQString path) = 0;
67 
68 public slots:
72  virtual void addFunction(const TQString &formName, KInterfaceDesigner::Function function) = 0;
73 
77  virtual void removeFunction(const TQString &formName, KInterfaceDesigner::Function function) = 0;
78 
83  virtual void editFunction(const TQString &formName, KInterfaceDesigner::Function oldFunction, KInterfaceDesigner::Function function) = 0;
84 
88  virtual void openFunction(const TQString &formName, const TQString &functionName) = 0;
89 
92  virtual void openSource(const TQString &formName) = 0;
93  private:
94  class KDevDesignerIntegrationPrivate;
95  KDevDesignerIntegrationPrivate *dptr;
96 };
97 
98 #endif
KDevDesignerIntegration::loadSettings
virtual void loadSettings(TQDomDocument dom, TQString path)=0
Loads designer integration settings.
KDevDesignerIntegration::saveSettings
virtual void saveSettings(TQDomDocument dom, TQString path)=0
Saves designer integration settings.
KDevDesignerIntegration::openSource
virtual void openSource(const TQString &formName)=0
Opens the form source.
KDevDesignerIntegration
TDevelop designer integration interface.
Definition: kdevdesignerintegration.h:51
KDevDesignerIntegration::editFunction
virtual void editFunction(const TQString &formName, KInterfaceDesigner::Function oldFunction, KInterfaceDesigner::Function function)=0
Edites the implementation of a function.
KDevDesignerIntegration::~KDevDesignerIntegration
~KDevDesignerIntegration()
Destructor.
Definition: kdevdesignerintegration.cpp:35
KDevDesignerIntegration::removeFunction
virtual void removeFunction(const TQString &formName, KInterfaceDesigner::Function function)=0
Removes the implementation of a function.
KDevDesignerIntegration::addFunction
virtual void addFunction(const TQString &formName, KInterfaceDesigner::Function function)=0
Adds the implementation for a function.
KDevDesignerIntegration::openFunction
virtual void openFunction(const TQString &formName, const TQString &functionName)=0
Opens the function and jumps to the line number of its definition (declaration).
KDevDesignerIntegration::KDevDesignerIntegration
KDevDesignerIntegration(TQObject *parent=0, const char *name=0)
Constructor.
Definition: kdevdesignerintegration.cpp:27

TDevelop Interfaces Library

Skip menu "TDevelop Interfaces Library"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

TDevelop Interfaces Library

Skip menu "TDevelop Interfaces 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 TDevelop Interfaces Library by doxygen 1.8.13
This website is maintained by Timothy Pearson.