Skip to content

Instantly share code, notes, and snippets.

@angstyloop
Created March 9, 2023 05:30
Show Gist options
  • Select an option

  • Save angstyloop/ce2fada3e5e5cf6bc4ff4aee382a4e7a to your computer and use it in GitHub Desktop.

Select an option

Save angstyloop/ce2fada3e5e5cf6bc4ff4aee382a4e7a to your computer and use it in GitHub Desktop.
/** example-2.c
*
* COMPILE
*
* gcc `pkg-config --cflags gtk4` -o example-2 example-2.c `pkg-config --libs gtk4`
*
* EXAMPLE
*
* ./example-2
*
* SOURCE
*
* https://docs.gtk.org/gtk4/getting_started.html
*/
#include <gtk/gtk.h>
#if GLIB_CHECK_VERSION(2, 74, 0)
static int app_flags = G_APPLICATION_DEFAULT_FLAGS;
#else
static int app_flags = G_APPLICATION_FLAGS_NONE;
#endif
static void print_hello (GtkWidget *widget, gpointer data)
{
g_print("Hello World\n");
}
static void activate(GtkApplication *app, gpointer user_data)
{
GtkWidget *window, *grid, *button;
window = gtk_application_window_new (app);
gtk_window_set_title (GTK_WINDOW (window), "Window");
grid = gtk_grid_new ();
gtk_window_set_child (GTK_WINDOW (window), grid);
button = gtk_button_new_with_label ("Button 1");
g_signal_connect (button, "clicked", G_CALLBACK (print_hello), NULL);
gtk_grid_attach (GTK_GRID (grid), button, 0, 0, 1, 1);
button = gtk_button_new_with_label ("Button 2");
g_signal_connect (button, "clicked", G_CALLBACK (print_hello), NULL);
gtk_grid_attach (GTK_GRID (grid), button, 1, 0, 1, 1);
button = gtk_button_new_with_label ("Quit");
g_signal_connect_swapped (button, "clicked", G_CALLBACK (gtk_window_destroy), window);
gtk_grid_attach (GTK_GRID (grid), button, 0, 1, 2, 1);
gtk_widget_show (window);
}
int main (int argc, char **argv)
{
GtkApplication *app;
int status;
app = gtk_application_new ("org.gtk.example", app_flags);
g_signal_connect(app, "activate", G_CALLBACK (activate), NULL);
status = g_application_run (G_APPLICATION (app), argc, argv);
g_object_unref (app);
return status;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment