Qt集成開發環境 QDevelop
QDevelop 是一個用來開發基于 Qt4 應用程序的集成開發環境,要求 Qt4 的支持,Windows 需要 MinGW 支持。使用 gdb 做為調試工具,提供包括英語、德語、法語、荷蘭語與俄語的支持,沒有中文。
Cross Platform: Supports Linux, Windows 2000/XP/Vista
Reading and writing project files (with some small restrictions)
Add / Delete and edit project files (or external files)
Management of normal projects and project SUBDIRS.
Independent build for each projects. I.e. are rebuild only the really modified projects.
In the event of errors or warnings of compilation, double-click on the line opens the corresponding editor.
Debugging with gdb. Toggle breakpoints by click in the line number on editor or by right click. When the program is stopped on breakpoint, it's possible to view variables contents with a linedit.
In the editor, F1 call Assistant to show help for the word under the cursor.
In debugging mode, on a breakpoint, the macro pqstring makes it possible to show the contents of QString. That makes it possible to remove the 'qDebug() << myString;' in the code.