]> www.fi.muni.cz Git - evince.git/blob - shell/ev-properties-dialog.c
dac890b8e51380a0ce5c3113a7dd1196317c54ca
[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 #if !GTK_CHECK_VERSION (2, 90, 7)
65         gtk_dialog_set_has_separator (GTK_DIALOG (properties), FALSE);
66 #endif
67         gtk_container_set_border_width (GTK_CONTAINER (properties), 5);
68         gtk_box_set_spacing (content_area, 2);
69
70         gtk_dialog_add_button (GTK_DIALOG (properties), GTK_STOCK_CLOSE,
71                                GTK_RESPONSE_CANCEL);
72         gtk_dialog_set_default_response (GTK_DIALOG (properties), 
73                                          GTK_RESPONSE_CANCEL);
74
75         properties->notebook = gtk_notebook_new ();
76         gtk_container_set_border_width (GTK_CONTAINER (properties->notebook), 5);
77         gtk_box_pack_start (content_area, properties->notebook, TRUE, TRUE, 0);
78         gtk_widget_show (properties->notebook);
79
80         g_signal_connect (properties, "response",
81                           G_CALLBACK (gtk_widget_destroy), NULL);
82 }
83
84 void
85 ev_properties_dialog_set_document (EvPropertiesDialog *properties,
86                                    const gchar        *uri,
87                                    EvDocument         *document)
88 {
89         GtkWidget *label;
90         const EvDocumentInfo *info;
91
92         properties->document = document;
93
94         info = ev_document_get_info (document);
95
96         if (properties->general_page == NULL) {
97                 label = gtk_label_new (_("General"));
98                 properties->general_page = ev_properties_view_new (uri);
99                 gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook),
100                                           properties->general_page, label);
101                 gtk_widget_show (properties->general_page);
102         }
103         ev_properties_view_set_info (EV_PROPERTIES_VIEW (properties->general_page), info);
104
105         if (EV_IS_DOCUMENT_FONTS (document)) {
106                 if (properties->fonts_page == NULL) {
107                         label = gtk_label_new (_("Fonts"));
108                         properties->fonts_page = ev_properties_fonts_new ();
109                         gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook),
110                                                   properties->fonts_page, label);
111                         gtk_widget_show (properties->fonts_page);
112                 }
113
114                 ev_properties_fonts_set_document
115                         (EV_PROPERTIES_FONTS (properties->fonts_page), document);
116         }
117
118         if (info->fields_mask & EV_DOCUMENT_INFO_LICENSE && info->license) {
119                 if (properties->license_page == NULL) {
120                         label = gtk_label_new (_("Document License"));
121                         properties->license_page = ev_properties_license_new ();
122                         gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook),
123                                                   properties->license_page, label);
124                         gtk_widget_show (properties->license_page);
125                 }
126
127                 ev_properties_license_set_license
128                         (EV_PROPERTIES_LICENSE (properties->license_page), info->license);
129         }
130 }
131
132 GtkWidget *
133 ev_properties_dialog_new ()
134 {
135         EvPropertiesDialog *properties;
136
137         properties = g_object_new (EV_TYPE_PROPERTIES_DIALOG, NULL);
138
139         return GTK_WIDGET (properties);
140 }