C++ GUI Library

Frequently asked questions

(This section is still largely incomplete. Your questions will help to complete it :-))

Index

How do I create a simple window?

Try the following sample code:

#include <gui/gui.hpp>

using namespace gui;

int main(int argc, char* argv[])
{
    window w("My Window");
    wait_for_signal(w.delete_signal());
}