PDA

View Full Version : GUI help



Gihan Lakmal
March 23rd, 2011, 08:04 PM
I want to create GUI for my C based application in Ubuntu. What is the easiest and fastest way to create GUI for C based applications.

andrew1992
March 23rd, 2011, 08:54 PM
I want to create GUI for my C based application in Ubuntu. What is the easiest and fastest way to create GUI for C based applications.
I would personally go with Glade Interface Designer and GTK+, which is easy to use with C. Here is a very good tutorial: http://www.micahcarrick.com/gtk-glade-tutorial-part-1.html

nvteighen
March 23rd, 2011, 10:34 PM
Just be aware that if you want something like the "KDE look", you won't be able to do it in C because the underlying Qt GUI toolkit used there is for C++.

But, if you are thinking about GNOME or any other "GTK+-oriented" (ugh... I've coined a new term...) Desktop Environment, C will do. And the best would be to use Glade or some visual GUI designer for creating the layout.

Gihan Lakmal
March 31st, 2011, 08:12 AM
Thans for all for your kindly reply .....=D>