2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
1998-01-18 23:01:09 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
* GtkStatusbar Copyright (C) 1998 Shawn T. Amundson
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-01-18 23:01:09 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1998-01-18 23:01:09 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
1998-01-18 23:01:09 +00:00
|
|
|
*/
|
|
|
|
|
1999-02-24 07:37:18 +00:00
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2008-05-28 15:35:43 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
*/
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#ifndef __GTK_STATUSBAR_H__
|
|
|
|
#define __GTK_STATUSBAR_H__
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2008-05-28 15:07:04 +00:00
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2018-06-04 17:13:12 +00:00
|
|
|
#include <gtk/gtkwidget.h>
|
1998-01-18 23:01:09 +00:00
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
G_BEGIN_DECLS
|
2000-02-13 08:16:48 +00:00
|
|
|
|
|
|
|
#define GTK_TYPE_STATUSBAR (gtk_statusbar_get_type ())
|
2002-10-09 00:38:22 +00:00
|
|
|
#define GTK_STATUSBAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_STATUSBAR, GtkStatusbar))
|
|
|
|
#define GTK_IS_STATUSBAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_STATUSBAR))
|
1998-01-18 23:01:09 +00:00
|
|
|
|
2019-05-27 02:51:44 +00:00
|
|
|
typedef struct _GtkStatusbar GtkStatusbar;
|
1998-01-18 23:01:09 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2002-10-09 00:38:22 +00:00
|
|
|
GType gtk_statusbar_get_type (void) G_GNUC_CONST;
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
1998-01-18 23:01:09 +00:00
|
|
|
GtkWidget* gtk_statusbar_new (void);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
1998-03-01 23:29:40 +00:00
|
|
|
guint gtk_statusbar_get_context_id (GtkStatusbar *statusbar,
|
|
|
|
const gchar *context_description);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
1998-03-01 23:29:40 +00:00
|
|
|
guint gtk_statusbar_push (GtkStatusbar *statusbar,
|
|
|
|
guint context_id,
|
1998-02-23 15:13:03 +00:00
|
|
|
const gchar *text);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
1998-03-01 23:29:40 +00:00
|
|
|
void gtk_statusbar_pop (GtkStatusbar *statusbar,
|
|
|
|
guint context_id);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
1998-03-01 23:29:40 +00:00
|
|
|
void gtk_statusbar_remove (GtkStatusbar *statusbar,
|
|
|
|
guint context_id,
|
|
|
|
guint message_id);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-05-15 20:58:30 +00:00
|
|
|
void gtk_statusbar_remove_all (GtkStatusbar *statusbar,
|
|
|
|
guint context_id);
|
1998-01-18 23:01:09 +00:00
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
1998-03-02 23:42:25 +00:00
|
|
|
#endif /* __GTK_STATUSBAR_H__ */
|