X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=sidebyside;f=shell%2Fev-properties-dialog.c;h=c829b3c6a4718803cd3657245d8484d018067f1b;hb=761de5f5ba44cc94c98adf2b68809ea453d6bdfa;hp=b19408e2bc5c2723a54e361938c8f078549b19eb;hpb=34148304a0237fd9fd7c4ea05ca2e053d9ddd3ff;p=evince.git diff --git a/shell/ev-properties-dialog.c b/shell/ev-properties-dialog.c index b19408e2..c829b3c6 100644 --- a/shell/ev-properties-dialog.c +++ b/shell/ev-properties-dialog.c @@ -29,6 +29,7 @@ #include "ev-properties-dialog.h" #include "ev-properties-fonts.h" #include "ev-properties-view.h" +#include "ev-properties-license.h" struct _EvPropertiesDialog { GtkDialog base_instance; @@ -37,6 +38,7 @@ struct _EvPropertiesDialog { GtkWidget *notebook; GtkWidget *general_page; GtkWidget *fonts_page; + GtkWidget *license_page; }; struct _EvPropertiesDialogClass { @@ -107,6 +109,19 @@ ev_properties_dialog_set_document (EvPropertiesDialog *properties, ev_properties_fonts_set_document (EV_PROPERTIES_FONTS (properties->fonts_page), document); } + + if (info->fields_mask & EV_DOCUMENT_INFO_LICENSE && info->license) { + if (properties->license_page == NULL) { + label = gtk_label_new (_("Document License")); + properties->license_page = ev_properties_license_new (); + gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook), + properties->license_page, label); + gtk_widget_show (properties->license_page); + } + + ev_properties_license_set_license + (EV_PROPERTIES_LICENSE (properties->license_page), info->license); + } } GtkWidget *