creating GUI interface in C

Discussion in 'Programming' started by sheelnidhi, Jun 14, 2011.

  1. #1
    Hi friends, i want to know that is it possible to create GUI interface in C or C++ or not??????????
     
    sheelnidhi, Jun 14, 2011 IP
  2. BRUm

    BRUm Well-Known Member

    Messages:
    3,086
    Likes Received:
    61
    Best Answers:
    1
    Trophy Points:
    100
    #2
    Of course it is. You can do just about anything in C/C++. There are much easier and quicker ways to do it, of course.
     
    BRUm, Jun 15, 2011 IP
  3. idlecool

    idlecool Greenhorn

    Messages:
    4
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #3
    Hi sheelnidhi,

    Yes it is possible to develop GUI using C/C++, There are several GUI Toolkits available for GUI developement.

    One of the most popular and cross platform framework/toolkit is Qt. ( http : // en.wikipedia.org/wiki/Qt_(toolkit) )

    If you want to go for much simpler toolkit then try wxwidgets. ( http : // en.wikipedia.org/wiki/WxWidgets )

    Though there are plenty of others, you can search over google/wikipedia for more details, for convenience here is a link: ( http : // en.wikipedia.org/wiki/List_of_widget_toolkits )
     
    idlecool, Jun 15, 2011 IP
  4. Openxcell Inc

    Openxcell Inc Peon

    Messages:
    15
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I think you can create a good GUI using Computer Graphics using Turbo C/C++ editor. For what you want GUI? I mean to say any software or anything.
     
    Openxcell Inc, Jun 18, 2011 IP
  5. The Webby

    The Webby Peon

    Messages:
    1,852
    Likes Received:
    30
    Best Answers:
    1
    Trophy Points:
    0
    #5
    If you are developing for Microsoft Windows, you can also use MFC to create simple and easy GUI in C++. Another option is win32 API, but its overly complicated.
    Ofcourse you need Visual Studio for this. VS express is a free version, but does not support MFC out of the box, however with some tweaking, you can configure MFC with it.
     
    The Webby, Jun 18, 2011 IP
    BRUm likes this.
  6. BRUm

    BRUm Well-Known Member

    Messages:
    3,086
    Likes Received:
    61
    Best Answers:
    1
    Trophy Points:
    100
    #6
    Oh my Win32 API isn't nice. I'm definitely checking out MFC. Thanks for that.
     
    BRUm, Jun 18, 2011 IP