Development/Architecture/KDE3/Integrated Development Environment: Difference between revisions

From KDE TechBase
(port of http://developer.kde.org/documentation/library/kdeqt/kde3arch/tools-kdevelop.html)
 
No edit summary
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
'''KDE Architecture - Integrated Development Environment'''
'''KDE Architecture - Integrated Development Environment'''


== KDevelop - Integrated Development Environment ==
== KDevelop - Integrated Development Environment ==


KDevelop is is a superb IDE for developing KDE and Qt C++ applications.
KDevelop is a great IDE for developing KDE and Qt C++ applications.
It includes an integrated debugger, a syntax highlighting editor, and of
It includes an integrated debugger, a syntax highlighting editor, and of
course a 'Project wizard' to handle the creation of the basic menu structures,
course a 'Project wizard' to handle the creation of the basic menu structures,
the automake/autoconf gunk, and even the class documentation. For the design of  
the automake/autoconf stuff, and even the class documentation. For the design of  
dialogs, it interacts with the [http://doc.trolltech.com/3.3/designer-manual.html Qt designer].
dialogs, it interacts with the [http://doc.trolltech.com/3.3/designer-manual.html Qt designer].


KDevelop is not one big static thing but has very modular
KDevelop is not one big static thing but has very modular
architecture. It glues several other powerful KDE development tools
architecture. It glues several other powerful KDE development tools
together, such as the advanced editor (kwrite), the graphical debugger
together, such as the advanced editor (kate), a formatting tool (astyle) or the interface documentation tool
(KDbg), the icon editor (kiconedit) or the interface documentation tool
(Doxygen).
(Doxygen).


Line 20: Line 21:


''Initial Author:'' [mailto:[email protected] Matthias Ettrich]
''Initial Author:'' [mailto:[email protected] Matthias Ettrich]
[[Category:KDE3]]
[[Category:Architecture]]

Latest revision as of 15:26, 13 July 2012


KDE Architecture - Integrated Development Environment

KDevelop - Integrated Development Environment

KDevelop is a great IDE for developing KDE and Qt C++ applications. It includes an integrated debugger, a syntax highlighting editor, and of course a 'Project wizard' to handle the creation of the basic menu structures, the automake/autoconf stuff, and even the class documentation. For the design of dialogs, it interacts with the Qt designer.

KDevelop is not one big static thing but has very modular architecture. It glues several other powerful KDE development tools together, such as the advanced editor (kate), a formatting tool (astyle) or the interface documentation tool (Doxygen).

For detailed information on KDevelop, see the official homepage on http://www.kdevelop.org.


Initial Author: Matthias Ettrich