2011-01-19 04:01:16 +00:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_hello (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
g_print ("Hello World\n");
|
|
|
|
}
|
|
|
|
|
2015-02-14 20:24:20 +00:00
|
|
|
static void
|
|
|
|
activate (GtkApplication *app,
|
|
|
|
gpointer user_data)
|
2011-01-19 04:01:16 +00:00
|
|
|
{
|
|
|
|
GtkWidget *window;
|
|
|
|
GtkWidget *grid;
|
|
|
|
GtkWidget *button;
|
|
|
|
|
|
|
|
/* create a new window, and set its title */
|
2015-02-14 20:24:20 +00:00
|
|
|
window = gtk_application_window_new (app);
|
|
|
|
gtk_window_set_title (GTK_WINDOW (window), "Window");
|
2011-01-19 04:01:16 +00:00
|
|
|
|
|
|
|
/* Here we construct the container that is going pack our buttons */
|
|
|
|
grid = gtk_grid_new ();
|
|
|
|
|
|
|
|
/* Pack the container in the window */
|
2020-05-02 21:26:54 +00:00
|
|
|
gtk_window_set_child (GTK_WINDOW (window), grid);
|
2011-01-19 04:01:16 +00:00
|
|
|
|
|
|
|
button = gtk_button_new_with_label ("Button 1");
|
|
|
|
g_signal_connect (button, "clicked", G_CALLBACK (print_hello), NULL);
|
|
|
|
|
|
|
|
/* Place the first button in the grid cell (0, 0), and make it fill
|
|
|
|
* just 1 cell horizontally and vertically (ie no spanning)
|
|
|
|
*/
|
|
|
|
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);
|
|
|
|
|
|
|
|
/* Place the second button in the grid cell (1, 0), and make it fill
|
|
|
|
* just 1 cell horizontally and vertically (ie no spanning)
|
|
|
|
*/
|
|
|
|
gtk_grid_attach (GTK_GRID (grid), button, 1, 0, 1, 1);
|
|
|
|
|
|
|
|
button = gtk_button_new_with_label ("Quit");
|
2020-05-09 14:26:22 +00:00
|
|
|
g_signal_connect_swapped (button, "clicked", G_CALLBACK (gtk_window_destroy), window);
|
2011-01-19 04:01:16 +00:00
|
|
|
|
|
|
|
/* Place the Quit button in the grid cell (0, 1), and make it
|
|
|
|
* span 2 columns.
|
|
|
|
*/
|
|
|
|
gtk_grid_attach (GTK_GRID (grid), button, 0, 1, 2, 1);
|
|
|
|
|
2022-11-29 11:35:40 +00:00
|
|
|
gtk_window_present (GTK_WINDOW (window));
|
2011-01-19 04:01:16 +00:00
|
|
|
|
2015-02-14 20:24:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2011-01-19 04:01:16 +00:00
|
|
|
|
2015-02-14 20:24:20 +00:00
|
|
|
return status;
|
2011-01-19 04:01:16 +00:00
|
|
|
}
|