1998-01-18 23:01:09 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* 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
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gtkframe.h"
|
|
|
|
#include "gtklabel.h"
|
1998-02-23 15:13:03 +00:00
|
|
|
#include "gtksignal.h"
|
1998-01-18 23:01:09 +00:00
|
|
|
#include "gtkstatusbar.h"
|
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
SIGNAL_TEXT_PUSHED,
|
|
|
|
SIGNAL_TEXT_POPPED,
|
|
|
|
SIGNAL_LAST
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef void (*SignalTextP) (GtkObject *object,
|
1998-03-01 23:29:40 +00:00
|
|
|
guint context_id,
|
1998-02-23 15:13:03 +00:00
|
|
|
const gchar *text,
|
|
|
|
gpointer func_data);
|
|
|
|
|
1998-01-18 23:01:09 +00:00
|
|
|
static void gtk_statusbar_class_init (GtkStatusbarClass *class);
|
|
|
|
static void gtk_statusbar_init (GtkStatusbar *statusbar);
|
|
|
|
static void gtk_statusbar_destroy (GtkObject *object);
|
1998-03-01 23:29:40 +00:00
|
|
|
static void gtk_statusbar_finalize (GtkObject *object);
|
1998-02-23 15:13:03 +00:00
|
|
|
static void gtk_statusbar_update (GtkStatusbar *statusbar,
|
1998-03-01 23:29:40 +00:00
|
|
|
guint context_id,
|
1998-02-23 15:13:03 +00:00
|
|
|
const gchar *text);
|
|
|
|
|
1998-01-18 23:01:09 +00:00
|
|
|
static GtkContainerClass *parent_class;
|
1998-03-09 15:16:28 +00:00
|
|
|
static guint statusbar_signals[SIGNAL_LAST] = { 0 };
|
1998-01-18 23:01:09 +00:00
|
|
|
|
|
|
|
guint
|
|
|
|
gtk_statusbar_get_type ()
|
|
|
|
{
|
|
|
|
static guint statusbar_type = 0;
|
|
|
|
|
|
|
|
if (!statusbar_type)
|
|
|
|
{
|
|
|
|
GtkTypeInfo statusbar_info =
|
|
|
|
{
|
|
|
|
"GtkStatusbar",
|
|
|
|
sizeof (GtkStatusbar),
|
|
|
|
sizeof (GtkStatusbarClass),
|
|
|
|
(GtkClassInitFunc) gtk_statusbar_class_init,
|
|
|
|
(GtkObjectInitFunc) gtk_statusbar_init,
|
|
|
|
(GtkArgSetFunc) NULL,
|
|
|
|
(GtkArgGetFunc) NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
statusbar_type = gtk_type_unique (gtk_hbox_get_type (), &statusbar_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
return statusbar_type;
|
1998-03-02 23:16:39 +00:00
|
|
|
}
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
static void
|
|
|
|
gtk_statusbar_marshal_text_p (GtkObject *object,
|
|
|
|
GtkSignalFunc func,
|
|
|
|
gpointer func_data,
|
|
|
|
GtkArg *args)
|
|
|
|
{
|
|
|
|
SignalTextP sfunc = (SignalTextP) func;
|
|
|
|
|
|
|
|
(* sfunc) (object,
|
1998-03-01 23:29:40 +00:00
|
|
|
GTK_VALUE_UINT (args[0]),
|
|
|
|
GTK_VALUE_STRING (args[1]),
|
1998-02-23 15:13:03 +00:00
|
|
|
func_data);
|
|
|
|
}
|
|
|
|
|
1998-01-18 23:01:09 +00:00
|
|
|
static void
|
|
|
|
gtk_statusbar_class_init (GtkStatusbarClass *class)
|
|
|
|
{
|
|
|
|
GtkObjectClass *object_class;
|
|
|
|
GtkWidgetClass *widget_class;
|
|
|
|
GtkContainerClass *container_class;
|
|
|
|
|
|
|
|
object_class = (GtkObjectClass *) class;
|
|
|
|
widget_class = (GtkWidgetClass *) class;
|
|
|
|
container_class = (GtkContainerClass *) class;
|
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
parent_class = gtk_type_class (gtk_hbox_get_type ());
|
|
|
|
|
|
|
|
statusbar_signals[SIGNAL_TEXT_PUSHED] =
|
|
|
|
gtk_signal_new ("text_pushed",
|
|
|
|
GTK_RUN_LAST,
|
|
|
|
object_class->type,
|
|
|
|
GTK_SIGNAL_OFFSET (GtkStatusbarClass, text_pushed),
|
|
|
|
gtk_statusbar_marshal_text_p,
|
1998-03-01 23:29:40 +00:00
|
|
|
GTK_TYPE_NONE, 2,
|
|
|
|
GTK_TYPE_UINT,
|
1998-02-23 15:13:03 +00:00
|
|
|
GTK_TYPE_STRING);
|
|
|
|
statusbar_signals[SIGNAL_TEXT_POPPED] =
|
|
|
|
gtk_signal_new ("text_popped",
|
|
|
|
GTK_RUN_LAST,
|
|
|
|
object_class->type,
|
|
|
|
GTK_SIGNAL_OFFSET (GtkStatusbarClass, text_popped),
|
|
|
|
gtk_statusbar_marshal_text_p,
|
1998-03-01 23:29:40 +00:00
|
|
|
GTK_TYPE_NONE, 2,
|
|
|
|
GTK_TYPE_UINT,
|
1998-02-23 15:13:03 +00:00
|
|
|
GTK_TYPE_STRING);
|
|
|
|
gtk_object_class_add_signals (object_class, statusbar_signals, SIGNAL_LAST);
|
|
|
|
|
1998-01-18 23:01:09 +00:00
|
|
|
object_class->destroy = gtk_statusbar_destroy;
|
1998-03-01 23:29:40 +00:00
|
|
|
object_class->finalize = gtk_statusbar_finalize;
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
class->messages_mem_chunk = g_mem_chunk_new ("GtkStatusBar messages mem chunk",
|
|
|
|
sizeof (GtkStatusbarMsg),
|
|
|
|
sizeof (GtkStatusbarMsg) * 64,
|
|
|
|
G_ALLOC_AND_FREE);
|
|
|
|
|
|
|
|
class->text_pushed = gtk_statusbar_update;
|
|
|
|
class->text_popped = gtk_statusbar_update;
|
1998-01-18 23:01:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_statusbar_init (GtkStatusbar *statusbar)
|
|
|
|
{
|
1998-02-23 15:13:03 +00:00
|
|
|
GtkBox *box;
|
|
|
|
|
|
|
|
box = GTK_BOX (statusbar);
|
|
|
|
|
|
|
|
box->spacing = 2;
|
|
|
|
box->homogeneous = FALSE;
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-01-27 06:39:56 +00:00
|
|
|
statusbar->frame = gtk_frame_new (NULL);
|
|
|
|
gtk_frame_set_shadow_type (GTK_FRAME (statusbar->frame), GTK_SHADOW_IN);
|
1998-02-23 15:13:03 +00:00
|
|
|
gtk_box_pack_start (box, statusbar->frame, TRUE, TRUE, 0);
|
1998-01-27 06:39:56 +00:00
|
|
|
gtk_widget_show (statusbar->frame);
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
statusbar->label = gtk_label_new ("");
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (statusbar->label), 0.0, 0.0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (statusbar->frame), statusbar->label);
|
1998-01-27 06:39:56 +00:00
|
|
|
gtk_widget_show (statusbar->label);
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-03-01 23:29:40 +00:00
|
|
|
statusbar->seq_context_id = 1;
|
|
|
|
statusbar->seq_message_id = 1;
|
1998-02-23 15:13:03 +00:00
|
|
|
statusbar->messages = NULL;
|
1998-03-01 23:29:40 +00:00
|
|
|
statusbar->keys = NULL;
|
1998-01-18 23:01:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget*
|
|
|
|
gtk_statusbar_new ()
|
|
|
|
{
|
1998-02-23 15:13:03 +00:00
|
|
|
return gtk_type_new (gtk_statusbar_get_type ());
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_statusbar_update (GtkStatusbar *statusbar,
|
1998-03-01 23:29:40 +00:00
|
|
|
guint context_id,
|
1998-02-23 15:13:03 +00:00
|
|
|
const gchar *text)
|
|
|
|
{
|
|
|
|
g_return_if_fail (statusbar != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_STATUSBAR (statusbar));
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
if (!text)
|
|
|
|
text = "";
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
gtk_label_set (GTK_LABEL (statusbar->label), text);
|
1998-01-18 23:01:09 +00:00
|
|
|
}
|
|
|
|
|
1998-03-01 23:29:40 +00:00
|
|
|
guint
|
|
|
|
gtk_statusbar_get_context_id (GtkStatusbar *statusbar,
|
|
|
|
const gchar *context_description)
|
|
|
|
{
|
|
|
|
gchar *string;
|
|
|
|
guint *id;
|
|
|
|
|
|
|
|
g_return_val_if_fail (statusbar != NULL, 0);
|
|
|
|
g_return_val_if_fail (GTK_IS_STATUSBAR (statusbar), 0);
|
|
|
|
g_return_val_if_fail (context_description != NULL, 0);
|
|
|
|
|
|
|
|
/* we need to preserve namespaces on object datas */
|
|
|
|
string = g_strconcat ("gtk-status-bar-context:", context_description, NULL);
|
|
|
|
|
|
|
|
id = gtk_object_get_data (GTK_OBJECT (statusbar), string);
|
|
|
|
if (!id)
|
|
|
|
{
|
|
|
|
id = g_new (guint, 1);
|
|
|
|
*id = statusbar->seq_context_id++;
|
|
|
|
gtk_object_set_data_full (GTK_OBJECT (statusbar), string, id, (GtkDestroyNotify) g_free);
|
|
|
|
statusbar->keys = g_slist_prepend (statusbar->keys, string);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_free (string);
|
|
|
|
|
|
|
|
return *id;
|
|
|
|
}
|
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
guint
|
|
|
|
gtk_statusbar_push (GtkStatusbar *statusbar,
|
1998-03-01 23:29:40 +00:00
|
|
|
guint context_id,
|
1998-02-23 15:13:03 +00:00
|
|
|
const gchar *text)
|
1998-01-18 23:01:09 +00:00
|
|
|
{
|
|
|
|
GtkStatusbarMsg *msg;
|
1998-02-23 15:13:03 +00:00
|
|
|
GtkStatusbarClass *class;
|
|
|
|
|
|
|
|
g_return_val_if_fail (statusbar != NULL, 0);
|
|
|
|
g_return_val_if_fail (GTK_IS_STATUSBAR (statusbar), 0);
|
|
|
|
g_return_val_if_fail (text != NULL, 0);
|
1998-03-01 23:29:40 +00:00
|
|
|
g_return_val_if_fail (context_id > 0, 0);
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
class = GTK_STATUSBAR_CLASS (GTK_OBJECT (statusbar)->klass);
|
|
|
|
msg = g_chunk_new (GtkStatusbarMsg, class->messages_mem_chunk);
|
|
|
|
msg->text = g_strdup (text);
|
1998-03-01 23:29:40 +00:00
|
|
|
msg->context_id = context_id;
|
|
|
|
msg->message_id = statusbar->seq_message_id++;
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-03-01 23:29:40 +00:00
|
|
|
statusbar->messages = g_slist_prepend (statusbar->messages, msg);
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-03-01 23:29:40 +00:00
|
|
|
gtk_signal_emit (GTK_OBJECT (statusbar),
|
|
|
|
statusbar_signals[SIGNAL_TEXT_PUSHED],
|
|
|
|
msg->context_id,
|
|
|
|
msg->text);
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-03-01 23:29:40 +00:00
|
|
|
return msg->message_id;
|
1998-01-18 23:01:09 +00:00
|
|
|
}
|
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
void
|
1998-03-01 23:29:40 +00:00
|
|
|
gtk_statusbar_pop (GtkStatusbar *statusbar,
|
|
|
|
guint context_id)
|
1998-01-18 23:01:09 +00:00
|
|
|
{
|
1998-02-23 15:13:03 +00:00
|
|
|
GtkStatusbarMsg *msg;
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
g_return_if_fail (statusbar != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_STATUSBAR (statusbar));
|
1998-03-01 23:29:40 +00:00
|
|
|
g_return_if_fail (context_id > 0);
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
if (statusbar->messages)
|
|
|
|
{
|
1998-03-01 23:29:40 +00:00
|
|
|
GSList *list;
|
1998-02-23 15:13:03 +00:00
|
|
|
GtkStatusbarClass *class;
|
|
|
|
|
|
|
|
list = statusbar->messages;
|
|
|
|
msg = list->data;
|
|
|
|
class = GTK_STATUSBAR_CLASS (GTK_OBJECT (statusbar)->klass);
|
|
|
|
|
1998-03-01 23:29:40 +00:00
|
|
|
statusbar->messages = g_slist_remove_link (statusbar->messages, list);
|
1998-02-23 15:13:03 +00:00
|
|
|
g_free (msg->text);
|
|
|
|
g_mem_chunk_free (class->messages_mem_chunk, msg);
|
1998-03-01 23:29:40 +00:00
|
|
|
g_slist_free_1 (list);
|
1998-02-23 15:13:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
msg = statusbar->messages ? statusbar->messages->data : NULL;
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-03-01 23:29:40 +00:00
|
|
|
gtk_signal_emit (GTK_OBJECT (statusbar),
|
|
|
|
statusbar_signals[SIGNAL_TEXT_POPPED],
|
|
|
|
(guint) (msg ? msg->context_id : 0),
|
1998-02-23 15:13:03 +00:00
|
|
|
msg ? msg->text : NULL);
|
1998-01-18 23:01:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-03-01 23:29:40 +00:00
|
|
|
gtk_statusbar_remove (GtkStatusbar *statusbar,
|
|
|
|
guint context_id,
|
|
|
|
guint message_id)
|
1998-01-18 23:01:09 +00:00
|
|
|
{
|
1998-02-23 15:13:03 +00:00
|
|
|
GtkStatusbarMsg *msg;
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
g_return_if_fail (statusbar != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_STATUSBAR (statusbar));
|
1998-03-01 23:29:40 +00:00
|
|
|
g_return_if_fail (context_id > 0);
|
|
|
|
g_return_if_fail (message_id > 0);
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-02-23 15:13:03 +00:00
|
|
|
msg = statusbar->messages ? statusbar->messages->data : NULL;
|
|
|
|
if (msg)
|
|
|
|
{
|
1998-03-01 23:29:40 +00:00
|
|
|
GSList *list;
|
|
|
|
|
|
|
|
/* care about signal emission if the topmost item is removed */
|
|
|
|
if (msg->context_id == context_id &&
|
|
|
|
msg->message_id == message_id)
|
1998-02-23 15:13:03 +00:00
|
|
|
{
|
1998-03-01 23:29:40 +00:00
|
|
|
gtk_statusbar_pop (statusbar, context_id);
|
1998-02-23 15:13:03 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (list = statusbar->messages; list; list = list->next)
|
|
|
|
{
|
|
|
|
msg = list->data;
|
|
|
|
|
1998-03-01 23:29:40 +00:00
|
|
|
if (msg->context_id == context_id &&
|
|
|
|
msg->message_id == message_id)
|
1998-02-23 15:13:03 +00:00
|
|
|
{
|
|
|
|
GtkStatusbarClass *class;
|
|
|
|
|
|
|
|
class = GTK_STATUSBAR_CLASS (GTK_OBJECT (statusbar)->klass);
|
1998-03-01 23:29:40 +00:00
|
|
|
statusbar->messages = g_slist_remove_link (statusbar->messages, list);
|
1998-02-23 15:13:03 +00:00
|
|
|
g_free (msg->text);
|
|
|
|
g_mem_chunk_free (class->messages_mem_chunk, msg);
|
1998-03-01 23:29:40 +00:00
|
|
|
g_slist_free_1 (list);
|
1998-02-23 15:13:03 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1998-01-18 23:01:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_statusbar_destroy (GtkObject *object)
|
|
|
|
{
|
|
|
|
GtkStatusbar *statusbar;
|
1998-02-23 15:13:03 +00:00
|
|
|
GtkStatusbarClass *class;
|
1998-03-01 23:29:40 +00:00
|
|
|
GSList *list;
|
1998-02-23 15:13:03 +00:00
|
|
|
|
1998-01-18 23:01:09 +00:00
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_STATUSBAR (object));
|
|
|
|
|
|
|
|
statusbar = GTK_STATUSBAR (object);
|
1998-02-23 15:13:03 +00:00
|
|
|
class = GTK_STATUSBAR_CLASS (GTK_OBJECT (statusbar)->klass);
|
|
|
|
|
|
|
|
for (list = statusbar->messages; list; list = list->next)
|
|
|
|
{
|
|
|
|
GtkStatusbarMsg *msg;
|
|
|
|
|
|
|
|
msg = list->data;
|
|
|
|
g_free (msg->text);
|
|
|
|
g_mem_chunk_free (class->messages_mem_chunk, msg);
|
|
|
|
}
|
1998-03-01 23:29:40 +00:00
|
|
|
g_slist_free (statusbar->messages);
|
1998-02-23 15:13:03 +00:00
|
|
|
statusbar->messages = NULL;
|
1998-01-18 23:01:09 +00:00
|
|
|
|
1998-03-12 07:28:41 +00:00
|
|
|
for (list = statusbar->keys; list; list = list->next)
|
|
|
|
g_free (list->data);
|
|
|
|
g_slist_free (statusbar->keys);
|
|
|
|
statusbar->keys = NULL;
|
|
|
|
|
1998-03-01 23:29:40 +00:00
|
|
|
GTK_OBJECT_CLASS (parent_class)->destroy (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_statusbar_finalize (GtkObject *object)
|
|
|
|
{
|
|
|
|
GtkStatusbar *statusbar;
|
|
|
|
|
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_STATUSBAR (object));
|
|
|
|
|
|
|
|
statusbar = GTK_STATUSBAR (object);
|
|
|
|
|
|
|
|
GTK_OBJECT_CLASS (parent_class)->finalize (object);
|
1998-01-18 23:01:09 +00:00
|
|
|
}
|