]> www.fi.muni.cz Git - evince.git/blob - shell/ev-properties-dialog.c
Remove EvPageCache and use EvDocumentModel instead
[evince.git] / shell / ev-properties-dialog.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
2 /* this file is part of evince, a gnome document viewer
3  *
4  *  Copyright (C) 2005 Red Hat, Inc
5  *
6  * Evince is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Evince is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
24
25 #include <glib/gi18n.h>
26 #include <gtk/gtk.h>
27
28 #include "ev-document-fonts.h"
29 #include "ev-properties-dialog.h"
30 #include "ev-properties-fonts.h"
31 #include "ev-properties-view.h"
32
33 struct _EvPropertiesDialog {
34         GtkDialog base_instance;
35
36         EvDocument *document;
37         GtkWidget *notebook;
38         GtkWidget *general_page;
39         GtkWidget *fonts_page;
40 };
41
42 struct _EvPropertiesDialogClass {
43         GtkDialogClass base_class;
44 };
45
46 G_DEFINE_TYPE (EvPropertiesDialog, ev_properties_dialog, GTK_TYPE_DIALOG)
47
48 static void
49 ev_properties_dialog_class_init (EvPropertiesDialogClass *properties_class)
50 {
51 }
52
53 static void
54 ev_properties_dialog_init (EvPropertiesDialog *properties)
55 {
56         gtk_window_set_title (GTK_WINDOW (properties), _("Properties"));
57         gtk_window_set_destroy_with_parent (GTK_WINDOW (properties), TRUE);
58         gtk_dialog_set_has_separator (GTK_DIALOG (properties), FALSE);
59         gtk_container_set_border_width (GTK_CONTAINER (properties), 5);
60         gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (properties)->vbox), 2);
61
62         gtk_dialog_add_button (GTK_DIALOG (properties), GTK_STOCK_CLOSE,
63                                GTK_RESPONSE_CANCEL);
64         gtk_dialog_set_default_response (GTK_DIALOG (properties), 
65                                          GTK_RESPONSE_CANCEL);
66
67         properties->notebook = gtk_notebook_new ();
68         gtk_container_set_border_width (GTK_CONTAINER (properties->notebook), 5);
69         gtk_box_pack_start (GTK_BOX (GTK_DIALOG (properties)->vbox),
70                             properties->notebook, TRUE, TRUE, 0);
71         gtk_widget_show (properties->notebook);
72
73         g_signal_connect (properties, "response",
74                           G_CALLBACK (gtk_widget_destroy), NULL);
75 }
76
77 void
78 ev_properties_dialog_set_document (EvPropertiesDialog *properties,
79                                    const gchar        *uri,
80                                    EvDocument         *document)
81 {
82         GtkWidget *label;
83         const EvDocumentInfo *info;
84
85         properties->document = document;
86
87         info = ev_document_get_info (document);
88
89         if (properties->general_page == NULL) {
90                 label = gtk_label_new (_("General"));
91                 properties->general_page = ev_properties_view_new (uri);
92                 gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook),
93                                           properties->general_page, label);
94                 gtk_widget_show (properties->general_page);
95         }
96         ev_properties_view_set_info (EV_PROPERTIES_VIEW (properties->general_page), info);
97
98         if (EV_IS_DOCUMENT_FONTS (document)) {
99                 if (properties->fonts_page == NULL) {
100                         label = gtk_label_new (_("Fonts"));
101                         properties->fonts_page = ev_properties_fonts_new ();
102                         gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook),
103                                                   properties->fonts_page, label);
104                         gtk_widget_show (properties->fonts_page);
105                 }
106
107                 ev_properties_fonts_set_document
108                         (EV_PROPERTIES_FONTS (properties->fonts_page), document);
109         }
110 }
111
112 GtkWidget *
113 ev_properties_dialog_new ()
114 {
115         EvPropertiesDialog *properties;
116
117         properties = g_object_new (EV_TYPE_PROPERTIES_DIALOG, NULL);
118
119         return GTK_WIDGET (properties);
120 }