Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/sugar-menu.c
blob: f19dc4b80c84ed9e9ea715560738192603995364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * Copyright (C) 2006-2007, Red Hat, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#include <gtk/gtkwindow.h>

#include "sugar-menu.h"

static void sugar_menu_class_init (SugarMenuClass *menu_class);
static void sugar_menu_init       (SugarMenu *menu);


G_DEFINE_TYPE(SugarMenu, sugar_menu, GTK_TYPE_MENU)

void
sugar_menu_set_active(SugarMenu *menu, gboolean active)
{
    GTK_MENU_SHELL(menu)->active = active;
}

void
sugar_menu_embed(SugarMenu *menu, GtkContainer *parent)
{
    menu->orig_toplevel = GTK_MENU(menu)->toplevel;

    GTK_MENU(menu)->toplevel = gtk_widget_get_toplevel(GTK_WIDGET(parent));
    gtk_widget_reparent(GTK_WIDGET(menu), GTK_WIDGET(parent));
}

void
sugar_menu_unembed(SugarMenu *menu)
{
    if (menu->orig_toplevel) {
        GTK_MENU(menu)->toplevel = menu->orig_toplevel;
        gtk_widget_reparent(GTK_WIDGET(menu), GTK_WIDGET(menu->orig_toplevel));
    }
}

static void
sugar_menu_class_init(SugarMenuClass *menu_class)
{
}

static void
sugar_menu_init(SugarMenu *menu)
{
    menu->orig_toplevel = NULL;
}