]> www.fi.muni.cz Git - evince.git/blob - shell/ev-sidebar.c
forgot these
[evince.git] / shell / ev-sidebar.c
1 /* this file is part of evince, a gnome document viewer
2  *
3  *  Copyright (C) 2004 Red Hat, Inc.
4  *
5  *  Author:
6  *    Jonathan Blandford <jrb@alum.mit.edu>
7  *
8  * Evince is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * Evince is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <string.h>
28 #include <gtk/gtk.h>
29
30 #include "ev-sidebar.h"
31
32 struct _EvSidebarPrivate {
33         GtkWidget *option_menu;
34         GtkWidget *notebook;
35 };
36
37 G_DEFINE_TYPE (EvSidebar, ev_sidebar, GTK_TYPE_VBOX)
38
39 #define EV_SIDEBAR_GET_PRIVATE(object) \
40         (G_TYPE_INSTANCE_GET_PRIVATE ((object), EV_TYPE_SIDEBAR, EvSidebarPrivate))
41
42 static void
43 ev_sidebar_class_init (EvSidebarClass *ev_sidebar_class)
44 {
45         GObjectClass *g_object_class;
46
47         g_object_class = G_OBJECT_CLASS (ev_sidebar_class);
48
49         g_type_class_add_private (g_object_class, sizeof (EvSidebarPrivate));
50
51 }
52
53 static void
54 ev_sidebar_init (EvSidebar *ev_sidebar)
55 {
56         ev_sidebar->priv = EV_SIDEBAR_GET_PRIVATE (ev_sidebar);
57
58         ev_sidebar->priv->notebook = gtk_notebook_new ();
59
60         gtk_notebook_set_show_border (GTK_NOTEBOOK (ev_sidebar->priv->notebook), FALSE);
61         gtk_notebook_set_show_tabs (GTK_NOTEBOOK (ev_sidebar->priv->notebook), FALSE);
62         gtk_box_pack_start (GTK_BOX (ev_sidebar), ev_sidebar->priv->notebook,
63                             TRUE, TRUE, 0);
64         gtk_widget_show_all (ev_sidebar->priv->notebook);
65 }
66
67
68 GtkWidget *
69 ev_sidebar_new (void)
70 {
71         GtkWidget *ev_sidebar;
72
73         ev_sidebar = g_object_new (EV_TYPE_SIDEBAR, NULL);
74
75         return ev_sidebar;
76 }