Quote Originally Posted by Dwarf007
Hi fullmetalcoder,

I quickly went through this thread and tested DevQt myself.
Your project looks very promissing !!

My first suggestion would be to separate the *.ccp, *.h and *.ui files
on the workspace filebrowser

I also noticed a problem when double clicking on a file of this workspace it is opened in the main window. If you then close this window (of the just opened file) and double click again on the same file in the workspace: DevQt will crash instead of opening the file again. (tested several times and easy to reproduce).

Something else:
What about merging seneca's QSA script programming IDE with DevQt IDE ?

Daniel
The crash that comes from file openning has been fixed in version 0.0.3.0 (can be found on svn) simply by using QPointer.

Separating files by type will not be done automatically. But thanks to the complexity of .pro format, it is now possible to create folders, and even nested one!!!

Qt Code:
  1. CONFIG += sources headers forms
  2.  
  3. sources {
  4. SOURCES += ...
  5. }
  6.  
  7. headers {
  8. HEADERS += ...
  9. }
  10.  
  11. forms {
  12. FORMS += ...
  13. }
To copy to clipboard, switch view to plain text mode 

A project such as the one above will be show files sorted in 3 folders and qmake will generate a makefile flawlessly. Enjoy!!!