Last active
October 7, 2023 09:12
-
-
Save vic3t3chn0/2e082126a7f89330f04cf2b10ba6e8c2 to your computer and use it in GitHub Desktop.
gtk macos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mainwindow.cc: | |
#include <gtk/gtk.h> | |
static void | |
activate (GtkApplication* app, | |
gpointer user_data) | |
{ | |
GtkWidget *window; | |
window = gtk_application_window_new (app); | |
gtk_window_set_title (GTK_WINDOW (window), "Window"); | |
gtk_window_set_default_size (GTK_WINDOW (window), 200, 200); | |
gtk_widget_show_all (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; | |
} | |
in the end use : | |
gcc `pkg-config --cflags gtk+-3.0` -o example-0 mainwindow.cc `pkg-config --libs gtk+-3.0` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment