Skip to content

Gtk Hello World in Qt C++

Thursday, 14 July 2011  |  richard dale

Recently I've been working on the smoke-gobject bindings in the evenings and weekends. Although I'm working on other things for my job at Codethink during the day, I'm sufficiently excited about these bindings to be unable to stop spending my free time on them. This is at the expense of working on the new version 3.0 of QtRuby sadly. I'll try to explain on this blog why I think the Smoke/GObject bindings will be important for the parties attending the forthcoming Desktop Summit to consider, and why I'm giving them a higher priority than Ruby.

As the title of the blog suggests I've just got a Gtk Hello World working, written in Qt. Here is the code:


#include <QtCore/QObject>
#include <gdk.h>

class MyObject : public QObject { Q_OBJECT public: MyObject(QObject *parent = 0); public slots: void hello(); bool deleteEvent(Gdk::Event e); void destroy(); }; ...

#include <QtCore/qdebug.h> #include <gtk.h>

#include "myobject.h"

MyObject::MyObject(QObject *parent) : QObject(parent) { }

void MyObject::hello() { qDebug() << "Hello World"; }

bool MyObject::deleteEvent(Gdk::Event e) { qDebug() << "delete event occurred"; return true; }

void MyObject::destroy() { Gtk::mainQuit(); } ...

#include <gtk.h> #include <gtk_window.h> #include <gtk_button.h>

#include <QtCore/qobject.h>

#include "myobject.h"

int main(int argc, char *argv[]) { Gtk::init(argc, argv);

MyObject obj;

Gtk::Window *window = new Gtk::Window(Gtk::WindowTypeToplevel);
window-&gt;setBorderWidth(10);
QObject::connect(window, SIGNAL(deleteEvent(Gdk::Event)),
                 &obj, SLOT(deleteEvent(Gdk::Event)));
QObject::connect(window, SIGNAL(destroy()), &obj, SLOT(destroy()));

Gtk::Button *button = Gtk::Button::createWithLabel("Hello World");
QObject::connect(button, SIGNAL(clicked()), &obj, SLOT(hello()));
QObject::connect(button, SIGNAL(clicked()), window, SLOT(destroy()));

window-&gt;slotAdd(button);
button-&gt;slotShow();
window-&gt;slotShow();

Gtk::main();

return 0;

}

You can compare the Gtk C equivalent example code in this Getting Started Gtk tutorial. I could spend lots of space explaining what it is all about, but anyone familiar with Qt programming ought to be able to understand the code without any explanation - that is the clever thing in fact!

This demonstrates that an auto-generated binding for GObject libraries described by GObject Introspection .gir files can seamlessly inter-operate with Qt libraries. And it looks much the same as a native Qt library to a Qt programmer.

Normally a language binding for Gtk that allows you to write an app to show a hello world button is a fine thing. But those normal language bindings don't mean that you have united two of the major Linux desktop communities, they just mean that you can write Gtk programs in the language of your choice. So to me, this latest binding is different in kind; it is an opportunity to integrate both libraries and communities, and it isn't limited to being able to program Gtk in your latest nifty language.

I'm going to the the Smoke GObject Launchpad project. See the README file for an explanation of what to do with them.