summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberts Muktupāvels <alberts.muktupavels@gmail.com>2022-09-16 12:56:28 +0300
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2022-09-16 14:23:50 +0000
commit4b7fe0a052291f7f9bc6030a72c965305a945add (patch)
treece6add234dc75e9bd488ec89e82e7d2335d20739
parente60dc3e31bfa5191dfd21d7e788ce31400ac5610 (diff)
downloadlibwnck-4b7fe0a052291f7f9bc6030a72c965305a945add.tar.gz
tasklist: remove deprecated API
https://gitlab.gnome.org/GNOME/libwnck/-/issues/150
-rw-r--r--doc/libwnck-sections.txt2
-rw-r--r--libwnck/tasklist.c231
-rw-r--r--libwnck/tasklist.h7
3 files changed, 0 insertions, 240 deletions
diff --git a/doc/libwnck-sections.txt b/doc/libwnck-sections.txt
index 83693d8..e084d22 100644
--- a/doc/libwnck-sections.txt
+++ b/doc/libwnck-sections.txt
@@ -271,7 +271,6 @@ WnckSelectorClass
<FILE>tasklist</FILE>
<TITLE>WnckTasklist</TITLE>
WnckTasklist
-wnck_tasklist_new
WnckTasklistGroupingType
wnck_tasklist_set_grouping
wnck_tasklist_set_grouping_limit
@@ -280,7 +279,6 @@ wnck_tasklist_set_switch_workspace_on_unminimize
wnck_tasklist_set_button_relief
WnckLoadIconFunction
wnck_tasklist_set_icon_loader
-wnck_tasklist_get_size_hint_list
<SUBSECTION Private>
WnckTasklistPrivate
wnck_tasklist_get_type
diff --git a/libwnck/tasklist.c b/libwnck/tasklist.c
index b773247..1ad51da 100644
--- a/libwnck/tasklist.c
+++ b/libwnck/tasklist.c
@@ -228,9 +228,6 @@ struct _WnckTasklistPrivate
guint idle_callback_tag;
- int *size_hints;
- int size_hints_len;
-
WnckLoadIconFunction icon_loader;
void *icon_loader_data;
GDestroyNotify free_icon_loader_data;
@@ -1206,10 +1203,6 @@ wnck_tasklist_finalize (GObject *object)
tasklist->priv->idle_callback_tag = 0;
}
- g_free (tasklist->priv->size_hints);
- tasklist->priv->size_hints = NULL;
- tasklist->priv->size_hints_len = 0;
-
if (tasklist->priv->free_icon_loader_data != NULL)
(* tasklist->priv->free_icon_loader_data) (tasklist->priv->icon_loader_data);
tasklist->priv->free_icon_loader_data = NULL;
@@ -1688,180 +1681,6 @@ calculate_max_button_size (WnckTasklist *self,
*max_height_out = max_height;
}
-static void
-wnck_tasklist_update_size_hints (WnckTasklist *tasklist)
-{
- GtkAllocation tasklist_allocation;
- GtkAllocation fake_allocation;
- int max_height = 1;
- int max_width = 1;
- GArray *array;
- GList *ungrouped_class_groups;
- int n_windows;
- int n_startup_sequences;
- int n_rows;
- int n_cols, last_n_cols;
- int n_grouped_buttons;
- gboolean score_set;
- int val;
- WnckTask *class_group_task;
- int lowest_range;
- int grouping_limit;
-
- /* Note that the fact that we nearly don't care about the width/height
- * requested by the buttons makes it possible to hide/show the label/image
- * in wnck_task_size_allocated(). If we really cared about those, this
- * wouldn't work since our call to gtk_widget_size_request() does not take
- * into account the hidden widgets.
- */
- calculate_max_button_size (tasklist, &max_width, &max_height);
-
- gtk_widget_get_allocation (GTK_WIDGET (tasklist), &tasklist_allocation);
-
- fake_allocation.width = tasklist_allocation.width;
- fake_allocation.height = tasklist_allocation.height;
-
- array = g_array_new (FALSE, FALSE, sizeof (int));
-
- /* Calculate size_hints list */
-
- n_windows = g_list_length (tasklist->priv->windows);
- n_startup_sequences = g_list_length (tasklist->priv->startup_sequences);
- n_grouped_buttons = 0;
- ungrouped_class_groups = g_list_copy (tasklist->priv->class_groups);
- score_set = FALSE;
-
- grouping_limit = MIN (tasklist->priv->grouping_limit, max_width);
-
- /* Try ungrouped mode */
- wnck_tasklist_layout (&fake_allocation,
- max_width,
- max_height,
- n_windows + n_startup_sequences,
- tasklist->priv->orientation,
- &n_cols, &n_rows);
-
- last_n_cols = G_MAXINT;
- lowest_range = G_MAXINT;
- if (tasklist->priv->grouping != WNCK_TASKLIST_ALWAYS_GROUP)
- {
- if (tasklist->priv->orientation == GTK_ORIENTATION_HORIZONTAL)
- {
- val = n_cols * max_width;
- g_array_insert_val (array, array->len, val);
- val = n_cols * grouping_limit;
- g_array_insert_val (array, array->len, val);
-
- last_n_cols = n_cols;
- lowest_range = val;
- }
- else
- {
- val = n_rows * max_height;
- g_array_insert_val (array, array->len, val);
- val = n_rows * grouping_limit;
- g_array_insert_val (array, array->len, val);
-
- last_n_cols = n_rows;
- lowest_range = val;
- }
- }
-
- while (ungrouped_class_groups != NULL &&
- tasklist->priv->grouping != WNCK_TASKLIST_NEVER_GROUP)
- {
- if (!score_set)
- {
- wnck_tasklist_score_groups (tasklist, ungrouped_class_groups);
- score_set = TRUE;
- }
-
- ungrouped_class_groups = wnck_task_get_highest_scored (ungrouped_class_groups, &class_group_task);
-
- n_grouped_buttons += g_list_length (class_group_task->windows) - 1;
-
- wnck_tasklist_layout (&fake_allocation,
- max_width,
- max_height,
- n_startup_sequences + n_windows - n_grouped_buttons,
- tasklist->priv->orientation,
- &n_cols, &n_rows);
-
- if (tasklist->priv->orientation == GTK_ORIENTATION_HORIZONTAL)
- {
- if (n_cols != last_n_cols &&
- (tasklist->priv->grouping == WNCK_TASKLIST_AUTO_GROUP ||
- ungrouped_class_groups == NULL))
- {
- val = n_cols * max_width;
- if (val >= lowest_range)
- {
- /* Overlaps old range */
- g_assert (array->len > 0);
- lowest_range = n_cols * grouping_limit;
- g_array_index(array, int, array->len-1) = lowest_range;
- }
- else
- {
- /* Full new range */
- g_array_insert_val (array, array->len, val);
- val = n_cols * grouping_limit;
- g_array_insert_val (array, array->len, val);
- lowest_range = val;
- }
-
- last_n_cols = n_cols;
- }
- }
- else
- {
- if (n_rows != last_n_cols &&
- (tasklist->priv->grouping == WNCK_TASKLIST_AUTO_GROUP ||
- ungrouped_class_groups == NULL))
- {
- val = n_rows * max_height;
- if (val >= lowest_range)
- {
- /* Overlaps old range */
- g_assert (array->len > 0);
- lowest_range = n_rows * grouping_limit;
- g_array_index (array, int, array->len-1) = lowest_range;
- }
- else
- {
- /* Full new range */
- g_array_insert_val (array, array->len, val);
- val = n_rows * grouping_limit;
- g_array_insert_val (array, array->len, val);
- lowest_range = val;
- }
-
- last_n_cols = n_rows;
- }
- }
- }
-
- g_list_free (ungrouped_class_groups);
-
- /* Always let you go down to a zero size: */
- if (array->len > 0)
- {
- g_array_index(array, int, array->len-1) = 0;
- }
- else
- {
- val = 0;
- g_array_insert_val (array, 0, val);
- g_array_insert_val (array, 0, val);
- }
-
- if (tasklist->priv->size_hints)
- g_free (tasklist->priv->size_hints);
-
- tasklist->priv->size_hints_len = array->len;
- tasklist->priv->size_hints = (int *)g_array_free (array, FALSE);
-}
-
static int
get_n_buttons (WnckTasklist *self)
{
@@ -2057,36 +1876,6 @@ wnck_tasklist_get_preferred_height_for_width (GtkWidget *widget,
natural_height);
}
-/**
- * wnck_tasklist_get_size_hint_list:
- * @tasklist: a #WnckTasklist.
- * @n_elements: return location for the number of elements in the array
- * returned by this function. This number should always be pair.
- *
- * Since a #WnckTasklist does not have a fixed size (#WnckWindow can be grouped
- * when needed, for example), the standard size request mechanism in GTK+ is
- * not enough to announce what sizes can be used by @tasklist. The size hints
- * mechanism is a solution for this. See panel_applet_set_size_hints() for more
- * information.
- *
- * Return value: a list of size hints that can be used to allocate an
- * appropriate size for @tasklist.
- *
- * Deprecated: 3.42: Use minimum and natural size instead.
- */
-const int *
-wnck_tasklist_get_size_hint_list (WnckTasklist *tasklist,
- int *n_elements)
-{
- g_return_val_if_fail (WNCK_IS_TASKLIST (tasklist), NULL);
- g_return_val_if_fail (n_elements != NULL, NULL);
-
- wnck_tasklist_update_size_hints (tasklist);
-
- *n_elements = tasklist->priv->size_hints_len;
- return tasklist->priv->size_hints;
-}
-
static void
wnck_tasklist_size_allocate (GtkWidget *widget,
GtkAllocation *allocation)
@@ -2700,26 +2489,6 @@ wnck_tasklist_scroll_event (GtkWidget *widget,
}
/**
- * wnck_tasklist_new:
- *
- * Creates a new #WnckTasklist. The #WnckTasklist will list #WnckWindow of the
- * #WnckScreen it is on.
- *
- * Return value: a newly created #WnckTasklist.
- */
-GtkWidget*
-wnck_tasklist_new (void)
-{
- WnckTasklist *tasklist;
-
- tasklist = g_object_new (WNCK_TYPE_TASKLIST,
- "handle", _wnck_get_handle (),
- NULL);
-
- return GTK_WIDGET (tasklist);
-}
-
-/**
* wnck_tasklist_new_with_handle:
* @handle: a #WnckHandle
*
diff --git a/libwnck/tasklist.h b/libwnck/tasklist.h
index 5407d34..d5b186c 100644
--- a/libwnck/tasklist.h
+++ b/libwnck/tasklist.h
@@ -87,15 +87,8 @@ typedef enum {
GType wnck_tasklist_get_type (void) G_GNUC_CONST;
-G_DEPRECATED_FOR(wnck_tasklist_new_with_handle)
-GtkWidget *wnck_tasklist_new (void);
-
GtkWidget *wnck_tasklist_new_with_handle (WnckHandle *handle);
-G_DEPRECATED
-const int *wnck_tasklist_get_size_hint_list (WnckTasklist *tasklist,
- int *n_elements);
-
void wnck_tasklist_set_grouping (WnckTasklist *tasklist,
WnckTasklistGroupingType grouping);
void wnck_tasklist_set_switch_workspace_on_unminimize (WnckTasklist *tasklist,