Page 2 of 3 FirstFirst 123 LastLast
Results 21 to 40 of 104

Thread: [DevQt] New versions, feature requests and bug reports

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Mar 2006
    Location
    somewhere between France & Germany
    Posts
    34
    Thanks
    1
    Thanked 3 Times in 3 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Post Re: [DevQt] New versions, feature requests and bug reports

    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
    Last edited by Dwarf007; 6th March 2006 at 08:21.

  2. #2
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    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!!!
    Current Qt projects : QCodeEdit, RotiDeCode

  3. #3
    Join Date
    Mar 2006
    Location
    somewhere between France & Germany
    Posts
    34
    Thanks
    1
    Thanked 3 Times in 3 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    It would also be nice to:
    - be able to save the icons menu layout on top of DevQt. (currently a user has to reorder them each time he starts DevQt.)
    - see a horizontal scrollbar in the workspace browser in case the names are to long
    - place bookmarks to jump between specific lines of different files
    - be able to do a column mode text selection (by pressing on shift for instance) when selecting text
    - switch from one file to the other inside the main window by using shift + left arrow or right arrow for instance

    sorry I feel like complaining when writing down some ideas but this are not complaints!
    This are just some suggestions
    Last edited by Dwarf007; 6th March 2006 at 11:03.

  4. #4
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by Dwarf007
    It would also be nice to:
    - be able to save the icons menu layout on top of DevQt. (currently a user has to reorder them each time he starts DevQt.)
    - see a horizontal scrollbar in the workspace browser in case the names are to long
    - place bookmarks to jump between specific lines of different files
    - be able to do a column mode text selection (by pressing on shift for instance) when selecting text
    - switch from one file to the other inside the main window by using shift + left arrow or right arrow for instance

    sorry I feel like complaining when writing down some ideas but this are not complaints!
    This are just some suggestions
    the project browser scrollbar bug is a Qt issue! I think it's solved in Qt 4.1.1, but my not sure...

    saving icons is not a bad idea, thinking about it...
    bookmarks is an interesting feature but it's implementation is not planned soon.

    shift + ( left | right ) would most of the time be caught by the text edit widget....
    Current Qt projects : QCodeEdit, RotiDeCode

  5. #5
    Join Date
    Mar 2006
    Location
    somewhere between France & Germany
    Posts
    34
    Thanks
    1
    Thanked 3 Times in 3 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by fullmetalcoder
    saving icons is not a bad idea, thinking about it...
    bookmarks is an interesting feature but it's implementation is not planned soon.
    shift + ( left | right ) would most of the time be caught by the text edit widget....
    The ideas are just ideas and nothing is urgent as long as it is on a kind of whishlist :-)
    shift+ (left|right) etc. can be replaced with ctrl+ or whatever.. but does features are very handy for keyboard users who don't like to loose time grabing the mouse.

    Don't forget the column mode selection which is a really nice feature (also shift|ctrl|alt.. whatever...)

    Thanks for considering our ideas,
    Daniel

  6. #6
    Join Date
    Jan 2006
    Posts
    371
    Thanks
    14
    Thanked 18 Times in 17 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    L.Marvell,

    Using opera by any chance?

    I used a small library I wrote a year or two ago for generating quick and dirty sites. I still did not manage to get it to work under Opera.

    The site now has problems with Konqueror 3.2.X, and I will see how I address them.

    Firefox works

    The compilation problems have been fixed at revision 33-34, so upgrade your svn.
    Last edited by elcuco; 7th March 2006 at 17:55.

  7. #7
    Join Date
    Feb 2006
    Posts
    18

    Default Re: [DevQt]

    if type "/" in the end of preprocessor line
    devQt(v.0.0.3) crush

    P.S how about different color for ->#include<- and ->"filename.h"<-
    Cut and Run

  8. #8
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt]

    Quote Originally Posted by Hz
    if type "/" in the end of preprocessor line
    devQt(v.0.0.3) crush

    P.S how about different color for ->#include<- and ->"filename.h"<-
    I'll try to fix that bug ASAP but about your PS I don't want to change how the things are done! I mean, compilers handles lines begining by # as preprocessor command, discarding about what they contains and a SH is designed to show how the code is gonna be handled. Thus, highlighting strings inside preprocessor would be something wrong (and it would also require more code )
    Current Qt projects : QCodeEdit, RotiDeCode

  9. #9
    Join Date
    Jan 2006
    Location
    Ukraine, L'viv
    Posts
    57
    Thanks
    3
    Thanked 4 Times in 2 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by elcuco
    L.Marvell,

    Using opera by any chance?

    I used a small library I wrote a year or two ago for generating quick and dirty sites. I still did not manage to get it to work under Opera.

    The site now has problems with Konqueror 3.2.X, and I will see how I address them.

    Firefox works

    The compilation problems have been fixed at revision 33-34, so upgrade your svn.
    Yeah, it seems works fine in Firefox, thanks!
    By the way, I'm registered on sf.net, don't you want to upload DevQt there?

  10. #10
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    uploading at Sf.net ? your question sounds crazy!

    we've got a project openned at Berlios and to upload something at Sf.net we would need creating another there : the result would be an umaintainable project with two kind of contributors (berlios based and sf based) + tow versioning sytems (svn at berlios and cvs at sf.net)
    Current Qt projects : QCodeEdit, RotiDeCode

  11. #11
    Join Date
    Jan 2006
    Location
    Ukraine, L'viv
    Posts
    57
    Thanks
    3
    Thanked 4 Times in 2 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by fullmetalcoder
    uploading at Sf.net ? your question sounds crazy!

    we've got a project openned at Berlios and to upload something at Sf.net we would need creating another there : the result would be an umaintainable project with two kind of contributors (berlios based and sf based) + tow versioning sytems (svn at berlios and cvs at sf.net)
    Ok, don't mind it was just question.

  12. #12
    Join Date
    Jan 2006
    Posts
    21
    Thanks
    1
    Thanked 1 Time in 1 Post
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Hi. Recentrly I've got new version from SVN (revision 32) but it don't want to compile. I've read thread but seem not find solution. The errors look like:

    Qt Code:
    1. g++ -c -pipe -g -Wall -W -D_REENTRANT -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Trolltech/Qt-4.1.0/mkspecs/linux-g++ -I. -I/usr/local/Trolltech/Qt-4.1.0/include/QtCore -I/usr/local/Trolltech/Qt-4.1.0/include/QtGui -I/usr/local/Trolltech/Qt-4.1.0/include -I. -Isrc -Isrc/gui -Isrc/core -Isrc/edit -Itmp/moc -Itmp/ui -o tmp/obj/devlinenumber.o src/edit/devlinenumber.cpp
    2. src/edit/devlinenumber.cpp: In member function ‘virtual void DevLineNumber::paintEvent(QPaintEvent*)’:
    3. src/edit/devlinenumber.cpp:79: error: ‘BlockData’ was not declared in this scope
    4. src/edit/devlinenumber.cpp:79: error: ‘dat’ was not declared in this scope
    5. src/edit/devlinenumber.cpp:79: error: ‘BlockData’ is not a class or namespace
    6. /usr/local/Trolltech/Qt-4.1.0/include/QtGui/qwidget.h:636: error: ‘QWidgetData* QWidget::data’ is private
    7. src/edit/devlinenumber.cpp:79: error: within this context
    8. src/edit/devlinenumber.cpp:79: error: ‘((DevLineNumber*)this)->DevLineNumber::<anonymous>.QWidget::data’ cannot be used as a function
    9. src/edit/devlinenumber.cpp:94: error: ‘BlockData’ is not a class or namespace
    10. src/edit/devlinenumber.cpp:94: error: ‘BreakPoint’ was not declared in this scope
    11. src/edit/devlinenumber.cpp:101: error: ‘BlockData’ is not a class or namespace
    12. src/edit/devlinenumber.cpp:101: error: ‘Error’ was not declared in this scope
    13. make: *** [tmp/obj/devlinenumber.o] Error 1
    To copy to clipboard, switch view to plain text mode 

    Details: Qt-4.1.0, gcc 4.0.2, Fedora Core 4.
    Any suggestions?

  13. #13
    Join Date
    Jan 2006
    Location
    Ukraine, L'viv
    Posts
    57
    Thanks
    3
    Thanked 4 Times in 2 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Unhappy Re: [DevQt] New versions, feature requests and bug reports

    Trying to load http://devqt.berlios.de/ and getting:
    <devqt.berlios.de>

    Error in jsportal.js line: undefined

    undefined : Statement on line 39: Type mismatch (usually a non-object value used where an object is required)
    Backtrace:
    Line 39 of linked script http://devqt.berlios.de/jsportal.js
    xmlInfo.load(InfoXMLFileName);
    Line 13 of inline#1 script in http://devqt.berlios.de/
    window_load("menu.xml", "siteinfo.xml");
    Line 1 of script
    window_setup();
    At unknown location
    [statement source code not available]

  14. #14
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    I can't help you for the web stuff! ask elcuco he is the one that take care of it!

    About compilation of revision 32 it seems you're using the old *.pro file. I thought I removed it... Try the one in the src dir!
    Current Qt projects : QCodeEdit, RotiDeCode

  15. #15
    Join Date
    Mar 2006
    Posts
    48
    Thanks
    5
    Thanked 4 Times in 3 Posts

    Default Re: [DevQt] New versions, feature requests and bug reports

    hey boys
    have u new version?
    wait impatiently for it (case have no IDE at all and must write in console

    i have write my proper editor - very simple but it work yet
    Attached Files Attached Files

  16. #16
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Thanks for giving snippet. I'll have a look ASAP.

    We don't have a real new version yet. The svn trunk has been updated and it works but it will not be maintained anymore (except maybe for some bugs). We are ATM redesigning the app (new relationship scheme, better separation between modules, plugin implementation and so on...) and all of us are quite busy so the next usable release is not planned yet but should come (unless we encounter big problems) before the end of May.
    Current Qt projects : QCodeEdit, RotiDeCode

  17. #17
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Gotcha !

    After a some weeks of thinking and (hard) coding I came to something nice! The new branch of DevQt is now at a beta stage. The internal architecture is now much clearer and flexible; the GUI uses a perspective system and a powerfull MDI library to let the plugins customize the app. Actually (nearly) everything is now done in plugins (a default one being provided to take care of C++/Qt4) :
    - GUI (dock widgets, menubar, toolbars)
    - project management
    - file loading
    - text editing customization (indentation, highlighting, parenthesis matching...)

    The archive has been tested under :
    - Window$ ME, mingw 3.4.2, Qt 4.1.2
    - Suse 10.0, gcc 4.0.2, Qt 4.1.3 snapshot

    If no bug is reported within a week, this archive will become the svn trunk and the developpment will restart at a faster pace.

    P.S : we would greatly appreciate Mac feedback because DevQt is meant to be fully cross platfrom
    Attached Images Attached Images
    Attached Files Attached Files
    Current Qt projects : QCodeEdit, RotiDeCode

  18. #18
    Join Date
    Feb 2006
    Posts
    209
    Thanks
    13
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    I just hope it's not to late to ask it to be simple, so that you can work with just one simple file and not multiple file projects, and that you can use it and do stuff without using qt stuff (i.e. qmake etc.) or having qt installed, and that it will be a great application!

  19. #19
    Join Date
    Mar 2006
    Location
    somewhere between France & Germany
    Posts
    34
    Thanks
    1
    Thanked 3 Times in 3 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Unhappy Re: [DevQt] New versions, feature requests and bug reports

    Unfortunatelly:

    Qt Code:
    1. g++ -Wl,-rpath,/usr/local/Trolltech/Qt-4.1.1/lib -o ../../devqt.bin ../tmp/obj/linux/exec/main.o -L/usr/local/Trolltech/Qt-4.1.1/lib -L".." -ldevqt -lQtGui -L/home/user/tmp/qt-x11-opensource-src-4.1.1/lib -L/usr/X11R6/lib -lpng -lSM -lICE -lXi -lXrender -lXcursor -lXinerama -lfreetype -lfontconfig -lXext -lX11 -lQtCore -lz -lm -ldl -lpthread
    2. ../libdevqt.so: undefined reference to `map()'
    3. collect2: ld returned 1 exit status
    4. make[1]: *** [../../devqt.bin] Erreur 1
    5. make[1]: Leaving directory `/home/user/tmp/devqt-0.3.1/src/exec'
    6. make: *** [sub-exec-make_default] Erreur 2
    To copy to clipboard, switch view to plain text mode 
    • The Manual said the program required Win95 or better, so I installed Linux.
    • Newton was a pessimist.
    • no Risk! no FuN!

  20. #20
    Join Date
    Feb 2006
    Location
    France
    Posts
    50
    Thanked 2 Times in 2 Posts
    Qt products
    Qt3 Qt4
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by evgenM
    hey boys
    have u new version?
    wait impatiently for it (case have no IDE at all and must write in console

    i have write my proper editor - very simple but it work yet
    U can use/test Qt4DS instead

    I go check your last source of DevQt.

    P@sNox,

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.