2024-05-07 20:48:01 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* E coli by David S. Goodsell (2009) */
|
|
|
|
/* --- */
|
|
|
|
/* Let this freeze frame guide us towards the model */
|
|
|
|
/* that alone can account for the phenomenon ! */
|
|
|
|
/* */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2024-06-02 13:13:37 +02:00
|
|
|
#include "callback.h"
|
2024-04-22 20:09:37 +02:00
|
|
|
|
2024-04-28 08:38:55 +02:00
|
|
|
int main (int argc, char **argv)
|
2024-04-22 18:50:52 +02:00
|
|
|
{
|
2024-04-20 11:17:01 +02:00
|
|
|
GtkApplication *app;
|
|
|
|
int status;
|
|
|
|
|
2024-06-02 15:49:39 +02:00
|
|
|
app = gtk_application_new ("org.jean.GTK4_GG_hack", G_APPLICATION_DEFAULT_FLAGS);
|
2024-06-07 23:34:08 +02:00
|
|
|
g_signal_connect (app, "activate", G_CALLBACK (on_main_window_activation), NULL);
|
2024-04-20 11:17:01 +02:00
|
|
|
status = g_application_run (G_APPLICATION (app), argc, argv);
|
|
|
|
g_object_unref (app);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|