From ce1cbb1ec0c2ca72457fedb88aef870b9a5036fd Mon Sep 17 00:00:00 2001 From: monsta Date: Tue, 22 Nov 2016 00:00:24 +0300 Subject: move to GTK+3 (>= 3.14), drop GTK+2 code and --with-gtk build option and require mate-panel >= 1.17 --- src/gpm-statistics.c | 44 -------------------------------------------- 1 file changed, 44 deletions(-) (limited to 'src/gpm-statistics.c') diff --git a/src/gpm-statistics.c b/src/gpm-statistics.c index 21a0a52..af24fbb 100644 --- a/src/gpm-statistics.c +++ b/src/gpm-statistics.c @@ -33,9 +33,6 @@ #include "egg-debug.h" #include "egg-color.h" #include "egg-array-float.h" -#if !GTK_CHECK_VERSION (3, 0, 0) -#include "egg-unique.h" -#endif #include "gpm-common.h" #include "gpm-icon-names.h" @@ -1177,17 +1174,11 @@ gpm_stats_devices_treeview_clicked_cb (GtkTreeSelection *selection, gboolean dat * gpm_stats_window_activated_cb **/ static void -#if GTK_CHECK_VERSION (3, 0, 0) gpm_stats_window_activated_cb (GtkApplication *app, gpointer data) -#else -gpm_stats_window_activated_cb (EggUnique *egg_unique, gpointer data) -#endif { GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (builder, "dialog_stats")); -#if GTK_CHECK_VERSION (3, 0, 0) gtk_application_add_window (GTK_APPLICATION (app), GTK_WINDOW (widget)); -#endif gtk_window_present (GTK_WINDOW (widget)); } @@ -1571,12 +1562,8 @@ main (int argc, char *argv[]) GtkBox *box; GtkWidget *widget, *window; GtkTreeSelection *selection; -#if GTK_CHECK_VERSION (3, 0, 0) GtkApplication *app; gint status; -#else - EggUnique *egg_unique; -#endif gboolean ret; UpClient *client; GPtrArray *devices = NULL; @@ -1617,21 +1604,9 @@ main (int argc, char *argv[]) egg_debug_init (verbose); gtk_init (&argc, &argv); -#if GTK_CHECK_VERSION (3, 0, 0) app = gtk_application_new ("org.mate.PowerManager.Statistics", 0); -#else - /* are we already activated? */ - egg_unique = egg_unique_new (); - ret = egg_unique_assign (egg_unique, "org.mate.PowerManager.Statistics"); - if (!ret) - goto unique_out; -#endif -#if GTK_CHECK_VERSION (3, 0, 0) g_signal_connect (app, "activate", -#else - g_signal_connect (egg_unique, "activated", -#endif G_CALLBACK (gpm_stats_window_activated_cb), NULL); /* add application specific icons to search path */ @@ -1669,13 +1644,8 @@ main (int argc, char *argv[]) /* Get the main window quit */ widget = GTK_WIDGET (gtk_builder_get_object (builder, "button_close")); -#if GTK_CHECK_VERSION (3, 0, 0) g_signal_connect_swapped (window, "delete_event", G_CALLBACK (gtk_widget_destroy), window); g_signal_connect_swapped (widget, "clicked", G_CALLBACK (gtk_widget_destroy), window); -#else - g_signal_connect_swapped (window, "delete_event", G_CALLBACK (gtk_main_quit), NULL); - g_signal_connect_swapped (widget, "clicked", G_CALLBACK (gtk_main_quit), NULL); -#endif gtk_widget_grab_default (widget); widget = GTK_WIDGET (gtk_builder_get_object (builder, "button_help")); @@ -1877,12 +1847,7 @@ main (int argc, char *argv[]) widget = GTK_WIDGET (gtk_builder_get_object (builder, "dialog_stats")); -#if GTK_CHECK_VERSION (3, 0, 0) status = g_application_run (G_APPLICATION (app), argc, argv); -#else - gtk_widget_show (widget); - gtk_main (); -#endif #if !UP_CHECK_VERSION(0, 99, 0) out: #endif @@ -1894,16 +1859,7 @@ out: g_object_unref (wakeups); g_object_unref (builder); g_object_unref (list_store_info); -#if GTK_CHECK_VERSION (3, 0, 0) g_object_unref (app); -#else -unique_out: - g_object_unref (egg_unique); -#endif g_free (last_device); -#if GTK_CHECK_VERSION (3, 0, 0) return status; -#else - return 0; -#endif } -- cgit v1.2.1