]> www.fi.muni.cz Git - evince.git/blob - shell/ev-properties-dialog.c
Update FSF address everywhere.
[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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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 #include "ev-properties-license.h"
33
34 struct _EvPropertiesDialog {
35         GtkDialog base_instance;
36
37         EvDocument *document;
38         GtkWidget *notebook;
39         GtkWidget *general_page;
40         GtkWidget *fonts_page;
41         GtkWidget *license_page;
42 };
43
44 struct _EvPropertiesDialogClass {
45         GtkDialogClass base_class;
46 };
47
48 G_DEFINE_TYPE (EvPropertiesDialog, ev_properties_dialog, GTK_TYPE_DIALOG)
49
50 static void
51 ev_properties_dialog_class_init (EvPropertiesDialogClass *properties_class)
52 {
53 }
54
55 static void
56 ev_properties_dialog_init (EvPropertiesDialog *properties)
57 {
58         GtkBox *content_area;
59
60         content_area = GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (properties)));
61
62         gtk_window_set_title (GTK_WINDOW (properties), _("Properties"));
63         gtk_window_set_destroy_with_parent (GTK_WINDOW (properties), TRUE);
64         gtk_dialog_set_has_separator (GTK_DIALOG (properties), FALSE);
65         gtk_container_set_border_width (GTK_CONTAINER (properties), 5);
66         gtk_box_set_spacing (content_area, 2);
67
68         gtk_dialog_add_button (GTK_DIALOG (properties), GTK_STOCK_CLOSE,
69                                GTK_RESPONSE_CANCEL);
70         gtk_dialog_set_default_response (GTK_DIALOG (properties), 
71                                          GTK_RESPONSE_CANCEL);
72
73         properties->notebook = gtk_notebook_new ();
74         gtk_container_set_border_width (GTK_CONTAINER (properties->notebook), 5);
75         gtk_box_pack_start (content_area, properties->notebook, TRUE, TRUE, 0);
76         gtk_widget_show (properties->notebook);
77
78         g_signal_connect (properties, "response",
79                           G_CALLBACK (gtk_widget_destroy), NULL);
80 }
81
82 void
83 ev_properties_dialog_set_document (EvPropertiesDialog *properties,
84                                    const gchar        *uri,
85                                    EvDocument         *document)
86 {
87         GtkWidget *label;
88         const EvDocumentInfo *info;
89
90         properties->document = document;
91
92         info = ev_document_get_info (document);
93
94         if (properties->general_page == NULL) {
95                 label = gtk_label_new (_("General"));
96                 properties->general_page = ev_properties_view_new (uri);
97                 gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook),
98                                           properties->general_page, label);
99                 gtk_widget_show (properties->general_page);
100         }
101         ev_properties_view_set_info (EV_PROPERTIES_VIEW (properties->general_page), info);
102
103         if (EV_IS_DOCUMENT_FONTS (document)) {
104                 if (properties->fonts_page == NULL) {
105                         label = gtk_label_new (_("Fonts"));
106                         properties->fonts_page = ev_properties_fonts_new ();
107                         gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook),
108                                                   properties->fonts_page, label);
109                         gtk_widget_show (properties->fonts_page);
110                 }
111
112                 ev_properties_fonts_set_document
113                         (EV_PROPERTIES_FONTS (properties->fonts_page), document);
114         }
115
116         if (info->fields_mask & EV_DOCUMENT_INFO_LICENSE && info->license) {
117                 if (properties->license_page == NULL) {
118                         label = gtk_label_new (_("Document License"));
119                         properties->license_page = ev_properties_license_new ();
120                         gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook),
121                                                   properties->license_page, label);
122                         gtk_widget_show (properties->license_page);
123                 }
124
125                 ev_properties_license_set_license
126                         (EV_PROPERTIES_LICENSE (properties->license_page), info->license);
127         }
128 }
129
130 GtkWidget *
131 ev_properties_dialog_new ()
132 {
133         EvPropertiesDialog *properties;
134
135         properties = g_object_new (EV_TYPE_PROPERTIES_DIALOG, NULL);
136
137         return GTK_WIDGET (properties);
138 }