diff options
Diffstat (limited to 'doc/api/Architecture.dox')
-rw-r--r-- | doc/api/Architecture.dox | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/api/Architecture.dox b/doc/api/Architecture.dox index ae4ef73d..52c1447a 100644 --- a/doc/api/Architecture.dox +++ b/doc/api/Architecture.dox @@ -40,7 +40,7 @@ parts to distinguish, mainly: - src = The core part of KDevelop - lib/interfaces = Plugin handler interface classes - - parts = The various parts using the KParts framework ( KDevPlugin children ) + - parts = The various parts using the KParts framework ( TDevPlugin children ) - languages = \ref language-parts - buildtools = \ref buildtool-parts - vcs = \ref vcs-parts @@ -67,12 +67,12 @@ There are two types of possible main window objects: pre-arranged access tabs around user areas. . -Both main window classes inherit from the KDevMainWindow class which provides +Both main window classes inherit from the TDevMainWindow class which provides access to common window features. \subsubsection toplevel The TopLevel Object -There is only one toplevel object of class KDevMainWindow in KDevelop. It can +There is only one toplevel object of class TDevMainWindow in KDevelop. It can be accessed through the static function TopLevel::getInstance() (see the TopLevel class). @@ -83,7 +83,7 @@ be viewed according to their functionalities as follows. \subsubsection language-parts Programming Language Support Parts -These parts implement a KDevLanguageSupport Class interface. +These parts implement a TDevLanguageSupport Class interface. To add support for a new programming language check the \ref howToAddProgrammingLanguages page (doc/api/HowToAddProgrammingLanguages.dox file). Take a look at \ref LangSupportStatus (doc/api/LangSupportStatus.dox file) to see the current status/features of the programming languages currently supported by KDevelop. @@ -135,7 +135,7 @@ Take a look at \ref LangSupportStatus (doc/api/LangSupportStatus.dox file) to se \subsubsection buildtool-parts Build tools Parts -These parts implement a KDevProject Class interface. +These parts implement a TDevProject Class interface. - buildtools/ada = Ada build tool - (see AdaProjectPart) @@ -166,7 +166,7 @@ These parts implement a KDevProject Class interface. \subsubsection vcs-parts VCS (Version Control System) Parts -These parts implement a KDevVersionControl Class interface. +These parts implement a TDevVersionControl Class interface. - vcs/cervisia = Cervisia Support - (see CervisiaPlugin) @@ -211,7 +211,7 @@ Take a look at \ref EditorsSupportStatus (doc/api/EditorsSupportStatus.dox file) Some of the parts are considered global - that is, they effect the entire operation of KDevelop. -These parts implement a KDevPlugin Class interface. +These parts implement a TDevPlugin Class interface. - parts/appwizard = New Project Wizard - see AppWizardPart @@ -264,7 +264,7 @@ These parts implement a KDevPlugin Class interface. \subsubsection project-specific-parts Project Specific Parts -These parts implement a KDevPlugin Class interface. +These parts implement a TDevPlugin Class interface. - parts/astyle = Source code formatter - (see AStylePart) |