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