[gtk/wip/baedert/for-master] statusbar: Remove _get_message_area() from public API
- From: Timm Bäder <baedert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/baedert/for-master] statusbar: Remove _get_message_area() from public API
- Date: Sun, 23 Feb 2020 15:56:16 +0000 (UTC)
commit d806a71d341149fb2ee0669a2086c94b1958ed8d
Author: Timm Bäder <mail baedert org>
Date: Sun Feb 23 16:53:53 2020 +0100
statusbar: Remove _get_message_area() from public API
The message should be manipulated via push() and pop().
docs/reference/gtk/gtk4-sections.txt | 1 -
gtk/a11y/gtkstatusbaraccessible.c | 46 ++----------------------------------
gtk/gtkstatusbar.c | 9 +++----
gtk/gtkstatusbar.h | 3 ---
4 files changed, 7 insertions(+), 52 deletions(-)
---
diff --git a/docs/reference/gtk/gtk4-sections.txt b/docs/reference/gtk/gtk4-sections.txt
index 548c4921d1..79f5bc42da 100644
--- a/docs/reference/gtk/gtk4-sections.txt
+++ b/docs/reference/gtk/gtk4-sections.txt
@@ -2559,7 +2559,6 @@ gtk_statusbar_push
gtk_statusbar_pop
gtk_statusbar_remove
gtk_statusbar_remove_all
-gtk_statusbar_get_message_area
<SUBSECTION Standard>
GTK_STATUSBAR
GTK_IS_STATUSBAR
diff --git a/gtk/a11y/gtkstatusbaraccessible.c b/gtk/a11y/gtkstatusbaraccessible.c
index d21fc7295d..b4d2f38505 100644
--- a/gtk/a11y/gtkstatusbaraccessible.c
+++ b/gtk/a11y/gtkstatusbaraccessible.c
@@ -19,6 +19,7 @@
#include <string.h>
#include <gtk/gtk.h>
+#include "gtkstatusbarprivate.h"
#include "gtkstatusbaraccessible.h"
@@ -51,50 +52,11 @@ gtk_statusbar_accessible_initialize (AtkObject *obj,
obj->role = ATK_ROLE_STATUSBAR;
}
-static GtkWidget *
-find_label_child (GtkContainer *container)
-{
- GList *children, *tmp_list;
- GtkWidget *child;
-
- children = gtk_container_get_children (container);
-
- child = NULL;
- for (tmp_list = children; tmp_list != NULL; tmp_list = tmp_list->next)
- {
- if (GTK_IS_LABEL (tmp_list->data))
- {
- child = GTK_WIDGET (tmp_list->data);
- break;
- }
- else if (GTK_IS_CONTAINER (tmp_list->data))
- {
- child = find_label_child (GTK_CONTAINER (tmp_list->data));
- if (child)
- break;
- }
- }
- g_list_free (children);
-
- return child;
-}
-
-static GtkWidget *
-get_label_from_statusbar (GtkStatusbar *statusbar)
-{
- GtkWidget *box;
-
- box = gtk_statusbar_get_message_area (statusbar);
-
- return find_label_child (GTK_CONTAINER (box));
-}
-
static const gchar *
gtk_statusbar_accessible_get_name (AtkObject *obj)
{
const gchar *name;
GtkWidget *widget;
- GtkWidget *label;
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
if (widget == NULL)
@@ -104,11 +66,7 @@ gtk_statusbar_accessible_get_name (AtkObject *obj)
if (name != NULL)
return name;
- label = get_label_from_statusbar (GTK_STATUSBAR (widget));
- if (GTK_IS_LABEL (label))
- return gtk_label_get_label (GTK_LABEL (label));
-
- return NULL;
+ return gtk_statusbar_get_message (GTK_STATUSBAR (widget));
}
static gint
diff --git a/gtk/gtkstatusbar.c b/gtk/gtkstatusbar.c
index cf140118e2..a570dec71f 100644
--- a/gtk/gtkstatusbar.c
+++ b/gtk/gtkstatusbar.c
@@ -26,6 +26,7 @@
#include "config.h"
#include "gtkstatusbar.h"
+#include "gtkstatusbarprivate.h"
#include "gtkbinlayout.h"
#include "gtkframe.h"
@@ -501,7 +502,7 @@ gtk_statusbar_remove_all (GtkStatusbar *statusbar,
}
}
-/**
+/** < private >
* gtk_statusbar_get_message_area:
* @statusbar: a #GtkStatusbar
*
@@ -509,14 +510,14 @@ gtk_statusbar_remove_all (GtkStatusbar *statusbar,
*
* Returns: (type Gtk.Box) (transfer none): a #GtkBox
*/
-GtkWidget*
-gtk_statusbar_get_message_area (GtkStatusbar *statusbar)
+const char*
+gtk_statusbar_get_message (GtkStatusbar *statusbar)
{
GtkStatusbarPrivate *priv = gtk_statusbar_get_instance_private (statusbar);
g_return_val_if_fail (GTK_IS_STATUSBAR (statusbar), NULL);
- return priv->message_area;
+ return gtk_label_get_label (GTK_LABEL (priv->label));
}
static void
diff --git a/gtk/gtkstatusbar.h b/gtk/gtkstatusbar.h
index de63712c59..530f82e75f 100644
--- a/gtk/gtkstatusbar.h
+++ b/gtk/gtkstatusbar.h
@@ -62,9 +62,6 @@ GDK_AVAILABLE_IN_ALL
void gtk_statusbar_remove_all (GtkStatusbar *statusbar,
guint context_id);
-GDK_AVAILABLE_IN_ALL
-GtkWidget* gtk_statusbar_get_message_area (GtkStatusbar *statusbar);
-
G_END_DECLS
#endif /* __GTK_STATUSBAR_H__ */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]