diff options
Diffstat (limited to 'doc/api/Architecture.dox')
-rw-r--r-- | doc/api/Architecture.dox | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/api/Architecture.dox b/doc/api/Architecture.dox index ae4ef73d..ccf09093 100644 --- a/doc/api/Architecture.dox +++ b/doc/api/Architecture.dox @@ -1,15 +1,15 @@ /** \file Architecture.dox - * \brief KDevelop architecture + * \brief TDevelop architecture */ -/** \page architecture KDevelop 3 Architecture +/** \page architecture TDevelop 3 Architecture -KDevelop uses a plugin based architecture. This will be explained in more +TDevelop uses a plugin based architecture. This will be explained in more detail in the next sections. To add a new plugin check the \ref howToAddPlugins page. \section devteammodel Development Team cooperation model -KDevelop is the result of the work of many people. To help syncronize the effords and to automate +TDevelop is the result of the work of many people. To help syncronize the effords and to automate some tasks, the team uses many tools: - CVS servers @@ -22,7 +22,7 @@ some tasks, the team uses many tools: - LXR - E-mail :) - Cron Jobs - - and of course KDevelop :) + - and of course TDevelop :) . They get interconnected like this: @@ -34,11 +34,11 @@ They get interconnected like this: \subsection source-division Main Source Divisions -The KDevelop 3 source is divided into several parts which correspond to -subdirectories in the KDevelop project directory. There are several main +The TDevelop 3 source is divided into several parts which correspond to +subdirectories in the TDevelop project directory. There are several main parts to distinguish, mainly: - - src = The core part of KDevelop + - src = The core part of TDevelop - lib/interfaces = Plugin handler interface classes - parts = The various parts using the KParts framework ( KDevPlugin children ) - languages = \ref language-parts @@ -51,7 +51,7 @@ parts to distinguish, mainly: This image is not complete there are parts that are not displayed. See below for a more detailed description. -\subsection core-part The Core Part of KDevelop +\subsection core-part The Core Part of TDevelop \subsubsection mainwindows Main Window Objects @@ -72,11 +72,11 @@ 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 KDevMainWindow in TDevelop. It can be accessed through the static function TopLevel::getInstance() (see the TopLevel class). -\subsection parts-overview KDevelop Parts Overview +\subsection parts-overview TDevelop Parts Overview All parts reside in dedicated subdirectories acording to their function. They can be viewed according to their functionalities as follows. @@ -85,7 +85,7 @@ be viewed according to their functionalities as follows. These parts implement a KDevLanguageSupport 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. +Take a look at \ref LangSupportStatus (doc/api/LangSupportStatus.dox file) to see the current status/features of the programming languages currently supported by TDevelop. - languages/ada = Support for Ada - (see AdaSupportPart) @@ -192,7 +192,7 @@ These parts implement a KDevVersionControl Class interface. \subsubsection editor-parts editor support Specific Parts These parts implement a KTextEditor Class interface. -Take a look at \ref EditorsSupportStatus (doc/api/EditorsSupportStatus.dox file) to see the current status/features of the editors currently supported by KDevelop. +Take a look at \ref EditorsSupportStatus (doc/api/EditorsSupportStatus.dox file) to see the current status/features of the editors currently supported by TDevelop. - editors/editor-chooser = Chooses an internal text editor - (see EditorChooserPart) @@ -209,7 +209,7 @@ Take a look at \ref EditorsSupportStatus (doc/api/EditorsSupportStatus.dox file) \subsubsection global-parts Global Parts Some of the parts are considered global - that is, they effect the entire -operation of KDevelop. +operation of TDevelop. These parts implement a KDevPlugin Class interface. |