Skip to content

Instantly share code, notes, and snippets.

@vonnenaut
Last active August 3, 2021 15:18
Show Gist options
  • Save vonnenaut/210d32622a67d98d09c1611f01cc3aa5 to your computer and use it in GitHub Desktop.
Save vonnenaut/210d32622a67d98d09c1611f01cc3aa5 to your computer and use it in GitHub Desktop.
GTK C Development for Ubuntu Linux

GTK Development for Linux Desktop

sudo apt-get install libgtk-3-dev

Hello World app

https://www.gtk.org/docs/getting-started/hello-world/

#include <gtk/gtk.h>

static void
print_hello (GtkWidget *widget,
             gpointer   data)
{
  g_print ("Hello World\n");
}

static void
activate (GtkApplication *app,
          gpointer        user_data)
{
  GtkWidget *window;
  GtkWidget *button;

  window = gtk_application_window_new (app);
  gtk_window_set_title (GTK_WINDOW (window), "Window");
  gtk_window_set_default_size (GTK_WINDOW (window), 200, 200);

  button = gtk_button_new_with_label ("Hello World");
  g_signal_connect (button, "clicked", G_CALLBACK (print_hello), NULL);
  gtk_window_set_child (GTK_WINDOW (window), button);

  gtk_window_present (GTK_WINDOW (window));
}

int
main (int    argc,
      char **argv)
{
  GtkApplication *app;
  int status;

  app = gtk_application_new ("org.gtk.example", G_APPLICATION_FLAGS_NONE);
  g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
  status = g_application_run (G_APPLICATION (app), argc, argv);
  g_object_unref (app);

  return status;
}
gcc `pkg-config --cflags gtk+-3.0` -o hello-world-gtk hello-world-gtk.c `pkg-config --libs gtk+-3.0`
</details>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment