1997-11-24 22:37:52 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* 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
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
|
|
|
#include "gdk/gdkkeysyms.h"
|
|
|
|
#include "gtkbindings.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
#include "gtkmain.h"
|
|
|
|
#include "gtkmenubar.h"
|
|
|
|
#include "gtkmenuitem.h"
|
|
|
|
|
1998-11-16 09:05:26 +00:00
|
|
|
enum {
|
|
|
|
ARG_0,
|
|
|
|
ARG_SHADOW
|
|
|
|
};
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
#define BORDER_SPACING 2
|
|
|
|
#define CHILD_SPACING 3
|
|
|
|
|
|
|
|
|
|
|
|
static void gtk_menu_bar_class_init (GtkMenuBarClass *klass);
|
|
|
|
static void gtk_menu_bar_init (GtkMenuBar *menu_bar);
|
1998-11-16 09:05:26 +00:00
|
|
|
static void gtk_menu_bar_set_arg (GtkObject *object,
|
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id);
|
|
|
|
static void gtk_menu_bar_get_arg (GtkObject *object,
|
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id);
|
1997-11-24 22:37:52 +00:00
|
|
|
static void gtk_menu_bar_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition);
|
|
|
|
static void gtk_menu_bar_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation);
|
1998-11-06 22:05:02 +00:00
|
|
|
static void gtk_menu_bar_paint (GtkWidget *widget,
|
|
|
|
GdkRectangle *area);
|
1997-11-24 22:37:52 +00:00
|
|
|
static void gtk_menu_bar_draw (GtkWidget *widget,
|
|
|
|
GdkRectangle *area);
|
|
|
|
static gint gtk_menu_bar_expose (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event);
|
|
|
|
|
|
|
|
|
1998-06-07 12:22:45 +00:00
|
|
|
GtkType
|
1998-05-03 22:41:32 +00:00
|
|
|
gtk_menu_bar_get_type (void)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
1998-06-07 12:22:45 +00:00
|
|
|
static GtkType menu_bar_type = 0;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
if (!menu_bar_type)
|
|
|
|
{
|
1998-11-30 19:07:15 +00:00
|
|
|
static const GtkTypeInfo menu_bar_info =
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
|
|
|
"GtkMenuBar",
|
|
|
|
sizeof (GtkMenuBar),
|
|
|
|
sizeof (GtkMenuBarClass),
|
|
|
|
(GtkClassInitFunc) gtk_menu_bar_class_init,
|
|
|
|
(GtkObjectInitFunc) gtk_menu_bar_init,
|
1998-07-04 15:31:30 +00:00
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
/* reserved_2 */ NULL,
|
1998-06-28 07:46:10 +00:00
|
|
|
(GtkClassInitFunc) NULL,
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
menu_bar_type = gtk_type_unique (gtk_menu_shell_get_type (), &menu_bar_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
return menu_bar_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_menu_bar_class_init (GtkMenuBarClass *class)
|
|
|
|
{
|
1998-11-16 09:05:26 +00:00
|
|
|
GtkObjectClass *object_class;
|
1997-11-24 22:37:52 +00:00
|
|
|
GtkWidgetClass *widget_class;
|
|
|
|
GtkMenuShellClass *menu_shell_class;
|
|
|
|
|
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
|
|
|
GtkBindingSet *binding_set;
|
|
|
|
|
1998-11-16 09:05:26 +00:00
|
|
|
object_class = (GtkObjectClass*) class;
|
1997-11-24 22:37:52 +00:00
|
|
|
widget_class = (GtkWidgetClass*) class;
|
|
|
|
menu_shell_class = (GtkMenuShellClass*) class;
|
|
|
|
|
1998-11-16 09:05:26 +00:00
|
|
|
gtk_object_add_arg_type ("GtkMenuBar::shadow", GTK_TYPE_SHADOW_TYPE, GTK_ARG_READWRITE, ARG_SHADOW);
|
|
|
|
|
|
|
|
object_class->set_arg = gtk_menu_bar_set_arg;
|
|
|
|
object_class->get_arg = gtk_menu_bar_get_arg;
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
widget_class->draw = gtk_menu_bar_draw;
|
|
|
|
widget_class->size_request = gtk_menu_bar_size_request;
|
|
|
|
widget_class->size_allocate = gtk_menu_bar_size_allocate;
|
|
|
|
widget_class->expose_event = gtk_menu_bar_expose;
|
|
|
|
|
|
|
|
menu_shell_class->submenu_placement = GTK_TOP_BOTTOM;
|
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
|
|
|
|
|
|
|
binding_set = gtk_binding_set_by_class (class);
|
|
|
|
gtk_binding_entry_add_signal (binding_set,
|
|
|
|
GDK_Left, 0,
|
|
|
|
"move_current", 1,
|
|
|
|
GTK_TYPE_MENU_DIRECTION_TYPE,
|
|
|
|
GTK_MENU_DIR_PREV);
|
|
|
|
gtk_binding_entry_add_signal (binding_set,
|
|
|
|
GDK_Right, 0,
|
|
|
|
"move_current", 1,
|
|
|
|
GTK_TYPE_MENU_DIRECTION_TYPE,
|
|
|
|
GTK_MENU_DIR_NEXT);
|
|
|
|
gtk_binding_entry_add_signal (binding_set,
|
|
|
|
GDK_Up, 0,
|
|
|
|
"move_current", 1,
|
|
|
|
GTK_TYPE_MENU_DIRECTION_TYPE,
|
|
|
|
GTK_MENU_DIR_PARENT);
|
|
|
|
gtk_binding_entry_add_signal (binding_set,
|
|
|
|
GDK_Down, 0,
|
|
|
|
"move_current", 1,
|
|
|
|
GTK_TYPE_MENU_DIRECTION_TYPE,
|
|
|
|
GTK_MENU_DIR_CHILD);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_menu_bar_init (GtkMenuBar *menu_bar)
|
|
|
|
{
|
1998-11-16 09:05:26 +00:00
|
|
|
menu_bar->shadow_type = GTK_SHADOW_OUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_menu_bar_set_arg (GtkObject *object,
|
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id)
|
|
|
|
{
|
|
|
|
GtkMenuBar *menu_bar;
|
|
|
|
|
|
|
|
menu_bar = GTK_MENU_BAR (object);
|
|
|
|
|
|
|
|
switch (arg_id)
|
|
|
|
{
|
|
|
|
case ARG_SHADOW:
|
|
|
|
gtk_menu_bar_set_shadow_type (menu_bar, GTK_VALUE_ENUM (*arg));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
1998-11-16 09:05:26 +00:00
|
|
|
static void
|
|
|
|
gtk_menu_bar_get_arg (GtkObject *object,
|
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id)
|
|
|
|
{
|
|
|
|
GtkMenuBar *menu_bar;
|
|
|
|
|
|
|
|
menu_bar = GTK_MENU_BAR (object);
|
|
|
|
|
|
|
|
switch (arg_id)
|
|
|
|
{
|
|
|
|
case ARG_SHADOW:
|
|
|
|
GTK_VALUE_ENUM (*arg) = menu_bar->shadow_type;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
arg->type = GTK_TYPE_INVALID;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
GtkWidget*
|
1998-05-03 22:41:32 +00:00
|
|
|
gtk_menu_bar_new (void)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
|
|
|
return GTK_WIDGET (gtk_type_new (gtk_menu_bar_get_type ()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_menu_bar_append (GtkMenuBar *menu_bar,
|
|
|
|
GtkWidget *child)
|
|
|
|
{
|
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu_bar), child);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_menu_bar_prepend (GtkMenuBar *menu_bar,
|
|
|
|
GtkWidget *child)
|
|
|
|
{
|
|
|
|
gtk_menu_shell_prepend (GTK_MENU_SHELL (menu_bar), child);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_menu_bar_insert (GtkMenuBar *menu_bar,
|
|
|
|
GtkWidget *child,
|
|
|
|
gint position)
|
|
|
|
{
|
|
|
|
gtk_menu_shell_insert (GTK_MENU_SHELL (menu_bar), child, position);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_menu_bar_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition)
|
|
|
|
{
|
|
|
|
GtkMenuBar *menu_bar;
|
|
|
|
GtkMenuShell *menu_shell;
|
|
|
|
GtkWidget *child;
|
|
|
|
GList *children;
|
|
|
|
gint nchildren;
|
|
|
|
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BAR (widget));
|
|
|
|
g_return_if_fail (requisition != NULL);
|
|
|
|
|
|
|
|
requisition->width = 0;
|
|
|
|
requisition->height = 0;
|
|
|
|
|
|
|
|
if (GTK_WIDGET_VISIBLE (widget))
|
|
|
|
{
|
|
|
|
menu_bar = GTK_MENU_BAR (widget);
|
|
|
|
menu_shell = GTK_MENU_SHELL (widget);
|
|
|
|
|
|
|
|
nchildren = 0;
|
|
|
|
children = menu_shell->children;
|
|
|
|
|
|
|
|
while (children)
|
|
|
|
{
|
|
|
|
child = children->data;
|
|
|
|
children = children->next;
|
|
|
|
|
|
|
|
if (GTK_WIDGET_VISIBLE (child))
|
|
|
|
{
|
|
|
|
GTK_MENU_ITEM (child)->show_submenu_indicator = FALSE;
|
|
|
|
gtk_widget_size_request (child, &child->requisition);
|
|
|
|
|
|
|
|
requisition->width += child->requisition.width;
|
|
|
|
requisition->height = MAX (requisition->height, child->requisition.height);
|
1998-04-06 02:00:48 +00:00
|
|
|
/* Support for the right justified help menu */
|
|
|
|
if ( (children == NULL) && (GTK_IS_MENU_ITEM(child))
|
|
|
|
&& (GTK_MENU_ITEM(child)->right_justify))
|
|
|
|
{
|
|
|
|
requisition->width += CHILD_SPACING;
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
nchildren += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
requisition->width += (GTK_CONTAINER (menu_bar)->border_width +
|
|
|
|
widget->style->klass->xthickness +
|
|
|
|
BORDER_SPACING) * 2;
|
|
|
|
requisition->height += (GTK_CONTAINER (menu_bar)->border_width +
|
|
|
|
widget->style->klass->ythickness +
|
|
|
|
BORDER_SPACING) * 2;
|
|
|
|
|
|
|
|
if (nchildren > 0)
|
|
|
|
requisition->width += 2 * CHILD_SPACING * (nchildren - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_menu_bar_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
|
|
|
GtkMenuBar *menu_bar;
|
|
|
|
GtkMenuShell *menu_shell;
|
|
|
|
GtkWidget *child;
|
|
|
|
GList *children;
|
|
|
|
GtkAllocation child_allocation;
|
|
|
|
guint offset;
|
|
|
|
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BAR (widget));
|
|
|
|
g_return_if_fail (allocation != NULL);
|
|
|
|
|
|
|
|
menu_bar = GTK_MENU_BAR (widget);
|
|
|
|
menu_shell = GTK_MENU_SHELL (widget);
|
|
|
|
|
|
|
|
widget->allocation = *allocation;
|
|
|
|
if (GTK_WIDGET_REALIZED (widget))
|
|
|
|
gdk_window_move_resize (widget->window,
|
|
|
|
allocation->x, allocation->y,
|
|
|
|
allocation->width, allocation->height);
|
|
|
|
|
|
|
|
if (menu_shell->children)
|
|
|
|
{
|
|
|
|
child_allocation.x = (GTK_CONTAINER (menu_bar)->border_width +
|
|
|
|
widget->style->klass->xthickness +
|
|
|
|
BORDER_SPACING);
|
|
|
|
offset = child_allocation.x; /* Window edge to menubar start */
|
|
|
|
|
|
|
|
child_allocation.y = (GTK_CONTAINER (menu_bar)->border_width +
|
|
|
|
widget->style->klass->ythickness +
|
|
|
|
BORDER_SPACING);
|
1998-04-07 23:59:25 +00:00
|
|
|
child_allocation.height = MAX (1, allocation->height - child_allocation.y * 2);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
children = menu_shell->children;
|
|
|
|
while (children)
|
|
|
|
{
|
|
|
|
child = children->data;
|
|
|
|
children = children->next;
|
|
|
|
|
|
|
|
/* Support for the right justified help menu */
|
|
|
|
if ( (children == NULL) && (GTK_IS_MENU_ITEM(child))
|
1998-04-06 02:00:48 +00:00
|
|
|
&& (GTK_MENU_ITEM(child)->right_justify))
|
|
|
|
{
|
|
|
|
child_allocation.x = allocation->width -
|
|
|
|
child->requisition.width - CHILD_SPACING - offset;
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
if (GTK_WIDGET_VISIBLE (child))
|
|
|
|
{
|
|
|
|
child_allocation.width = child->requisition.width;
|
|
|
|
|
|
|
|
gtk_widget_size_allocate (child, &child_allocation);
|
|
|
|
|
|
|
|
child_allocation.x += child_allocation.width + CHILD_SPACING * 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-16 09:05:26 +00:00
|
|
|
void
|
|
|
|
gtk_menu_bar_set_shadow_type (GtkMenuBar *menu_bar,
|
|
|
|
GtkShadowType type)
|
|
|
|
{
|
|
|
|
g_return_if_fail (menu_bar != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BAR (menu_bar));
|
|
|
|
|
|
|
|
if ((GtkShadowType) menu_bar->shadow_type != type)
|
|
|
|
{
|
|
|
|
menu_bar->shadow_type = type;
|
|
|
|
|
|
|
|
if (GTK_WIDGET_DRAWABLE (menu_bar))
|
|
|
|
{
|
|
|
|
gtk_widget_queue_clear (GTK_WIDGET (menu_bar));
|
|
|
|
}
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (menu_bar));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
static void
|
1998-11-06 22:05:02 +00:00
|
|
|
gtk_menu_bar_paint (GtkWidget *widget, GdkRectangle *area)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BAR (widget));
|
|
|
|
|
|
|
|
if (GTK_WIDGET_DRAWABLE (widget))
|
|
|
|
{
|
1998-11-06 22:05:02 +00:00
|
|
|
gtk_paint_box (widget->style,
|
|
|
|
widget->window,
|
|
|
|
GTK_STATE_NORMAL,
|
1998-11-16 09:05:26 +00:00
|
|
|
GTK_MENU_BAR (widget)->shadow_type,
|
1998-11-06 22:05:02 +00:00
|
|
|
area, widget, "menubar",
|
|
|
|
0, 0,
|
|
|
|
-1,-1);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_menu_bar_draw (GtkWidget *widget,
|
|
|
|
GdkRectangle *area)
|
|
|
|
{
|
|
|
|
GtkMenuShell *menu_shell;
|
|
|
|
GtkWidget *child;
|
|
|
|
GdkRectangle child_area;
|
|
|
|
GList *children;
|
|
|
|
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BAR (widget));
|
|
|
|
g_return_if_fail (area != NULL);
|
|
|
|
|
|
|
|
if (GTK_WIDGET_DRAWABLE (widget))
|
|
|
|
{
|
1998-11-06 22:05:02 +00:00
|
|
|
gtk_menu_bar_paint (widget, area);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
menu_shell = GTK_MENU_SHELL (widget);
|
|
|
|
|
|
|
|
children = menu_shell->children;
|
|
|
|
while (children)
|
|
|
|
{
|
|
|
|
child = children->data;
|
|
|
|
children = children->next;
|
|
|
|
|
|
|
|
if (gtk_widget_intersect (child, area, &child_area))
|
|
|
|
gtk_widget_draw (child, &child_area);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
gtk_menu_bar_expose (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event)
|
|
|
|
{
|
|
|
|
GtkMenuShell *menu_shell;
|
|
|
|
GdkEventExpose child_event;
|
|
|
|
GList *children;
|
1998-11-06 22:05:02 +00:00
|
|
|
GtkWidget *child;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_MENU_BAR (widget), FALSE);
|
|
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
|
|
|
|
|
|
|
if (GTK_WIDGET_DRAWABLE (widget))
|
|
|
|
{
|
1998-11-06 22:05:02 +00:00
|
|
|
gtk_menu_bar_paint (widget, &event->area);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
menu_shell = GTK_MENU_SHELL (widget);
|
|
|
|
child_event = *event;
|
|
|
|
|
|
|
|
children = menu_shell->children;
|
|
|
|
while (children)
|
|
|
|
{
|
|
|
|
child = children->data;
|
|
|
|
children = children->next;
|
|
|
|
|
|
|
|
if (GTK_WIDGET_NO_WINDOW (child) &&
|
|
|
|
gtk_widget_intersect (child, &event->area, &child_event.area))
|
|
|
|
gtk_widget_event (child, (GdkEvent*) &child_event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|