* ## CSS node
*
* `GtkStatusbar` has a single CSS node with name `statusbar`.
+ *
+ * Deprecated: 4.10: This widget will be removed in GTK 5
*/
typedef struct _GtkStatusbarMsg GtkStatusbarMsg;
* @text: the message that was pushed
*
* Emitted whenever a new message gets pushed onto a statusbar's stack.
+ *
+ * Deprecated: 4.10: This widget will be removed in GTK 5
*/
statusbar_signals[SIGNAL_TEXT_PUSHED] =
g_signal_new (I_("text-pushed"),
* @text: the message that was just popped
*
* Emitted whenever a new message is popped off a statusbar's stack.
+ *
+ * Deprecated: 4.10: This widget will be removed in GTK 5
*/
statusbar_signals[SIGNAL_TEXT_POPPED] =
g_signal_new (I_("text-popped"),
* Creates a new `GtkStatusbar` ready for messages.
*
* Returns: the new `GtkStatusbar`
+ *
+ * Deprecated: 4.10: This widget will be removed in GTK 5
*/
GtkWidget*
gtk_statusbar_new (void)
* Note that the description is not shown in the UI.
*
* Returns: an integer id
+ *
+ * Deprecated: 4.10: This widget will be removed in GTK 5
*/
guint
gtk_statusbar_get_context_id (GtkStatusbar *statusbar,
*
* Returns: a message id that can be used with
* [method@Gtk.Statusbar.remove].
+ *
+ * Deprecated: 4.10: This widget will be removed in GTK 5
*/
guint
gtk_statusbar_push (GtkStatusbar *statusbar,
* Note that this may not change the displayed message,
* if the message at the top of the stack has a different
* context id.
+ *
+ * Deprecated: 4.10: This widget will be removed in GTK 5
*/
void
gtk_statusbar_pop (GtkStatusbar *statusbar,
*
* Forces the removal of a message from a statusbar’s stack.
* The exact @context_id and @message_id must be specified.
+ *
+ * Deprecated: 4.10: This widget will be removed in GTK 5
*/
void
gtk_statusbar_remove (GtkStatusbar *statusbar,
*
* Forces the removal of all messages from a statusbar's
* stack with the exact @context_id.
+ *
+ * Deprecated: 4.10: This widget will be removed in GTK 5
*/
void
gtk_statusbar_remove_all (GtkStatusbar *statusbar,
* Retrieves the contents of the label in `GtkStatusbar`.
*
* Returns: (transfer none): the contents of the statusbar
+ *
+ * Deprecated: 4.10: This widget will be removed in GTK 5
*/
const char *
gtk_statusbar_get_message (GtkStatusbar *statusbar)