View Poll Results: Do you use the designer for your gui?

Voters
662. You may not vote on this poll
  • Always. I almost don't know how to layout widgets manually.

    193 29.15%
  • Designer? What is that? Nope, never use it.

    111 16.77%
  • Depends and the task. Sometimes yes, sometimes no.

    358 54.08%
Page 4 of 5 FirstFirst ... 2345 LastLast
Results 61 to 80 of 81

Thread: Do you use the designer, or do you code your gui manually?

  1. #61
    Join Date
    Apr 2009
    Posts
    18
    Thanks
    4
    Qt products
    Qt4
    Platforms
    Unix/X11

    Smile Re: Do you use the designer, or do you code your gui manually?

    I do use designer to design the rack, espencially in project, but i will code my gui manually if the gui is small

  2. #62
    Join Date
    Oct 2009
    Posts
    25
    Thanks
    1
    Thanked 1 Time in 1 Post
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    Sometimes it easier to write code manually, then use QtDesigner. However, use of QtDesigner almost always much faster.
    To write GUI code manually is a good way to learn C++ and Qt I think.

  3. #63
    Join Date
    Mar 2008
    Location
    France
    Posts
    149
    Thanks
    2
    Thanked 21 Times in 21 Posts
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    Never... 100% .
    Better control when you think on your own.

  4. #64
    Join Date
    Apr 2010
    Posts
    769
    Thanks
    1
    Thanked 94 Times in 86 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11

    Default Re: Do you use the designer, or do you code your gui manually?

    I use both. I reach for the designer when I'm putting together a fairly large GUI - like the main application, or a tab set - where the emphasis is on the look and feel. Doing layouts manually, especially complicated ones, is tedious drudgery, and the tedium contributes to corner cutting. With designer, nearly all user visible strings are automatically wrapped in tr() calls, and I have the properties and other settings of the entire inheritance tree available at my fingertips. Much faster, much more conducive to getting things right the first time, and much less error prone than hand coding. And a lot more fun, unless you like the endless, mind-numbing repetition large, nested layouts involve.

    Where behavior is paramount, or the task is very small, I find it easier to code by hand.

    It isn't unusual for me to use a blended approach - doing a raft of moderately small layouts in designer, then assembling them by hand.

    If designer provided a transparent way to insert code while dragging widget components around, my text editor would get a lot less use. I guess this is partly what Creator can do, but sadly there is no way to get Creator to compile in a Solaris environment, thanks to the balky presence, of WebKit. But maybe some day...

  5. #65
    Join Date
    Oct 2007
    Location
    Warminster, England
    Posts
    31
    Thanks
    17
    Qt products
    Qt5
    Platforms
    Unix/X11 Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    As a relative newbie, I find the Qt4 designer an excellent tool, and use it for all my gui projects.

  6. #66
    Join Date
    May 2010
    Posts
    7
    Thanks
    2
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11

    Default Re: Do you use the designer, or do you code your gui manually?

    Yes I do all the time. Mostly from within QtCreator. I wish it resolved few issues like settiing widgets in the status bar, make a widget a central widget and a few other minor issues.

    Muz

  7. #67
    Join Date
    Jun 2010
    Posts
    2
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    I'm looking forward QML, I really liked using Xaml while programming in C#+WPF so I hope QML to be as good as that
    Daniele
    I Qt 4.6

  8. #68
    Join Date
    Sep 2010
    Posts
    45
    Thanks
    8
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    I'm using designer.

    But I prefer to write the signal -> slot connection manually and normally I prefer to edit the menus manually.

  9. #69
    Join Date
    Feb 2011
    Posts
    3
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    In 99% of tasks I use designer. Manually, I only write very tiny pieces of GUI (ie. customized input dialogues).

  10. #70
    Join Date
    Jun 2011
    Posts
    1
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    I tend to have a much easier time designing in code.

  11. #71
    Join Date
    Aug 2011
    Location
    Seoul, Korea
    Posts
    46
    Thanks
    9
    Thanked 5 Times in 5 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    I use Designer most of time except the cases requiring special treatments. For example, when I extend a QWidget and the constructor requires different set of parameters then I need to delete the widget instance created by setupUI() and recreate my own. Wondering whether there is a better way that this.
    Dong Back Kim

  12. #72
    Join Date
    Jun 2011
    Location
    Chennai, India
    Posts
    30
    Thanks
    13
    Thanked 6 Times in 3 Posts
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    Using designer, it is not possible to add widgets to a QToolbar. This is one of the shortcomings.

  13. #73
    Join Date
    Sep 2011
    Posts
    14
    Thanks
    1
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: Do you use the designer, or do you code your gui manually?

    I absolutely hate designer's ui file and the files it generates. The ui files forces things to be stored too separately. This is very frustrating when I'm debugging. Too much bouncing between ui files and cpp files. It's an organizational nightmare as far as I'm concerned. So, when I use Designer I will typically use it to layout my widgets and verify I'm getting the resizing behavior that I want. Then I write the code manually. It makes code maintenance a lot simpler.

  14. #74
    Join Date
    Jan 2012
    Location
    Canary Islands, Spain
    Posts
    86
    Thanks
    4
    Qt products
    Qt4 Qt5
    Platforms
    Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    Designer is a god's sent
    its make it all easy and fast.

  15. #75
    Join Date
    Sep 2009
    Location
    Aachen, Germany
    Posts
    60
    Thanks
    2
    Thanked 7 Times in 7 Posts
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    Most of the time I use the Designer, as we have someone in our team who works on ui's and can't code

  16. #76
    Join Date
    Jan 2012
    Location
    Iran, Tehran
    Posts
    308
    Thanks
    75
    Thanked 24 Times in 21 Posts
    Qt products
    Qt4 Qt5 PyQt3 PyQt4
    Platforms
    Unix/X11 Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    Using designer make codes neat and simpler Previously I've always used to work in code but recently i've found that it's better to do it in designer

  17. #77
    Join Date
    Jan 2013
    Location
    Poland
    Posts
    4
    Thanks
    1
    Thanked 3 Times in 1 Post
    Qt products
    Qt4 Qt5 Qt/Embedded
    Platforms
    MacOS X Unix/X11 Windows Android Maemo/MeeGo

    Default Re: Do you use the designer, or do you code your gui manually?

    If you don't use the help of designer, I recommend to do so .Start with me for example I always try to combine beauty with intuition, and QML is by far my favorite language. I provide a complete UI solutions starting from the graphic design to the finished and polished QML files (including animations). Feel free to contact me
    Last edited by wysota; 1st April 2013 at 15:36. Reason: removed URLs

  18. #78
    Join Date
    Jan 2012
    Location
    Iran, Tehran
    Posts
    308
    Thanks
    75
    Thanked 24 Times in 21 Posts
    Qt products
    Qt4 Qt5 PyQt3 PyQt4
    Platforms
    Unix/X11 Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    But QtDesigner has long way to be completed

  19. The following user says thank you to alizadeh91 for this useful post:

    Hossein (21st October 2015)

  20. #79
    Join Date
    Nov 2014
    Posts
    32
    Thanked 1 Time in 1 Post
    Qt products
    Platforms
    Windows

    Default Re: Do you use the designer, or do you code your gui manually?

    Depends and the task. Sometimes yes, sometimes no.

  21. #80
    Join Date
    Jan 2015
    Posts
    3
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: Do you use the designer, or do you code your gui manually?

    I code my gui manually.

Similar Threads

  1. Qt Cryptographic Architecture
    By vermarajeev in forum Qt Programming
    Replies: 6
    Last Post: 9th February 2007, 14:15
  2. Replies: 13
    Last Post: 15th December 2006, 12:52
  3. Problem closing a QMainWindow in Qt4.2
    By ian in forum Qt Programming
    Replies: 11
    Last Post: 17th October 2006, 01:49
  4. Where is code file
    By safknw in forum Qt Tools
    Replies: 21
    Last Post: 20th June 2006, 11:08

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.