Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ev-properties-dialog.h File Reference
#include "ev-document.h"
+ Include dependency graph for ev-properties-dialog.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define EV_TYPE_PROPERTIES_DIALOG   (ev_properties_dialog_get_type())
 
#define EV_PROPERTIES_DIALOG(object)   (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_PROPERTIES_DIALOG, EvPropertiesDialog))
 
#define EV_PROPERTIES_DIALOG_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_PROPERTIES_DIALOG, EvPropertiesDialogClass))
 
#define EV_IS_PROPERTIES_DIALOG(object)   (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_PROPERTIES_DIALOG))
 
#define EV_IS_PROPERTIES_DIALOG_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE((klass), EV_TYPE_PROPERTIES_DIALOG))
 
#define EV_PROPERTIES_DIALOG_GET_CLASS(object)   (G_TYPE_INSTANCE_GET_CLASS((object), EV_TYPE_PROPERTIES_DIALOG, EvPropertiesDialogClass))
 

Typedefs

typedef typedefG_BEGIN_DECLS
struct _EvPropertiesDialog 
EvPropertiesDialog
 
typedef struct
_EvPropertiesDialogClass 
EvPropertiesDialogClass
 
typedef struct
_EvPropertiesDialogPrivate 
EvPropertiesDialogPrivate
 

Functions

GType ev_properties_dialog_get_type (void)
 
GtkWidget * ev_properties_dialog_new (void)
 
void ev_properties_dialog_set_document (EvPropertiesDialog *properties, const gchar *uri, EvDocument *document)
 

Macro Definition Documentation

#define EV_IS_PROPERTIES_DIALOG (   object)    (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_PROPERTIES_DIALOG))

Definition at line 35 of file ev-properties-dialog.h.

#define EV_IS_PROPERTIES_DIALOG_CLASS (   klass)    (G_TYPE_CHECK_CLASS_TYPE((klass), EV_TYPE_PROPERTIES_DIALOG))

Definition at line 36 of file ev-properties-dialog.h.

#define EV_PROPERTIES_DIALOG (   object)    (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_PROPERTIES_DIALOG, EvPropertiesDialog))

Definition at line 33 of file ev-properties-dialog.h.

#define EV_PROPERTIES_DIALOG_CLASS (   klass)    (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_PROPERTIES_DIALOG, EvPropertiesDialogClass))

Definition at line 34 of file ev-properties-dialog.h.

#define EV_PROPERTIES_DIALOG_GET_CLASS (   object)    (G_TYPE_INSTANCE_GET_CLASS((object), EV_TYPE_PROPERTIES_DIALOG, EvPropertiesDialogClass))

Definition at line 37 of file ev-properties-dialog.h.

#define EV_TYPE_PROPERTIES_DIALOG   (ev_properties_dialog_get_type())

Definition at line 32 of file ev-properties-dialog.h.

Typedef Documentation

typedef typedefG_BEGIN_DECLS struct _EvPropertiesDialog EvPropertiesDialog

Definition at line 28 of file ev-properties-dialog.h.

Definition at line 29 of file ev-properties-dialog.h.

typedef struct _EvPropertiesDialogPrivate EvPropertiesDialogPrivate

Definition at line 30 of file ev-properties-dialog.h.

Function Documentation

GType ev_properties_dialog_get_type ( void  )
GtkWidget* ev_properties_dialog_new ( void  )

Definition at line 121 of file ev-properties-dialog.c.

122 {
124 
125  properties = g_object_new (EV_TYPE_PROPERTIES_DIALOG,
126  "use-header-bar", TRUE, NULL);
127 
128  return GTK_WIDGET (properties);
129 }

+ Here is the caller graph for this function:

void ev_properties_dialog_set_document ( EvPropertiesDialog properties,
const gchar *  uri,
EvDocument document 
)

Definition at line 73 of file ev-properties-dialog.c.

76 {
77  GtkWidget *label;
78  const EvDocumentInfo *info;
79 
80  properties->document = document;
81 
82  info = ev_document_get_info (document);
83 
84  if (properties->general_page == NULL) {
85  label = gtk_label_new (_("General"));
86  properties->general_page = ev_properties_view_new (document);
87  gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook),
88  properties->general_page, label);
89  gtk_widget_show (properties->general_page);
90  }
92 
93  if (EV_IS_DOCUMENT_FONTS (document)) {
94  if (properties->fonts_page == NULL) {
95  label = gtk_label_new (_("Fonts"));
96  properties->fonts_page = ev_properties_fonts_new ();
97  gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook),
98  properties->fonts_page, label);
99  gtk_widget_show (properties->fonts_page);
100  }
101 
103  (EV_PROPERTIES_FONTS (properties->fonts_page), document);
104  }
105 
106  if (info->fields_mask & EV_DOCUMENT_INFO_LICENSE && info->license) {
107  if (properties->license_page == NULL) {
108  label = gtk_label_new (_("Document License"));
109  properties->license_page = ev_properties_license_new ();
110  gtk_notebook_append_page (GTK_NOTEBOOK (properties->notebook),
111  properties->license_page, label);
112  gtk_widget_show (properties->license_page);
113  }
114 
116  (EV_PROPERTIES_LICENSE (properties->license_page), info->license);
117  }
118 }

+ Here is the caller graph for this function: