This is a simple video showing in little steps, how to create a simple Graphic User Interface, programming in C++ using GTKMM Library http://www.gtkmm.org/en/
This library is to develop programs for GNOME, a Graphic Environment for GNU/Linux, but it runs also in MS Windows and MacOSX.
Here I’m using GNU/Linux Ubuntu 11.10 “Oneric Ocelot”
First of all you need install some packages to compile a C++ program. And you need install to gtkmm for developers. You can do it this simple way, under Debian like:
sudo apt-get install build-essential libgtkmm-2.4-dev -y
After install this packages you are able to write programs with graphics interface in C++.
Now, following the video you will see how it is easy.
To compile the command is this:
g++ file_in.cpp -o file_out `pkg-config –libs –cflags gtkmm-2.4`
Thank you.
joseph-soares.com