Results 1 to 16 of 16

Thread: HiQt the best IDE for Qt4?

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Aug 2007
    Location
    Russia
    Posts
    19
    Thanks
    1
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: HiQt the best IDE for Qt4?

    IMHO Visual Studio 2005 SP1 + Visual Assist X 10.3 is the best. If you will implement all features of Visual Assist, I'll use HiQt )) Try it and you will understand me... After using it, all other editors with code completion looks like Windows Notepad...

  2. #2
    Join Date
    Feb 2007
    Location
    Philadelphia, USA
    Posts
    255
    Thanks
    43
    Thanked 21 Times in 21 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: HiQt the best IDE for Qt4?

    Quote Originally Posted by Wizard View Post
    IMHO Visual Studio 2005 SP1 + Visual Assist X 10.3 is the best. If you will implement all features of Visual Assist, I'll use HiQt )) Try it and you will understand me... After using it, all other editors with code completion looks like Windows Notepad...
    Hi Wizard. I judge from your name that, if possible, you would like Microsoft to create your program for you -- (just a funny observation)

    Remember that notepad serves a purpose too. Most Visual Studio users will resort to editing with notepad on occassion. Why? Because it's lightweight and they know exactly what they are doing to their file. That's the idea of HiQt... you know what it's doing to your project (i.e. nothing). Editing with visual studio is a one way street... load your project in there, and you've lost control of your .pro file. Then you might also start using microsoft-dependent libraries... then you may have lost chance to be open source.... as we saw in a recent post.

    JM

  3. #3
    Join Date
    Jun 2007
    Location
    India
    Posts
    1,042
    Thanks
    8
    Thanked 133 Times in 128 Posts
    Qt products
    Qt3 Qt4 Qt/Embedded
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: HiQt the best IDE for Qt4?

    Quote Originally Posted by Wizard View Post
    IMHO Visual Studio 2005 SP1 + Visual Assist X 10.3 is the best. If you will implement all features of Visual Assist, I'll use HiQt )) Try it and you will understand me... After using it, all other editors with code completion looks like Windows Notepad...

    i use the same.. and i think u are very rite... nothing beats that combination.. but the point is.... both vs and vax comes at a price... which not everybody can afford so if someone makes an attempt to do something we should appriciate it...

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

    Default Re: HiQt the best IDE for Qt4?

    is there code completion? if yes, how to get it to work?
    I wrote a class
    class foo()
    {
    int bar();
    }

    but starting to write the .cpp file didn't show anything when I started to write

    int foo::ba


    Edit:
    After som fiddeling with ctags, I got code completion to work better, still not perfect, but a lot better than I've got it to work in qdevelop.
    Last edited by Morea; 1st September 2007 at 18:54.

  5. #5
    Join Date
    Feb 2007
    Location
    Philadelphia, USA
    Posts
    255
    Thanks
    43
    Thanked 21 Times in 21 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: HiQt the best IDE for Qt4?

    Quote Originally Posted by Morea View Post
    is there code completion? if yes, how to get it to work?
    I wrote a class
    class foo()
    {
    int bar();
    }

    but starting to write the .cpp file didn't show anything when I started to write

    int foo::ba


    Edit:
    After som fiddeling with ctags, I got code completion to work better, still not perfect, but a lot better than I've got it to work in qdevelop.
    Morea, I'm glad you got it working somewhat satisfactorily. I assume you are using Linux... on windows it should work out of the box. On linux, you need to make sure you are pointing to an updated version of ctags.

    Feel free to send me instances where code completion does not work - I am aware of some already, but always good to get feedback.

  6. #6
    Join Date
    Jul 2006
    Posts
    8
    Thanks
    1
    Thanked 1 Time in 1 Post
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: HiQt the best IDE for Qt4?

    Hi magland,

    I just downloaded the Alpha Version of HaiQ IDE and got more than I expected. Thank you for the great work.

    HaiQ is small, easy and stable. The help function is the fastest I have seen and the code completion works fine. I love it.

    What I don 't love is, that HaiQ seems to write something to the registry.

    Is that really necessary?

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

    Default Re: HiQt the best IDE for Qt4?

    something strange:

    completion work for cause
    Qt Code:
    1. str.append("a").
    To copy to clipboard, switch view to plain text mode 
    but not for
    Qt Code:
    1. str.split("a").
    To copy to clipboard, switch view to plain text mode 
    what the difference?

  8. #8
    Join Date
    Feb 2007
    Location
    Philadelphia, USA
    Posts
    255
    Thanks
    43
    Thanked 21 Times in 21 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: HiQt the best IDE for Qt4?

    Quote Originally Posted by evgenM View Post
    something strange:

    completion work for cause
    Qt Code:
    1. str.append("a").
    To copy to clipboard, switch view to plain text mode 
    but not for
    Qt Code:
    1. str.split("a").
    To copy to clipboard, switch view to plain text mode 
    what the difference?
    The reason is that in the Qt source qstring.h, the function split() is declared as
    Qt Code:
    1. QStringList split(const QChar &sep, SplitBehavior behavior = KeepEmptyParts,
    2. Qt::CaseSensitivity cs = Qt::CaseSensitive) const Q_REQUIRED_RESULT;
    To copy to clipboard, switch view to plain text mode 
    and ctags gets confused by the Q_REQUIRED_RESULT macro. Thanks for reporting it, evgenM, I'll try to fix that problem.

  9. #9
    Join Date
    Feb 2007
    Location
    Philadelphia, USA
    Posts
    255
    Thanks
    43
    Thanked 21 Times in 21 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: HiQt the best IDE for Qt4?

    EvgenM:

    That problem with code completion has been fixed, download updated HaiQ here.
    edit: (actually don't because I had to revert to a previous version due to an unrelated problem... sorry)

    edit: okay, should work now, let me know.
    Last edited by magland; 6th September 2007 at 20:51.

  10. #10
    Join Date
    Feb 2007
    Location
    Philadelphia, USA
    Posts
    255
    Thanks
    43
    Thanked 21 Times in 21 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: HiQt the best IDE for Qt4?

    Due to name change, this thread will be closed, and the discussion will continue in a separate thread.

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.