[gimp/gtk3-port: 13/234] libgimpwidgets: remove deprecated files completely
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 13/234] libgimpwidgets: remove deprecated files completely
- Date: Tue, 15 Nov 2016 17:57:34 +0000 (UTC)
commit 5a4a3a3df15ef73dfd8714cfdade45542e9e97df
Author: Michael Natterer <mitch gimp org>
Date: Fri Oct 15 11:41:27 2010 +0200
libgimpwidgets: remove deprecated files completely
libgimpwidgets/gimpoldwidgets.c | 650 --------------------------------------
libgimpwidgets/gimpoldwidgets.h | 122 -------
libgimpwidgets/gimppixmap.c | 179 -----------
libgimpwidgets/gimppixmap.h | 78 -----
libgimpwidgets/gimppropwidgets.c | 14 -
libgimpwidgets/gimpquerybox.c | 1 -
libgimpwidgets/gimpunitmenu.c | 637 -------------------------------------
libgimpwidgets/gimpunitmenu.h | 105 ------
libgimpwidgets/gimpwidgets.c | 63 ----
9 files changed, 0 insertions(+), 1849 deletions(-)
---
diff --git a/libgimpwidgets/gimppropwidgets.c b/libgimpwidgets/gimppropwidgets.c
index e34b66d..8e72875 100644
--- a/libgimpwidgets/gimppropwidgets.c
+++ b/libgimpwidgets/gimppropwidgets.c
@@ -29,14 +29,6 @@
#include "libgimpbase/gimpbase.h"
#include "libgimpconfig/gimpconfig.h"
-#include "gimpwidgetstypes.h"
-
-#undef GIMP_DISABLE_DEPRECATED
-#include "gimpoldwidgets.h"
-#include "gimppropwidgets.h"
-#include "gimpunitmenu.h"
-
-#define GIMP_DISABLE_DEPRECATED
#include "gimpwidgets.h"
#include "libgimp/libgimp-intl.h"
@@ -164,8 +156,6 @@ gimp_prop_check_button_callback (GtkWidget *widget,
param_spec->name,
gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)),
NULL);
-
- gimp_toggle_button_sensitive_update (GTK_TOGGLE_BUTTON (widget));
}
static void
@@ -186,7 +176,6 @@ gimp_prop_check_button_notify (GObject *config,
config);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), value);
- gimp_toggle_button_sensitive_update (GTK_TOGGLE_BUTTON (button));
g_signal_handlers_unblock_by_func (button,
gimp_prop_check_button_callback,
@@ -295,8 +284,6 @@ gimp_prop_enum_check_button_callback (GtkWidget *widget,
NULL);
gtk_toggle_button_set_inconsistent (GTK_TOGGLE_BUTTON (widget), FALSE);
-
- gimp_toggle_button_sensitive_update (GTK_TOGGLE_BUTTON (widget));
}
static void
@@ -334,7 +321,6 @@ gimp_prop_enum_check_button_notify (GObject *config,
config);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), active);
- gimp_toggle_button_sensitive_update (GTK_TOGGLE_BUTTON (button));
g_signal_handlers_unblock_by_func (button,
gimp_prop_enum_check_button_callback,
diff --git a/libgimpwidgets/gimpquerybox.c b/libgimpwidgets/gimpquerybox.c
index 6c8489a..74786ce 100644
--- a/libgimpwidgets/gimpquerybox.c
+++ b/libgimpwidgets/gimpquerybox.c
@@ -29,7 +29,6 @@
#include "gimpwidgetstypes.h"
#include "gimpdialog.h"
-#include "gimppixmap.h"
#include "gimpquerybox.h"
#include "gimpsizeentry.h"
#include "gimpwidgets.h"
diff --git a/libgimpwidgets/gimpwidgets.c b/libgimpwidgets/gimpwidgets.c
index 4f59b4c..08ceddb 100644
--- a/libgimpwidgets/gimpwidgets.c
+++ b/libgimpwidgets/gimpwidgets.c
@@ -33,10 +33,6 @@
#include "libgimp/libgimp-intl.h"
-/* hack: declare prototype here instead of #undef GIMP_DISABLE_DEPRECATED */
-void gimp_toggle_button_sensitive_update (GtkToggleButton *toggle_button);
-
-
/**
* SECTION: gimpwidgets
* @title: GimpWidgets
@@ -834,61 +830,10 @@ gimp_coordinates_new (GimpUnit unit,
*/
/**
- * gimp_toggle_button_sensitive_update:
- * @toggle_button: The #GtkToggleButton the "set_sensitive" and
- * "inverse_sensitive" lists are attached to.
- *
- * If you attached a pointer to a #GtkWidget with g_object_set_data() and
- * the "set_sensitive" key to the #GtkToggleButton, the sensitive state of
- * the attached widget will be set according to the toggle button's
- * "active" state.
- *
- * You can attach an arbitrary list of widgets by attaching another
- * "set_sensitive" data pointer to the first widget (and so on...).
- *
- * This function can also set the sensitive state according to the toggle
- * button's inverse "active" state by attaching widgets with the
- * "inverse_sensitive" key.
- *
- * Deprecated: use g_object_bind_property() instead of using the
- * "set_sensitive" and "inverse_sensitive" data pointers.
- **/
-void
-gimp_toggle_button_sensitive_update (GtkToggleButton *toggle_button)
-{
- GtkWidget *set_sensitive;
- gboolean active;
-
- active = gtk_toggle_button_get_active (toggle_button);
-
- set_sensitive =
- g_object_get_data (G_OBJECT (toggle_button), "set_sensitive");
- while (set_sensitive)
- {
- gtk_widget_set_sensitive (set_sensitive, active);
- set_sensitive =
- g_object_get_data (G_OBJECT (set_sensitive), "set_sensitive");
- }
-
- set_sensitive =
- g_object_get_data (G_OBJECT (toggle_button), "inverse_sensitive");
- while (set_sensitive)
- {
- gtk_widget_set_sensitive (set_sensitive, ! active);
- set_sensitive =
- g_object_get_data (G_OBJECT (set_sensitive), "inverse_sensitive");
- }
-}
-
-/**
* gimp_toggle_button_update:
* @widget: A #GtkToggleButton.
* @data: A pointer to a #gint variable which will store the value of
* gtk_toggle_button_get_active().
- *
- * Note that this function calls gimp_toggle_button_sensitive_update()
- * which is a deprecated hack you shouldn't use. See that function's
- * documentation for a proper replacement of its functionality.
**/
void
gimp_toggle_button_update (GtkWidget *widget,
@@ -900,8 +845,6 @@ gimp_toggle_button_update (GtkWidget *widget,
*toggle_val = TRUE;
else
*toggle_val = FALSE;
-
- gimp_toggle_button_sensitive_update (GTK_TOGGLE_BUTTON (widget));
}
/**
@@ -909,10 +852,6 @@ gimp_toggle_button_update (GtkWidget *widget,
* @widget: A #GtkRadioButton.
* @data: A pointer to a #gint variable which will store the value of
* GPOINTER_TO_INT (g_object_get_data (@widget, "gimp-item-data")).
- *
- * Note that this function calls gimp_toggle_button_sensitive_update()
- * which is a deprecated hack you shouldn't use. See that function's
- * documentation for a proper replacement of its functionality.
**/
void
gimp_radio_button_update (GtkWidget *widget,
@@ -925,8 +864,6 @@ gimp_radio_button_update (GtkWidget *widget,
*toggle_val = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (widget),
"gimp-item-data"));
}
-
- gimp_toggle_button_sensitive_update (GTK_TOGGLE_BUTTON (widget));
}
/**
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]