Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/properties/ev-properties-view.c
Commit message (Collapse)AuthorAgeFilesLines
* No need for a configure check; just use the GTK_CHECK_VERSION macro. BugChristian Persch2007-05-081-3/+4
| | | | | | | | | | | | 2007-05-08 Christian Persch <chpe@gnome.org> * configure.ac: * properties/ev-properties-view.c: No need for a configure check; just use the GTK_CHECK_VERSION macro. Bug #382438. svn path=/trunk/; revision=2440
* Use gtk+ builtin paper list to identify the document's paper size. FixesCarlos Garcia Campos2007-05-081-0/+105
| | | | | | | | | | 2007-05-08 Carlos Garcia Campos <carlosgc@gnome.org> * configure.ac: * properties/ev-properties-view.c: (ev_regular_paper_size): Use gtk+ builtin paper list to identify the document's paper size. Fixes bug #382438. svn path=/trunk/; revision=2438
* Add missing chain to parent class methods. Fixes bug #433128.Nickolay V. Shmyrev2007-04-291-0/+2
| | | | | | | | | | | | | | | | | | | | 2007-04-29 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * cut-n-paste/recent-files/egg-recent-view-uimanager.c: (egg_recent_view_uimanager_finalize): * properties/ev-properties-view.c: (ev_properties_view_dispose): * shell/ev-page-action-widget.c: (ev_page_action_widget_finalize): * shell/ev-pixbuf-cache.c: (ev_pixbuf_cache_finalize), (ev_pixbuf_cache_dispose): * shell/ev-properties-fonts.c: (ev_properties_fonts_dispose): * shell/ev-tooltip.c: (ev_tooltip_dispose): Add missing chain to parent class methods. Fixes bug #433128. svn path=/trunk/; revision=2428
* Check for NL_MEASUREMENT. Fixes bug #376469. Thanks to Damien CarberyNickolay V. Shmyrev2006-12-211-4/+41
| | | | | | | | | | | | 2006-12-21 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * configure.ac: * properties/ev-properties-view.c: (ev_get_default_user_units), (ev_regular_paper_size): Check for NL_MEASUREMENT. Fixes bug #376469. Thanks to Damien Carbery <damien.carbery@sun.com> and Yevgen Muntyan <muntyan@tamu.edu>.
* Adds a paper size field to the properties dialog. Fixes bug #307315. PatchWouter Bolsterlee2006-12-041-2/+110
| | | | | | | | | | | | | | | 2006-12-04 Wouter Bolsterlee <wbolster@cvs.gnome.org> * backend/ev-document-info.h: * data/evince-properties.glade: * pdf/ev-poppler.cc: * properties/ev-properties-view.c: (ev_regular_paper_size), (ev_properties_view_set_info): * ps/ps-document.c: (ps_document_get_info): Adds a paper size field to the properties dialog. Fixes bug #307315. Patch by Kasper Svendsen (with some i18n changes done by me).
* Check if date is invalid. Fix for bug 318134.Nickolay V. Shmyrev2005-10-111-1/+1
| | | | | | | * properties/ev-properties-view.c: (ev_properties_view_format_date): Check if date is invalid. Fix for bug 318134.
* Set textdomain to libglade. Fixes translation problem in property page.Nickolay V. Shmyrev2005-08-251-1/+1
|
* Plug a mem leak. HIG spacings.Christian Persch2005-07-051-0/+1
| | | | | | | | | 2005-07-05 Christian Persch <chpe@cvs.gnome.org> * properties/ev-properties-view.c: (ev_properties_view_set_info): Plug a mem leak. * shell/ev-properties-dialog.c: (ev_properties_dialog_init): HIG spacings.
* Implement nautilus plugin for properties. Works only for pdf atm, I needMarco Pesenti Gritti2005-07-041-0/+6
| | | | | | | | | | | | | | | | 2005-07-05 Marco Pesenti Gritti <mpg@redhat.com> * configure.ac: * properties/Makefile.am: * properties/ev-properties-view.c: (ev_properties_view_register_type): * properties/ev-properties-view.h: * properties/ev-properties-main.h: Implement nautilus plugin for properties. Works only for pdf atm, I need to rework the document types stuff to get this to work for all backends...
* Split the properties pages in two different objects, depend only on theMarco Pesenti Gritti2005-07-041-0/+262
2005-07-04 Marco Pesenti Gritti <mpg@redhat.com> * Makefile.am: * configure.ac: * data/evince-properties.glade: * properties/.cvsignore: * properties/Makefile.am: * properties/ev-properties-view.c: (ev_properties_view_dispose), (ev_properties_view_class_init), (ev_properties_view_format_date), (make_valid_utf8), (set_property), (ev_properties_view_set_info), (ev_properties_view_init), (ev_properties_view_new): * properties/ev-properties-view.h: * shell/Makefile.am: * shell/ev-properties-dialog.c: (ev_properties_dialog_class_init), (ev_properties_dialog_init), (ev_properties_dialog_set_document), (ev_properties_dialog_new): * shell/ev-properties-dialog.h: * shell/ev-properties-fonts.c: (ev_properties_fonts_dispose), (ev_properties_fonts_class_init), (ev_properties_fonts_init), (update_progress_label), (job_fonts_finished_cb), (ev_properties_fonts_set_document), (ev_properties_fonts_new): * shell/ev-properties-fonts.h: * shell/ev-properties.c: * shell/ev-properties.h: * shell/ev-window.c: (ev_window_setup_document), (ev_window_cmd_file_properties): Split the properties pages in two different objects, depend only on the backend where possible, use widgets instead of gobject for the glade part, reimplement the dialog itself with gtk. I need this to implement nautilus properties page.