From 5bb187381105c326e33c766923c9d30ad6fbbfa7 Mon Sep 17 00:00:00 2001 From: luke zeller Date: Fri, 17 Apr 2020 11:05:39 -0400 Subject: [PATCH] initial commit --- program.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 program.cpp diff --git a/program.cpp b/program.cpp new file mode 100644 index 0000000..59d4b1e --- /dev/null +++ b/program.cpp @@ -0,0 +1,28 @@ +#include +#include +#include + +using namespace std; + +static void activate(GtkApplication* app, gpointer user_data) +{ + GtkWidget *window; + + window = gtk_application_window_new(app); + gtk_window_set_title (GTK_WINDOW(window), "z80 screen test"); + gtk_window_set_default_size(GTK_WINDOW(window), 320, 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; +}