]> www.fi.muni.cz Git - evince.git/blob - ChangeLog
Remove unused marshalers stuff from libdocument.
[evince.git] / ChangeLog
1 2009-01-18  Carlos Garcia Campos  <carlosgc@gnome.org>
2
3         * libdocument/Makefile.am:
4         * libdocument/ev-backend-marshal.c:
5         * libdocument/ev-backend-marshalers.list:
6         * libdocument/ev-document.c:
7
8         Remove unused marshalers stuff from libdocument.
9         
10 2009-01-18  Carlos Garcia Campos  <carlosgc@gnome.org>
11
12         * po/POTFILES.in:
13
14         Update for the current source tree.
15         
16 2009-01-18  Carlos Garcia Campos  <carlosgc@gnome.org>
17
18         * configure.ac:
19         * Makefile.am:
20         * libdocument/Makefile.am:
21         * libview/Makefile.am:
22         * libview/ev-job-scheduler.[ch]:
23         * libview/ev-jobs.[ch]:
24         * libview/ev-page-cache.[ch]:
25         * libview/ev-pixbuf-cache.[ch]:
26         * libview/ev-timeline.[ch]:
27         * libview/ev-transition-animation.[ch]:
28         * libview/ev-view-accessible.[ch]:
29         * libview/ev-view-marshal.list:
30         * libview/ev-view.[ch]:
31         * shell/Makefile.am:
32
33         Move EvView specific code to a libeviview library so that it can
34         be embbeded in other applications. Based on patches by Tomeu
35         Vizoso. Fixes bug #567751.
36         
37 2009-01-18  Carlos Garcia Campos  <carlosgc@gnome.org>
38
39         * shell/ev-jobs.[ch]: (ev_job_load_dispose), (ev_job_load_new):
40         * shell/ev-window.c: (ev_window_load_job_cb),
41         (ev_window_load_job_cb), (ev_window_open_uri),
42         (ev_window_reload_local), (ev_window_dispose):
43
44         Remove dest, mode and search_string from EvJobLoad since they are
45         not really needed by the job, but for the window.
46         
47 2009-01-17  Carlos Garcia Campos  <carlosgc@gnome.org>
48
49         * shell/ev-view.c: (ev_view_drag_data_received),
50         (ev_view_class_init), (ev_view_init):
51         * shell/ev-window.c: (ev_window_drag_data_received),
52         (ev_window_class_init), (ev_window_init):
53
54         Make the whole EvWindow the destination of a drag and drop
55         operation.
56         
57 2009-01-16  Carlos Garcia Campos  <carlosgc@gnome.org>
58
59         * shell/ev-window.c: (window_open_file_copy_progress_cb):
60
61         Add missing brakets around the percentage in progress
62         messages. See bug #567910.
63         
64 2009-01-16  Carlos Garcia Campos  <carlosgc@gnome.org>
65
66         * shell/ev-application.c: (ev_application_open_window),
67         (ev_application_open_uri_at_dest):
68
69         Do no use gdk_x11_* when not available. Based on patch by Hib
70         Eris, see bug #339172.
71         
72 2009-01-16  Hib Eris  <hib@hiberis.nl>
73
74         * configure.ac:
75         * properties/ev-properties-view.c:
76         (ev_properties_view_format_date):
77
78         Check for localtime_r. See bug #339172.
79         
80 2009-01-16  Hib Eris  <hib@hiberis.nl>
81
82         * shell/main.c:
83
84         Include gdkx only for dbus support. See bug #339172.
85         
86 2009-01-16  Tomeu Vizoso  <tomeu@sugarlabs.org>
87
88         * shell/ev-view.c: (ev_view_set_zoom_for_size):
89
90         Expose ev_view_set_zoom_for_size for embedders to use. Fixes bug
91         #567785.
92         
93 2009-01-16  Carlos Garcia Campos  <carlosgc@gnome.org>
94
95         * shell/ev-window.c: (reload_remote_copy_progress_cb),
96         (window_save_file_copy_progress_cb):
97
98         Use brakets around the percentage in progress messages. See bug
99         #567910.
100         
101 2009-01-16  Carlos Garcia Campos  <carlosgc@gnome.org>
102
103         * shell/ev-window.c: (reload_remote_copy_ready_cb):
104
105         Fix typo in error message. See bug #567910.
106         
107 2009-01-16  Carlos Garcia Campos  <carlosgc@gnome.org>
108
109         * shell/ev-window.c: (ev_window_cmd_file_close_window):
110
111         Fix mnemonic conflict. Fixes bug #567937.
112         
113 2009-01-05  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
114
115         * NEWS:
116         * configure.ac:
117
118         Update for release 2.25.4
119         
120 2009-01-02  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
121
122         * configure.ac:
123         
124         GLib version requirement bumped to 2.18 due to g_set_error_literal.
125         Thanks to Christian Spurk.
126
127 2008-12-31  Hib Eris  <hib@hiberis.nl>
128         
129         * libdocument/ev-file-helpers.c: (get_mime_type_from_uri):
130
131         Fix mime type handling.
132         
133 2008-12-31  Carlos Garcia Campos  <carlosgc@gnome.org>
134
135         * po/POTFILES.in:
136
137         Add ev-print-operation.c.
138         
139 2008-12-30  Carlos Garcia Campos  <carlosgc@gnome.org>
140
141         * shell/ev-window.c: (ev_window_clear_progress_idle),
142         (reset_progress_idle), (ev_window_show_progress_message),
143         (ev_window_reset_progress_cancellable),
144         (ev_window_progress_response_cb), (show_loading_progress),
145         (ev_window_load_remote_failed), (window_open_file_copy_ready_cb),
146         (window_open_file_copy_progress_cb), (ev_window_load_file_remote),
147         (show_reloading_progress), (reload_remote_copy_ready_cb),
148         (reload_remote_copy_progress_cb), (query_remote_uri_mtime_cb),
149         (show_saving_progress), (window_save_file_copy_ready_cb),
150         (window_save_file_copy_progress_cb), (ev_window_save_remote),
151         (ev_window_dispose):
152
153         Show progress information when loading/saving remote files. Fixes
154         bug #370958.
155         
156 2008-12-30  Carlos Garcia Campos  <carlosgc@gnome.org>
157
158         * libdocument/ev-file-helpers.c: (ev_tmp_file_unlink):
159
160         Show better warning message when temp file cannot be deleted.
161         
162 2008-12-30  Carlos Garcia Campos  <carlosgc@gnome.org>
163
164         * shell/ev-window.c: (image_save_dialog_response_cb):
165
166         Fix saving images to remote locations.
167         
168 2008-12-29  Carlos Garcia Campos  <carlosgc@gnome.org>
169
170         * shell/ev-application.[ch]: (ev_application_shutdown),
171         (ev_application_get_print_settings_file),
172         (ev_application_save_print_settings),
173         (ev_application_get_print_settings),
174         (ev_application_set_print_settings),
175         (ev_application_get_page_setup), (ev_application_set_page_setup):
176         * shell/ev-window.c: (ev_window_save_print_page_setup),
177         (ev_window_load_print_page_setup_from_metadata),
178         (ev_window_print_page_setup_done_cb),
179         (ev_window_cmd_file_print_setup), (ev_window_do_preview_print),
180         (ev_window_cmd_preview_print):
181
182         Remember page setup options too. Paper size is globally remembered
183         while page margins are stored per document in metadata file. Fixes
184         bugs #525185 and #349102.
185         
186 2008-12-29  Carlos Garcia Campos  <carlosgc@gnome.org>
187
188         * shell/ev-print-operation.c:
189         (ev_print_operation_export_print_dialog_response_cb):
190
191         Fallback to EV_FILE_FORMAT_PS when file_format is not defined.
192         
193 2008-12-28  Carlos Garcia Campos  <carlosgc@gnome.org>
194
195         * shell/ev-print-operation.c: (export_cancel),
196         (export_job_cancelled), (ev_print_operation_export_begin),
197         (ev_print_operation_export_cancel):
198         * shell/ev-window.c: (ev_window_print_cancel),
199         (ev_window_print_update_pending_jobs_message),
200         (ev_window_print_operation_done),
201         (ev_window_print_operation_status_changed),
202         (print_jobs_confirmation_dialog_response),
203         (ev_window_cmd_file_close_window):
204
205         Show a confirmation dialog when there are pending print jobs while
206         closing the main window. Fixes bug #480964.
207         
208 2008-12-27  Carlos Garcia Campos  <carlosgc@gnome.org>
209
210         * shell/ev-print-operation.[ch]: (ev_print_operation_class_init),
211         (ev_print_operation_get_job_name),
212         (ev_print_operation_get_status),
213         (ev_print_operation_get_progress),
214         (ev_print_operation_update_status),
215         (ev_print_operation_export_get_job_name), (clamp_ranges),
216         (get_first_and_last_page), (ev_print_operation_export_run_next),
217         (print_job_finished), (export_print_done), (export_job_cancelled),
218         (update_progress), (export_print_page),
219         (ev_print_operation_export_begin),
220         (ev_print_operation_export_print_dialog_response_cb),
221         (ev_print_operation_export_run),
222         (ev_print_operation_export_cancel),
223         (ev_print_operation_export_class_init):
224         * shell/ev-window.c:
225         (ev_window_print_update_pending_jobs_message),
226         (ev_window_print_operation_done),
227         (ev_window_print_progress_response_cb),
228         (ev_window_print_operation_status_changed),
229         (ev_window_print_operation_begin_print), (ev_window_print_range),
230         (ev_window_dispose):
231
232         Show progress information when printing. Fixes bug #482770.
233         
234 2008-12-27  Carlos Garcia Campos  <carlosgc@gnome.org>
235
236         * shell/Makefile.am:
237         * shell/ev-progress-message-area.[ch]:
238         * shell/ev-message-area.[ch]: (ev_message_area_init),
239         (ev_message_area_set_image_from_stock):
240
241         Add EvProgressMessageArea derived from EvMessageArea to show
242         progress information in the message area. 
243         
244 2008-12-27  Carlos Garcia Campos  <carlosgc@gnome.org>
245
246         * cut-n-paste/gedit-message-area/gedit-message-area.[ch]:
247
248         Use GTK_RESPONSE_CLOSE instead of GTK_RESPONSE_CANCEL for the
249         close button. Add a function to get the contents of the message
250         area.
251         
252 2008-12-24  Carlos Garcia Campos  <carlosgc@gnome.org>
253
254         * shell/Makefile.am:
255         * shell/ev-print-operation.[ch]:
256         * shell/ev-jobs.[ch]: (ev_job_export_init),
257         (ev_job_export_dispose), (ev_job_export_run),
258         (ev_job_export_class_init), (ev_job_export_new),
259         (ev_job_export_set_page):
260         * shell/ev-window.c: (ev_window_print_operation_done),
261         (ev_window_print_range), (ev_window_dispose):
262
263         First step of the printing system rework. EvJobPrint has been
264         replaced by EvJobExport so that every page is scheduled to be
265         exported in a thread instead of scheduling the whole printing
266         process. This way the gui is responsive during printing.
267         
268 2008-12-24  Carlos Garcia Campos  <carlosgc@gnome.org>
269
270         * shell/ev-window.c: (setup_size_from_metadata),
271         (ev_window_load_print_settings_from_metadata):
272
273         Fix memory leaks.
274         
275 2008-12-24  Carlos Garcia Campos  <carlosgc@gnome.org>
276
277         * libdocument/ev-document.c: (ev_document_get_type):
278
279         Add GObject type as prerequisite to EvDocument interface so that
280         document instances can be used as GObjects.
281         
282 2008-12-19  Carlos Garcia Campos  <carlosgc@gnome.org>
283
284         * shell/ev-view.c: (jump_to_find_result):
285
286         Only jump the the location of the find result for the first match
287         when searching. It drastically improves the performance when
288         searching. Bug catched and fixed by Michael Hunold. Fixes bug
289         #564774.
290         
291 2008-12-03  Carlos Garcia Campos  <carlosgc@gnome.org>
292
293         * properties/ev-properties-main.c: (ev_properties_get_pages):
294         * properties/ev-properties-view.[ch]:
295         (ev_properties_view_dispose), (ev_properties_view_class_init),
296         (ev_properties_view_set_info), (ev_properties_view_new):
297         * shell/ev-properties-dialog.[ch]:
298         (ev_properties_dialog_set_document):
299         * shell/ev-window.c: (ev_window_setup_document),
300         (ev_window_cmd_file_properties):
301
302         Add document URI to properties page. Fixes bug #555376.
303         
304 2008-12-03  Carlos Garcia Campos  <carlosgc@gnome.org>
305
306         * configure.ac:
307         * data/Makefile.am:
308         * data/evince-password.glade: Removed
309         * data/evince-properties.glade: Removed
310         * properties/ev-properties-view.c:
311         (ev_properties_view_class_init), (set_property),
312         (ev_properties_view_set_info), (ev_properties_view_init):
313         * shell/ev-properties-fonts.c: (ev_properties_fonts_dispose),
314         (font_cell_data_func), (ev_properties_fonts_init):
315
316         Remove Glade dependency.
317         
318 2008-12-03  Carlos Garcia Campos  <carlosgc@gnome.org>
319
320         * backend/comics/comics-document.c: (comics_document_load):
321
322         Fix zip mime-type in comics backend. Patch by Juanjo Marín.
323         
324 2008-12-01  Carlos Garcia Campos  <carlosgc@gnome.org>
325
326         * NEWS:
327         * configure.ac:
328
329         Update for release 2.25.2
330         
331 2008-12-01  Carlos Garcia Campos  <carlosgc@gnome.org>
332
333         * configure.ac:
334         * shell/Makefile.am:
335         * shell/ev-keyring.[ch]:
336         * shell/ev-password.[ch]: Removed
337         * shell/ev-password-view.[ch]: (ev_password_view_finalize),
338         (ev_password_view_class_init), (ev_password_view_clicked_cb),
339         (ev_password_view_init), (ev_password_view_set_uri),
340         (ev_password_dialog_got_response),
341         (ev_password_dialog_remember_button_toggled),
342         (ev_password_dialog_entry_changed_cb),
343         (ev_password_dialog_entry_activated_cb),
344         (ev_password_view_ask_password), (ev_password_view_get_password),
345         (ev_password_view_get_password_save_flags),
346         (ev_password_view_new):
347         * shell/ev-window.c: (ev_window_password_view_unlock),
348         (ev_window_load_job_cb), (ev_window_close_dialogs),
349         (ev_window_init):
350
351         Rework the password view. When the password is in the keyring it's
352         used automatically without showing the password dialog and it's  
353         only stored in the keyring when we are sure it's correct. The
354         password dialog has been reworked too, in order to make it
355         more hig compliant and consistent with the GTK+ dialog used in
356         gtkmountoperation. Fixes bug #562496. 
357         
358 2008-11-29  Carlos Garcia Campos  <carlosgc@gnome.org>
359
360         * backend/comics/comics-document.c: (comics_document_load):
361
362         Do not trust file extensions when getting the command needed to
363         uncompress comic documents. Fixes bug #562143.
364         
365 2008-11-29  Carlos Garcia Campos  <carlosgc@gnome.org>
366
367         * libdocument/ev-document-factory.c: (get_document_from_uri),
368         (ev_document_factory_get_document):
369         * libdocument/ev-file-helpers.[ch]: (get_mime_type_from_uri),
370         (get_mime_type_from_data), (ev_file_get_mime_type):
371
372         Move mime-type functions from document-facrory to file-helpers so
373         that it can be reused.
374         
375 2008-11-29  Carlos Garcia Campos  <carlosgc@gnome.org>
376
377         * shell/ev-window.c: (ev_window_load_job_cb), (set_uri_mtime),
378         (window_open_file_copy_ready_cb), (ev_window_reload_local),
379         (reload_remote_copy_ready_cb), (query_remote_uri_mtime_cb),
380         (ev_window_reload_remote), (ev_window_reload_document):
381
382         Add support for reloading remote documents. Fixes bug #555399.
383         
384 2008-11-23  Carlos Garcia Campos  <carlosgc@gnome.org>
385
386         * shell/ev-view.c: (ev_view_find_previous):
387
388         Make sure find_result is never < 0 which causes a crash while
389         searching. Fixes bug #558377.
390         
391 2008-11-19  Marek Kašík <mkasik@redhat.com>
392
393         * shell/ev-pixbuf-cache.c (new_selection_surface_needed),
394         (ev_pixbuf_cache_get_selection_surface):
395         
396         Fixes crash on fast scrolling with simultaneous text selection.
397
398 2008-11-19  Marek Kašík <mkasik@redhat.com>
399
400         * shell/ev-pixbuf-cache.c (ev_pixbuf_cache_add_jobs_if_needed):
401         * shell/ev-window.c (launch_external_uri):
402         
403         Fixes assertion fail on selecting text. See bug #561393.
404
405 2008-11-15  Carlos Garcia Campos  <carlosgc@gnome.org>
406
407         * shell/Makefile.am:
408         * shell/ev-jobs.[ch]: (ev_job_layers_init),
409         (ev_job_layers_dispose), (ev_job_layers_run),
410         (ev_job_layers_class_init), (ev_job_layers_new):
411         * shell/ev-sidebar-layers.[ch]:
412         * shell/ev-view.[ch]: (ev_view_form_field_button_create_widget),
413         (ev_view_form_field_text_save), (ev_view_form_field_choice_save),
414         (ev_view_reload_page), (ev_view_reload):
415         * shell/ev-window.c: (setup_sidebar_from_metadata),
416         (ev_window_sidebar_current_page_changed_cb),
417         (sidebar_layers_visibility_changed), (ev_window_init):
418
419         Add layers support.
420         
421 2008-11-15  Carlos Garcia Campos  <carlosgc@gnome.org>
422
423         * data/icons/22x22/actions/Makefile.am:
424         * data/icons/22x22/actions/eye.png:
425         * shell/ev-stock-icons.[ch]:
426         
427         Add eye icon from gimp to hide/show layers.
428         
429 2008-11-15  Carlos Garcia Campos  <carlosgc@gnome.org>
430
431         * configure.ac:
432         * cut-n-paste/Makefile.am:
433         * cut-n-paste/gimpcellrenderertoggle/Makefile.am:
434         * cut-n-paste/gimpcellrenderertoggle/gimpcellrenderertoggle.[ch]:
435         * cut-n-paste/gimpcellrenderertoggle/gimpwidgetsmarshal.list:
436
437         Add GimpCellRendererToggle from gimp slightly modified to fit our
438         needs. 
439         
440 2008-11-15  Carlos Garcia Campos  <carlosgc@gnome.org>
441
442         * configure.ac:
443         * backend/pdf/ev-poppler.cc:
444
445         Implement layers interface in PDF backend.
446         
447 2008-11-15  Carlos Garcia Campos  <carlosgc@gnome.org>
448
449         * libdocument/Makefile.am:
450         * libdocument/ev-document-layers.[ch]:
451         * libdocument/ev-layer.[ch]:
452
453         Add optional content (layers) interface.
454         
455 2008-11-12  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
456
457         * cut-n-paste/toolbar-editor/eggtreemultidnd.c:
458         * cut-n-paste/toolbar-editor/eggtreemultidnd.h:
459
460         Removes unused code.
461
462 2008-11-05  Carlos Garcia Campos  <carlosgc@gnome.org>
463
464         * NEWS:
465         * configure.ac:
466
467         Update for 2.25.1 release
468
469 2008-11-05  Carlos Garcia Campos  <carlosgc@gnome.org>
470
471         * shell/ev-window.c:
472
473         Fix build with GTK+ < 2.14
474
475 2008-11-05  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
476
477         * cut-n-paste/zoom-control/ephy-zoom-action.c (create_menu_item):
478         
479         Makes menu label translatable. Fixes bug #559129.
480
481 2008-11-04  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
482
483         * backend/dvi/mdvi-lib/t1.c (t1_reset_resolution),
484         (t1_transform_font):
485         * backend/dvi/mdvi-lib/tt.c (tt_really_load_font), (tt_load_font):
486         
487         More renames of warning to mdvi_warning in follow up to the
488         fix of the bug #553369. Fix for the bug #559257 by
489         Tuxce <tuxce.net@gmail.com>.
490         
491 2008-11-02  Carlos Garcia Campos  <carlosgc@gnome.org>
492
493         * shell/ev-application.c: (ev_application_init_session):
494         * shell/main.c: (main):
495
496         Move the egg_set_desktop_file() call to main and remove
497         gtk_window_set_default_icon_name() since it's already called by
498         egg_set_desktop_file()
499         
500 2008-11-01  Carlos Garcia Campos  <carlosgc@gnome.org>
501
502         * libdocument/ev-file-helpers.c: (ev_xfer_uri_simple):
503
504         Initialize GError to NULL.
505         
506 2008-11-01  Carlos Garcia Campos  <carlosgc@gnome.org>
507
508         * shell/ev-window.c: (window_save_file_copy_ready_cb),
509         (ev_window_print_finished), (ev_window_print_dialog_response_cb),
510         (ev_window_preview_print_finished), (launch_action):
511
512         Do not use popup dialogs to show error messages anymore, use the
513         message area instead.
514         
515 2008-11-01  Carlos Garcia Campos  <carlosgc@gnome.org>
516
517         * shell/ev-window.c: (ev_window_error_message),
518         (ev_window_warning_message), (ev_window_set_document),
519         (ev_window_load_job_cb), (ev_window_load_remote_failed),
520         (ev_window_cmd_file_open_copy_at_dest), (ev_window_save_job_cb),
521         (ev_window_cmd_help_contents), (launch_external_uri),
522         (image_save_dialog_response_cb), (image_save_dialog_response_cb),
523         (ev_attachment_popup_cmd_open_attachment),
524         (attachment_save_dialog_response_cb):
525
526         Use a message format (with printf()-style) in
527         ev_window_error_message and ev_window_warning_message.
528
529 2008-11-01  Carlos Garcia Campos  <carlosgc@gnome.org>
530
531         * shell/ev-window.c: (ev_window_error_message),
532         (ev_window_warning_message), (ev_window_set_document),
533         (ev_window_load_job_cb), (ev_window_load_remote_failed),
534         (ev_window_cmd_file_open_copy_at_dest), (ev_window_save_job_cb),
535         (ev_window_cmd_help_contents), (launch_external_uri),
536         (image_save_dialog_response_cb),
537         (ev_attachment_popup_cmd_open_attachment),
538         (attachment_save_dialog_response_cb):
539
540         Change ev_window_error_message and ev_window_warning_message to
541         receive a EvWindow instead of a GtkWindow. It's more consistent
542         and avoids unneeded casts.
543         
544 2008-11-01  Carlos Garcia Campos  <carlosgc@gnome.org>
545
546         * shell/ev-window.c: (ev_window_cmd_help_contents):
547
548         Use gtk_show_uri() when availale to display help contents.
549         
550 2008-10-31  Carlos Garcia Campos  <carlosgc@gnome.org>
551
552         * configure.ac:
553         * backend/pdf/ev-poppler.cc:
554         * properties/ev-properties-view.c:
555         * shell/Makefile.am:
556         * shell/ev-tooltip.[ch]: Removed
557         * shell/ev-view-private.h
558         * shell/eggfindbar.c:
559         * shell/ev-application.c:
560         * shell/ev-open-recent-action.c:
561         * shell/ev-sidebar-thumbnails.c:
562         * shell/ev-view.c:
563         * shell/ev-window.c:
564
565         Bump GTK+ requirement to 2.12.
566         
567 2008-10-27 Christian Persch <chpe@gnome.org>
568
569         * backend/djvu/djvu-document.c
570         * backend/dvi/cairo-device.c
571         * cut-n-paste/evmountoperation/ev-mount-operation.h
572         * cut-n-paste/gedit-message-area/gedit-message-area.h
573         * cut-n-paste/toolbar-editor/egg-editable-toolbar.c
574         * cut-n-paste/toolbar-editor/egg-editable-toolbar.h
575         * cut-n-paste/toolbar-editor/egg-toolbar-editor.c
576         * cut-n-paste/toolbar-editor/egg-toolbar-editor.h
577         * cut-n-paste/toolbar-editor/egg-toolbars-model.c
578         * cut-n-paste/toolbar-editor/egg-toolbars-model.h
579         * cut-n-paste/toolbar-editor/eggtreemultidnd.c
580         * cut-n-paste/toolbar-editor/eggtreemultidnd.h
581         * cut-n-paste/zoom-control/ephy-zoom-action.c
582         * cut-n-paste/zoom-control/ephy-zoom-action.h
583         * cut-n-paste/zoom-control/ephy-zoom-control.c
584         * cut-n-paste/zoom-control/ephy-zoom-control.h
585         * libdocument/ev-async-renderer.h
586         * libdocument/ev-document-factory.c
587         * libdocument/ev-document-misc.h
588         * libdocument/ev-image.h
589         * libdocument/ev-selection.h
590         * shell/ev-properties-fonts.h
591         * shell/ev-stock-icons.h
592         * shell/ev-window.c: Only include glib.h, gdk/gdk.h and gtk/gtk.h
593         directly. Bug #558064.
594
595 2008-10-27 Christian Persch <chpe@gnome.org>
596
597         * cut-and-paste/smclient/*: Update from libegg.
598
599 2008-10-27 Christian Persch <chpe@gnome.org>
600
601         * backend/djvu/djvu-document.c
602         * backend/ps/ev-spectre.c
603         * shell/ev-jobs.c: Use printf safely. Bug #558066.
604
605 2008-10-24  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
606
607         * shell/ev-view.c (ev_view_change_page),
608         (ev_view_transition_animation_finish),
609         (ev_view_transition_animation_cancel), (page_changed_cb),
610         (ev_view_set_presentation), (ev_view_next_page),
611         (ev_view_previous_page):
612         
613         Cancel the animation without scheduling transition start
614         and proceed to the next page to fix bug #516749.
615
616 2008-10-19  Carlos Garcia Campos  <carlosgc@gnome.org>
617
618         * NEWS:
619         * configure.ac:
620
621         Update for release 2.24.1
622         
623 2008-10-17  Carlos Garcia Campos  <carlosgc@gnome.org>
624
625         * shell/ev-window.c: (ev_window_cmd_view_presentation):
626
627         Disable toggle function of F5 when in presentation mode. Patch by
628         Dave Neary. Fixes bug #556162.
629         
630 2008-10-17  Carlos Garcia Campos  <carlosgc@gnome.org>
631
632         * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_dispose),
633         (ev_sidebar_thumbnails_get_loading_icon), (clear_range),
634         (ev_sidebar_thumbnails_fill_model),
635         (ev_sidebar_thumbnails_refresh),
636         (ev_sidebar_thumbnails_set_document):
637
638         Instead of using only one loading icon for thumbnails based on the
639         size of the first page, create an icon for every different page
640         size. Fixes bug #556264.
641         
642 2008-10-17  Carlos Garcia Campos  <carlosgc@gnome.org>
643
644         * shell/ev-page-cache.c: (ev_page_cache_finalize):
645
646         Fix memory leak.
647         
648 2008-10-14  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
649
650         * shell/ev-window-title.c (ev_window_title_sanitize_title):
651
652         Removes bad prefixes from window title. Patch by 
653         Robin Sonefors <ozamosi@blinkenlights.se> fixes bug #534684.
654         
655 2008-10-12  Carlos Garcia Campos  <carlosgc@gnome.org>
656
657         * shell/ev-window.c: (launch_external_uri):
658
659         Do not consider mailto links as http uris. Fixes bug #555801.
660         
661 2008-10-06  Carlos Garcia Campos  <carlosgc@gnome.org>
662
663         * shell/ev-view.c: (merge_selection_region), (clear_selection):
664
665         Fix memory leak. Fixes bug #555134.
666         
667 2008-10-04  Carlos Garcia Campos  <carlosgc@gnome.org>
668
669         * shell/ev-pixbuf-cache.c: (copy_job_to_job_info):
670
671         Emit the job finished signal when the job is handled before the
672         page_ready callback.
673         
674 2008-10-04  Carlos Garcia Campos  <carlosgc@gnome.org>
675
676         * shell/ev-window.c: (launch_action):
677
678         Use GdkAppLaunchContext when available to launch external
679         applications.
680         
681 2008-10-04  Carlos Garcia Campos  <carlosgc@gnome.org>
682
683         * shell/ev-window.c: (launch_action):
684
685         Fix launching external applications for launch actions which seems
686         to be broken since the gio port. Fixes bug #554500.
687         
688 2008-09-28  Carlos Garcia Campos  <carlosgc@gnome.org>
689
690         * backend/dvi/Makefile.am:
691         * backend/dvi/cairo-device.c:
692         * backend/dvi/dvi-document.c:
693         * backend/dvi/mdvi-lib/Makefile.am:
694
695         Fix several compile warnings in the dvi backend.
696         
697 2008-09-28  Carlos Garcia Campos  <carlosgc@gnome.org>
698
699         * backend/dvi/mdvi-lib/common.h:
700         * backend/dvi/mdvi-lib/dviread.c:
701         * backend/dvi/mdvi-lib/font.c:
702         * backend/dvi/mdvi-lib/fontmap.c:
703         * backend/dvi/mdvi-lib/fontsrch.c:
704         * backend/dvi/mdvi-lib/gf.c:
705         * backend/dvi/mdvi-lib/pagesel.c:
706         * backend/dvi/mdvi-lib/pk.c:
707         * backend/dvi/mdvi-lib/sp-epsf.c:
708         * backend/dvi/mdvi-lib/special.c:
709         * backend/dvi/mdvi-lib/tfm.c:
710         * backend/dvi/mdvi-lib/tfmfile.c:
711         * backend/dvi/mdvi-lib/util.c:
712         * backend/dvi/mdvi-lib/vf.c:
713
714         Rename error as mdvi_error to avoid symbol conflicts with the libc
715         error. Rename also message, crash, fatal and warning for
716         consistency. Fixes bug #553369.
717         
718 2008-09-28  Carlos Garcia Campos  <carlosgc@gnome.org>
719
720         * backend/dvi/dvi-document.c: (dvi_document_load):
721
722         Fix memory leak.
723         
724 2008-09-28  Carlos Garcia Campos  <carlosgc@gnome.org>
725
726         * backend/dvi/dvi-document.c:
727
728         Use EV_BACKEND_IMPLEMENT_INTERFACE instead of
729         G_IMPLEMENT_INTERFACE.
730         
731 2008-09-26  Carlos Garcia Campos  <carlosgc@gnome.org>
732
733         * shell/ev-pixbuf-cache.c: (copy_job_to_job_info):
734
735         Make sure copy_job_page_and_selection_to_job_info is always called
736         before copy_job_to_job_info. Fixes bug #552382.
737         
738 2008-09-22  Carlos Garcia Campos  <carlosgc@gnome.org>
739
740         * NEWS:
741         * configure.ac:
742
743         Update for release 2.24.0
744         
745 2008-09-13  Carlos Garcia Campos  <carlosgc@gnome.org>
746
747         * shell/ev-window.c: (launch_external_uri):
748
749         Use GdkAppLaunchContext when available to launch external uris.
750         
751 2008-09-13  Carlos Garcia Campos  <carlosgc@gnome.org>
752
753         * shell/ev-window.c: (launch_external_uri):
754
755         Use the message area to show errors when lauching external uris
756         instead of a popup window.
757         
758 2008-09-13  Carlos Garcia Campos  <carlosgc@gnome.org>
759
760         * shell/ev-window.c: (launch_external_uri):
761
762         Assume invalid uris are http uris. Fixes bug #552071.
763         
764 2008-09-09  Carlos Garcia Campos  <carlosgc@gnome.org>
765
766         * NEWS:
767         * configure.ac:
768
769         Update for release 2.23.92.
770         
771 2008-09-07  Carlos Garcia Campos  <carlosgc@gnome.org>
772
773         * shell/eggfindbar.c: (egg_find_bar_class_init):
774
775         Allow page scrolling with PageUp/PageDown keys when find bar is
776         active. Fixes bug #529833.
777         
778 2008-09-07  Carlos Garcia Campos  <carlosgc@gnome.org>
779
780         * shell/ev-view-private.h:
781         * shell/ev-view.[ch]: (add_scroll_binding_keypad),
782         (ev_view_scroll), (ev_view_class_init):
783         * shell/ev-view-accessible.c:
784         (ev_view_accessible_action_do_action):
785         * shell/ev-window.c: (ev_window_cmd_scroll_forward),
786         (ev_window_cmd_scroll_backward):
787
788         Use GtkScrollType instead of EvScrollType.
789         
790 2008-09-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
791
792         * shell/ev-page-cache.c (ev_page_cache_set_page_label):
793         
794         Patch for case unsensitive page label match by Michael Lee.
795         See bug #550136.
796         
797         * shell/ev-page-action.c (create_tool_item):    
798         * test/Makefile.am:
799         * test/test1.py:
800         * test/test4.py:
801         * test/test5.py:
802         
803         Added test for the above and updated other tests.
804
805 2008-09-07  Carlos Garcia Campos  <carlosgc@gnome.org>
806
807         * shell/ev-window.c: (image_save_dialog_response_cb):
808
809         Do not append the file extension twice when saving an image.
810         
811 2008-09-07  Carlos Garcia Campos  <carlosgc@gnome.org>
812
813         * backend/pdf/ev-poppler.cc: (pdf_document_images_get_image):
814
815         Remove an invalid ifdef.
816         
817 2008-09-05  Carlos Garcia Campos  <carlosgc@gnome.org>
818
819         * shell/ev-view.c: (ev_view_motion_notify_event):
820
821         Make sure the cursor is correctly restored after showing the right
822         click menu.
823         
824 2008-09-05  Carlos Garcia Campos  <carlosgc@gnome.org>
825
826         * libdocument/ev-attachment.[ch]: (ev_attachment_launch_app),
827         (ev_attachment_open):
828         * shell/ev-sidebar-attachments.c:
829         (ev_sidebar_attachments_button_press):
830         * shell/ev-window.c: (ev_attachment_popup_cmd_open_attachment):
831
832         Use GdkAppLaunchContext when available to open attachments.
833         
834 2008-09-04  Carlos Garcia Campos  <carlosgc@gnome.org>
835
836         * shell/ev-media-player-keys.c: (ev_media_player_keys_grab_keys):
837
838         Grab the mediakeys with a low priority. Fixes bug #547164. Patch
839         by Eric Piel.
840         
841 2008-09-04  Carlos Garcia Campos  <carlosgc@gnome.org>
842
843         * shell/ev-application.c: (ev_application_get_media_keys):
844         * shell/ev-media-player-keys.[ch]:
845         (ev_media_player_keys_class_init), (on_media_player_key_pressed),
846         (ev_media_player_keys_grab_keys),
847         (ev_media_player_keys_release_keys), (ev_media_player_keys_init),
848         (ev_media_player_keys_focused), (ev_media_player_keys_finalize):
849         * shell/ev-window.[ch]: (ev_window_dispose),
850         (view_actions_focus_in_cb), (ev_window_media_player_key_pressed),
851         (ev_window_init):
852
853         Clean up the media player keys stuff.
854         
855 2008-08-31  Carlos Garcia Campos  <carlosgc@gnome.org>
856
857         * NEWS:
858         * configure.ac:
859
860         Update for release 2.23.91.
861         
862 2008-08-31  Carlos Garcia Campos  <carlosgc@gnome.org>
863
864         * cut-n-paste/smclient/eggsmclient-xsmp.c:
865         (sm_client_xsmp_set_initial_properties):
866
867         Fix memory leak.
868         
869 2008-08-31  Carlos Garcia Campos  <carlosgc@gnome.org>
870
871         * shell/ev-application.c: (ev_application_open_window),
872         (ev_application_open_uri_at_dest):
873
874         Make sure evince starts up in the right workspace when resuming a
875         previous session.
876         
877 2008-08-31  Carlos Garcia Campos  <carlosgc@gnome.org>
878
879         * shell/ev-application.[ch]: (ev_application_open_window),
880         (ev_application_add_icon_path_for_screen),
881         (ev_application_open_uri_at_dest):
882
883         Fix window manager warnings shown in ~/.xsession-errors
884         
885 2008-08-31  Carlos Garcia Campos  <carlosgc@gnome.org>
886
887         * configure.ac:
888         * cut-n-paste/Makefile.am:
889         * cut-n-paste/smclient/Makefile.am:
890         * cut-n-paste/smclient/eggdesktopfile.[ch]:
891         * cut-n-paste/smclient/eggsmclient-private.h:
892         * cut-n-paste/smclient/eggsmclient-xsmp.c:
893         * cut-n-paste/smclient/eggsmclient.[ch]:
894
895         EggSMClient copied from libegg
896
897         * libdocument/ev-file-helpers.c: (ev_dot_dir):
898         * shell/Makefile.am:
899         * shell/ev-application.[ch]: (ev_application_load_session),
900         (smclient_save_state_cb), (smclient_quit_cb),
901         (ev_application_init_session), (ev_application_shutdown),
902         (ev_application_init):
903         * shell/main.c: (main):
904
905         Use EggSMClient instead of gnome-client and remove libgnome and
906         libgnomeui dependencies.
907         
908 2008-08-27  Carlos Garcia Campos  <carlosgc@gnome.org>
909
910         * shell/main.c: (main):
911
912         Remove gnome_authentication_manager_init.
913         
914 2008-08-27  Carlos Garcia Campos  <carlosgc@gnome.org>
915
916         * shell/ev-view.c: (ev_view_goto_window_create):
917
918         Use gtk_box_pack_start instead of gtk_box_pack_start_defaults
919         since it's now deprecated.
920         
921 2008-08-27  Carlos Garcia Campos  <carlosgc@gnome.org>
922
923         * backend/djvu/Makefile.am:
924         * backend/djvu/djvu-document-private.h:
925         * backend/djvu/djvu-document.c: (djvu_document_find_find_text),
926         (djvu_document_find_iface_init):
927         * backend/djvu/djvu-text-page.[ch]:
928         * backend/djvu/djvu-text.[ch]: Removed
929         * backend/pdf/ev-poppler.cc: (pdf_document_find_find_text),
930         (pdf_document_find_iface_init):
931         * libdocument/ev-document-find.[ch]: (ev_document_find_find_text):
932         * shell/ev-jobs.[ch]: (ev_job_find_init), (ev_job_find_dispose),
933         (ev_job_find_run), (ev_job_find_class_init), (ev_job_find_new),
934         (ev_job_find_get_n_results), (ev_job_find_get_progress),
935         (ev_job_find_has_results), (ev_job_find_get_results):
936         * shell/ev-view-private.h:
937         * shell/ev-view.[ch]: (ev_view_expose_event),
938         (highlight_find_results), (ev_view_finalize),
939         (ev_view_get_property), (ev_view_class_init), (page_changed_cb),
940         (ev_view_set_document), (ev_view_find_get_n_results),
941         (ev_view_find_get_result), (jump_to_find_result),
942         (jump_to_find_page), (ev_view_find_changed), (ev_view_find_next),
943         (ev_view_find_previous), (ev_view_find_search_changed),
944         (ev_view_find_set_highlight_search), (ev_view_find_cancel):
945         * shell/ev-window.c: (ev_window_update_actions),
946         (page_changed_cb), (ev_window_setup_document),
947         (ev_window_update_find_status_message),
948         (ev_window_find_job_finished_cb), (ev_window_find_job_updated_cb),
949         (ev_window_clear_find_job), (find_bar_close_cb),
950         (find_bar_search_changed_cb), (find_bar_visibility_changed_cb),
951         (ev_window_dispose), (ev_window_init):
952
953         Rework find interface. The find logic has been moved from backends
954         to the shell avoiding a lot of duplicated code in the backends and
955         making easier to implement the find interface in the backends.
956         
957 2008-08-25  Carlos Garcia Campos  <carlosgc@gnome.org>
958
959         * backend/pdf/ev-poppler.cc:
960         (pdf_document_thumbnails_get_dimensions):
961
962         Make sure thumbnail size returned by the PDF is actually
963         valid. Fixes bug #548462.
964         
965 2008-08-24  Carlos Garcia Campos  <carlosgc@gnome.org>
966
967         * shell/ev-window.c: (ev_window_setup_document),
968         (ev_window_set_document), (ev_window_dispose):
969
970         Remove the idle function for setting the document up when the
971         window is destroyed. Fixes bug #549163.
972         
973 2008-08-22  Carlos Garcia Campos  <carlosgc@gnome.org>
974
975         * shell/ev-jobs.[ch]: (ev_job_attachments_init),
976         (ev_job_attachments_dispose), (ev_job_attachments_run),
977         (ev_job_attachments_class_init), (ev_job_attachments_new):
978         * shell/ev-sidebar-attachments.c:
979         (ev_sidebar_attachments_set_document):
980
981         Add a new job to get the attachments in a thread with the document
982         lock held. Fixes bug #548653.
983         
984 2008-08-19  Carlos Garcia Campos  <carlosgc@gnome.org>
985
986         * backend/tiff/tiff-document.c: (tiff_document_get_page_label),
987         (tiff_document_document_iface_init):
988
989         Implement document_get_page_label in tiff backend.
990         
991 2008-08-19  Carlos Garcia Campos  <carlosgc@gnome.org>
992
993         * backend/tiff/tiff-document.c: (tiff_document_render):
994
995         Handle document orientation in tiff backend. Fixes bug #548444.
996         
997 2008-08-17  Carlos Garcia Campos  <carlosgc@gnome.org>
998
999         * shell/ev-sidebar-thumbnails.c: (adjustment_changed_cb):
1000
1001         Do not crash when adjustment page size is 0. Fixes bug #547440.
1002         
1003 2008-08-11  Carlos Garcia Campos  <carlosgc@gnome.org>
1004
1005         * cut-n-paste/evmountoperation/ev-mount-operation.c:
1006
1007         Sync with current GTK+.
1008         
1009 2008-08-06  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
1010
1011         * configure.ac:
1012         
1013         Update for release 2.23.6.
1014
1015 2008-08-06  Carlos Garcia Campos  <carlosgc@gnome.org>
1016
1017         * shell/ev-jobs.[ch]: (ev_job_load_dispose), (ev_job_load_run),
1018         (ev_job_load_set_password):
1019         * shell/ev-password.[ch]: (ev_password_dialog_get_password):
1020         * shell/ev-window.c: (password_dialog_response),
1021         (ev_window_load_job_cb):
1022
1023         Fix loading encrypted documents since I broke it with the jobs
1024         rework.
1025         
1026 2008-08-05  Carlos Garcia Campos  <carlosgc@gnome.org>
1027
1028         * NEWS:
1029
1030         Update NEWS for 2.23.6 release.
1031         
1032 2008-08-03  Wouter Bolsterlee  <wbolster@svn.gnome.org>
1033
1034         * backend/impress/impress-document.c:
1035         * backend/impress/render.h:
1036         * libdocument/ev-document-factory.c:
1037         * libdocument/ev-document-factory.h:
1038         * libdocument/ev-document-links.h:
1039         * libdocument/ev-document-misc.c:
1040         * libdocument/ev-document-misc.h:
1041         * properties/ev-properties-main.c:
1042         * properties/ev-properties-view.c:
1043         * properties/ev-properties-view.h:
1044         * shell/eggfindbar.c:
1045         * shell/eggfindbar.h:
1046         * shell/ev-application.c:
1047         * shell/ev-application.h:
1048         * shell/ev-jobs.h:
1049         * shell/ev-message-area.h:
1050         * shell/ev-navigation-action.c:
1051         * shell/ev-navigation-action.h:
1052         * shell/ev-open-recent-action.c:
1053         * shell/ev-open-recent-action.h:
1054         * shell/ev-page-action-widget.c:
1055         * shell/ev-page-action.c:
1056         * shell/ev-page-action.h:
1057         * shell/ev-page-cache.h:
1058         * shell/ev-password-view.h:
1059         * shell/ev-password.h:
1060         * shell/ev-pixbuf-cache.h:
1061         * shell/ev-properties-fonts.c:
1062         * shell/ev-sidebar-attachments.c:
1063         * shell/ev-sidebar-links.c:
1064         * shell/ev-sidebar-links.h:
1065         * shell/ev-sidebar-thumbnails.c:
1066         * shell/ev-sidebar-thumbnails.h:
1067         * shell/ev-sidebar.c:
1068         * shell/ev-sidebar.h:
1069         * shell/ev-stock-icons.c:
1070         * shell/ev-tooltip.h:
1071         * shell/ev-view.c:
1072         * shell/ev-view.h:
1073         * shell/ev-window.c:
1074         * shell/ev-window.h:
1075         * shell/main.c:
1076
1077         More #include cleanups. Again: reordering, single gtk.h
1078         includes and other stuff.
1079
1080 2008-08-03  Wouter Bolsterlee  <wbolster@svn.gnome.org>
1081
1082         * shell/eggfindbar.c:
1083         * shell/ev-application.c:
1084         * shell/ev-message-area.c:
1085         * shell/ev-navigation-action.c:
1086         * shell/ev-open-recent-action.c:
1087         * shell/ev-page-action-widget.c:
1088         * shell/ev-page-action.c:
1089         * shell/ev-password-view.c:
1090         * shell/ev-properties-dialog.c:
1091         * shell/ev-properties-fonts.c:
1092         * shell/ev-sidebar-attachments.c:
1093         * shell/ev-sidebar-page.c:
1094         * shell/ev-sidebar-thumbnails.c:
1095         * shell/ev-stock-icons.c:
1096         * shell/ev-tooltip.c:
1097         * shell/ev-view.c:
1098         * shell/ev-window.c:
1099         * shell/main.c:
1100
1101         Cleanup many #include statements: reorder so that a
1102         generic-to-specific order is used, use single gtk.h
1103         includes, and some other cleanups.
1104
1105 2008-08-03  Carlos Garcia Campos  <carlosgc@gnome.org>
1106
1107         * shell/ev-jobs.h:
1108
1109         Add gio header.
1110         
1111 2008-08-03  Carlos Garcia Campos  <carlosgc@gnome.org>
1112
1113         * libdocument/ev-document.[ch]: (ev_document_doc_mutex_trylock),
1114         (ev_document_fc_mutex_trylock):
1115         * shell/Makefile.am:
1116         * shell/ev-job-queue.[ch]:
1117         * shell/ev-job-scheduler.[ch]:
1118         * shell/ev-jobs.[ch]: (ev_job_init), (ev_job_dispose),
1119         (ev_job_class_init), (emit_finished), (ev_job_emit_finished),
1120         (ev_job_run), (ev_job_cancel), (ev_job_failed),
1121         (ev_job_failed_from_error), (ev_job_succeeded),
1122         (ev_job_is_finished), (ev_job_is_failed), (ev_job_get_run_mode),
1123         (ev_job_set_run_mode), (ev_job_links_init), (ev_job_links_run),
1124         (ev_job_links_class_init), (ev_job_render_init),
1125         (notify_page_ready), (ev_job_render_page_ready),
1126         (ev_job_render_run), (ev_job_render_class_init),
1127         (ev_job_thumbnail_init), (ev_job_thumbnail_run),
1128         (ev_job_thumbnail_class_init), (ev_job_fonts_init),
1129         (ev_job_fonts_run), (ev_job_fonts_class_init), (ev_job_load_init),
1130         (ev_job_load_run), (ev_job_load_class_init), (ev_job_save_init),
1131         (ev_job_save_dispose), (ev_job_save_run),
1132         (ev_job_save_class_init), (ev_job_print_init),
1133         (ev_job_print_dispose), (ev_job_print_run),
1134         (ev_job_print_class_init):
1135         * shell/ev-page-cache.c:
1136         * shell/ev-pixbuf-cache.[ch]: (dispose_cache_job_info),
1137         (check_job_size_and_unref), (move_one_job),
1138         (copy_job_to_job_info), (add_job),
1139         (ev_pixbuf_cache_add_jobs_if_needed):
1140         * shell/ev-properties-fonts.c: (ev_properties_fonts_dispose),
1141         (job_fonts_finished_cb), (job_fonts_updated_cb),
1142         (ev_properties_fonts_set_document):
1143         * shell/ev-sidebar-links.c: (ev_sidebar_links_dispose),
1144         (ev_sidebar_links_set_document):
1145         * shell/ev-sidebar-thumbnails.c: (clear_range), (add_range),
1146         (ev_sidebar_thumbnails_set_document),
1147         (ev_sidebar_thumbnails_clear_job):
1148         * shell/ev-view-private.h:
1149         * shell/ev-view.c:
1150         * shell/ev-window.c: (ev_window_clear_thumbnail_job),
1151         (ev_window_refresh_window_thumbnail), (password_dialog_response),
1152         (ev_window_clear_load_job), (ev_window_clear_reload_job),
1153         (ev_window_load_job_cb), (ev_window_reload_job_cb),
1154         (window_open_file_copy_ready_cb), (ev_window_open_uri),
1155         (ev_window_reload_document), (ev_window_clear_save_job),
1156         (ev_window_save_job_cb), (file_save_dialog_response_cb),
1157         (ev_window_clear_print_job), (ev_window_print_job_cb),
1158         (ev_window_print_dialog_response_cb):
1159         * shell/main.c: (main):
1160
1161         Rework the jobs system in order to make it simpler and more
1162         extensible. It allows to run jobs in the main loop instead of
1163         using a thread when it's appropriate like the fonts job. Now it's
1164         also possible to cancel jobs that are currently running. 
1165         
1166 2008-07-27  Carlos Garcia Campos  <carlosgc@gnome.org>
1167
1168         * libdocument/ev-debug.c: (profile_init):
1169
1170         Create the hash table also when profiling service is enabled for
1171         all sections.
1172         
1173 2008-07-27  Carlos Garcia Campos  <carlosgc@gnome.org>
1174
1175         * libdocument/ev-debug.[ch]: (ev_profiler_start),
1176         (ev_profiler_stop):
1177         * shell/ev-jobs.c: (ev_job_finished), (ev_job_links_run),
1178         (notify_page_ready), (ev_job_render_run), (ev_job_thumbnail_run),
1179         (ev_job_fonts_run), (ev_job_load_run), (ev_job_save_run),
1180         (ev_job_print_run):
1181         * shell/main.c: (main):
1182
1183         Add a profile mode available when debug is enabled. Add profilers
1184         in ev-jobs.
1185         
1186 2008-07-23  Götz Waschk <waschk@mandriva.org>
1187
1188         * configure.ac: Correctly build desktop file. Fixes
1189         bug #544237.
1190
1191 2008-07-22  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
1192
1193         * configure.ac:
1194         
1195         Update for release 2.23.5.
1196
1197 2008-07-21  Carlos Garcia Campos  <carlosgc@gnome.org>
1198
1199         * NEWS:
1200
1201         Update NEWS for 2.23.5 release.
1202         
1203 2008-07-20  Carlos Garcia Campos  <carlosgc@gnome.org>
1204
1205         * shell/ev-window.c: (ev_window_state_event),
1206         (ev_window_class_init):
1207
1208         Intercept window manager's fullscreen request in order to run/stop
1209         fullscreen mode. Fixes bug #493541.
1210         
1211 2008-07-20  Carlos Garcia Campos  <carlosgc@gnome.org>
1212
1213         * shell/ev-window.c: (find_bar_visibility_changed_cb):
1214
1215         Restart the job search when the find bar is opened for the second
1216         time. Fixes bug #531956.
1217         
1218 2008-07-20  Carlos Garcia Campos  <carlosgc@gnome.org>
1219
1220         * libdocument/ev-document-factory.c: (get_mime_type_from_data),
1221         (get_document_from_uri):
1222
1223         Make sure we always return a valid error struct when
1224         get_document_from_uri fails. Fixes nautilus crash, see bug
1225         #542548.
1226         
1227 2008-07-15   Darren Kenny  <darren.kenny@sun.com>
1228
1229         * libdocument/ev-transition-effect.c
1230         (ev_transition_effect_type_get_type),
1231         (ev_transition_effect_alignment_get_type),
1232         (ev_transition_effect_direction_get_type):
1233         
1234         Fixes bug #542924. Makes enums static to fix Solaris build.
1235
1236 2008-07-13  Carlos Garcia Campos  <carlosgc@gnome.org>
1237
1238         * shell/ev-view.c: (ev_view_key_press_event):
1239
1240         Add '.' keybinding for blanking the screen in presentation
1241         mode. Fixes bug #542001.
1242         
1243 2008-07-13  Carlos Garcia Campos  <carlosgc@gnome.org>
1244
1245         * libdocument/ev-document-misc.c:
1246         (ev_document_misc_pixbuf_from_surface):
1247
1248         Fix bytes order on big endian. Patch by Benjamin Jacobs. Fixes bug
1249         #540950.
1250         
1251 2008-07-11  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
1252
1253         * backend/comics/comics-document.c (comics_document_load):
1254         * backend/comics/comicsdocument.evince-backend.in:
1255         * configure.ac:
1256         * thumbnailer/evince-thumbnailer-comics.schemas.in:
1257         
1258         Added support for 7-zip based cb7 comic book. Patch by
1259         Kartik Rustagi. Fixes bug #532312.
1260
1261 2008-06-24  Bastien Nocera  <hadess@hadess.net>
1262
1263         * shell/ev-window.c: Use Alt+Left to rotate left, and Alt+Right
1264         to rotate right. Ctrl+R (as EOG uses) is already used for reload.
1265         Fixes bug #539972.
1266
1267 2008-06-24  Bastien Nocera  <hadess@hadess.net>
1268
1269         * shell/Makefile.am:
1270         * shell/ev-application.c (ev_application_init),
1271         (ev_application_get_media_keys):
1272         * shell/ev-application.h:
1273         * shell/ev-marshal.list:
1274         * shell/ev-media-player-keys.c (ev_media_player_keys_class_init),
1275         (proxy_destroy), (on_media_player_key_pressed),
1276         (ev_media_player_keys_init), (ev_media_player_keys_focused),
1277         (ev_media_player_keys_finalize), (ev_media_player_keys_new):
1278         * shell/ev-media-player-keys.h:
1279         * shell/ev-window.c (ev_window_go_previous_page),
1280         (ev_window_go_next_page), (ev_window_go_first_page),
1281         (ev_window_go_last_page), (ev_window_start_presentation),
1282         (ev_window_dispose), (view_actions_focus_in_cb):
1283         * shell/ev-window.h: When building with D-Bus support, listen
1284         for multimedia key events from gnome-settings-daemon. This allows
1285         to go to the next/previous/first/last pages using, respectively,
1286         Next/Previous/Rewing/Fast Forward. The Play button is used to start
1287         a presentation. Fixes bug #539971.
1288
1289 2008-06-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
1290
1291         * configure.ac:
1292         
1293         Update for release 2.23.4.
1294
1295 2008-06-17  Carlos Garcia Campos  <carlosgc@gnome.org>
1296
1297         * NEWS:
1298
1299         Update news for 2.23.4 release.
1300         
1301 2008-06-16  Carlos Garcia Campos  <carlosgc@gnome.org>
1302
1303         * backend/pdf/ev-poppler.cc: (pdf_document_get_info):
1304         * shell/ev-sidebar-thumbnails.c:
1305         (ev_sidebar_thumbnails_set_loading_icon),
1306         (ev_sidebar_thumbnails_refresh):
1307         * shell/ev-window.c: (ev_window_error_message),
1308         (ev_window_warning_message), (ev_window_refresh_window_thumbnail),
1309         (ev_window_set_document):
1310
1311         Do not crash opening documents with no pages and show a warning
1312         message in the message area. Fixes bugs #537574 and #171588.
1313         
1314 2008-06-15  Carlos Garcia Campos  <carlosgc@gnome.org>
1315
1316         * shell/Makefile.am:
1317         * shell/ev-file-monitor.[ch]:
1318         * shell/ev-window.c: (ev_window_document_changed),
1319         (ev_window_clear_reload_job), (ev_window_load_job_cb),
1320         (ev_window_reload_job_cb), (ev_window_open_uri),
1321         (ev_window_reload_document), (ev_window_cmd_view_reload),
1322         (ev_window_dispose):
1323
1324         Automaticly reload the document when the file has changed on
1325         disk. Bug #304249.
1326         
1327 2008-06-10  Cosimo Cecchi  <cosimoc@gnome.org>
1328
1329         * libdocument/ev-backends-manager.c: (ev_backends_manager_load):
1330         * libdocument/ev-image.c: (ev_image_save_tmp):
1331         * libdocument/ev-module.c: (ev_module_load):
1332         * shell/ev-application.c: (ev_application_shutdown),
1333         (ev_application_get_print_settings):
1334         * shell/ev-sidebar-attachments.c:
1335         (ev_sidebar_attachments_button_press),
1336         (ev_sidebar_attachments_drag_data_get):
1337         * shell/ev-window.c: (window_save_file_copy_ready_cb),
1338         (ev_window_print_finished), (ev_window_print_send),
1339         (ev_window_print_job_cb), (ev_window_cmd_help_contents),
1340         (ev_window_preview_print_finished), (ev_window_do_preview_print),
1341         (ev_window_cmd_preview_print):
1342         * shell/main.c: (load_files_remote):
1343         Fix some build warnings under GCC 4.3.0. (#537535).
1344
1345 2008-05-29  Carlos Garcia Campos  <carlosgc@gnome.org>
1346
1347         * shell/ev-jobs.c: (ev_job_render_dispose):
1348
1349         Fix a crash in debug mode. Patch by Daniel M German.
1350         
1351 2008-05-25  Carlos Garcia Campos  <carlosgc@gnome.org>
1352
1353         * shell/ev-window.c:
1354
1355         Add Ctrl+N keybinding for Open a Copy. Fixes bug #532239.
1356         
1357 2008-05-25  Carlos Garcia Campos  <carlosgc@gnome.org>
1358
1359         * shell/ev-window.c: (ev_window_print_send),
1360         (ev_window_do_preview_print):
1361
1362         Use the window title as print job name instead of just
1363         "evince-print". Fixes bug #534493.
1364         
1365 2008-05-19  Frederic Peters  <fpeters@0d.be>
1366
1367         * libdocument/Makefile.am: fixed typo in ev-debug.h filename.
1368         Bug #533897.
1369
1370 2008-05-19  Frederic Peters  <fpeters@0d.be>
1371
1372         * help/reference/Makefile.am: added missing libevmountoperation to
1373         gtkdoc-scanobj libraries.  Bug #533896.
1374
1375 2008-05-19  Matthias Drochner  <M.Drochner@fz-juelich.de>
1376
1377         * properties/ev-properties-view.c (get_default_user_units):
1378         Fixes check for default units string translation. Bug #533323.
1379
1380 2008-05-01  Hans Petter Jansson  <hpj@novell.com>
1381
1382         * backend/impress/iksemel.c (sax_core): Fix a free() that should
1383         be an iks_free(). Fix an array overflow in the XML parser that
1384         would occur whenever the number of attributes in a tag was greater
1385         than 0 and divisible by 6. Fixes GNOME bug #530852.
1386
1387 2008-04-29  Carlos Garcia Campos  <carlosgc@gnome.org>
1388
1389         * backend/djvu/djvu-document-private.h:
1390         * backend/djvu/djvu-links.c:
1391         * backend/djvu/djvu-text.c:
1392         * backend/djvu/djvu-document.c: (djvu_handle_events),
1393         (djvu_wait_for_message), (djvu_document_load),
1394         (document_get_page_size), (djvu_document_render),
1395         (djvu_document_thumbnails_get_thumbnail),
1396         (djvu_document_file_exporter_end):
1397
1398         Make sure load job doesn't finish successfully when the document
1399         is not successfully decoded by libdjvu. Fixes bug #530202.
1400         
1401 2008-04-27  Carlos Garcia Campos  <carlosgc@gnome.org>
1402
1403         * configure.ac:
1404         * libdocument/Makefile.am:
1405         * libdocument/ev-debug.[ch]:
1406         * libdocument/ev-document.c:
1407         * shell/ev-jobs.c: (ev_job_links_dispose),
1408         (ev_job_render_dispose), (ev_job_thumbnail_dispose),
1409         (ev_job_print_dispose), (ev_job_finished), (ev_job_links_new),
1410         (ev_job_links_run), (ev_job_render_new), (notify_page_ready),
1411         (ev_job_render_page_ready), (ev_job_render_run),
1412         (ev_job_thumbnail_new), (ev_job_thumbnail_run),
1413         (ev_job_fonts_new), (ev_job_fonts_run), (ev_job_load_dispose),
1414         (ev_job_load_new), (ev_job_load_set_uri), (ev_job_load_run),
1415         (ev_job_save_dispose), (ev_job_save_new), (ev_job_save_run),
1416         (ev_job_print_new), (ev_job_print_run):
1417         * shell/main.c: (main):
1418
1419         Add debug mode based on gedit code. Add debug messages in
1420         ev-jobs.
1421         
1422 2008-04-24  Carlos Garcia Campos  <carlosgc@gnome.org>
1423
1424         * libdocument/ev-document-factory.c: (get_document_from_uri):
1425
1426         Fix memory leak.
1427         
1428 2008-04-24   Jean Baptiste Lallement  <jeanbaptiste.lallement@gmail.com>
1429
1430         * libdocument/ev-document-factory.c (get_mime_type_from_uri),
1431         (get_mime_type_from_data), (get_document_from_uri),
1432         (ev_document_factory_get_document):
1433         
1434         Improved error message about file opening failture.
1435         Bug #529129.
1436
1437 2008-04-24  Abhishek Mukherjee  <linkinpark342@gmail.com>
1438
1439         * data/evince-toolbar.xml:
1440         
1441         Allow to add SaveAs to toolbar.
1442
1443 2008-04-20  Carlos Garcia Campos  <carlosgc@gnome.org>
1444
1445         * shell/ev-view-private.h:
1446         * shell/ev-view.[ch]: (ev_view_button_release_event),
1447         (ev_view_finalize), (ev_view_clipboard_copy), (ev_view_copy),
1448         (ev_view_primary_get_cb), (ev_view_primary_clear_cb),
1449         (ev_view_update_primary_selection), (clear_link_selected),
1450         (ev_view_copy_link_address):
1451         * shell/ev-window.c: (ev_view_popup_cmd_copy_link_address):
1452
1453         Update also the primary selection when copying a link
1454         address. Fixes bug #520855.
1455         
1456 2008-04-19  Carlos Garcia Campos  <carlosgc@gnome.org>
1457
1458         * libdocument/ev-document-factory.c: (get_document_from_uri):
1459
1460         Use the pixbuf backend only when the mime type is not supported by
1461         any of the other backend so that tiff documents, for instance, are
1462         handled by the tiff backend instead of the pixbuf backend. fixes
1463         bug #520290.
1464         
1465 2008-04-17  Carlos Garcia Campos  <carlosgc@gnome.org>
1466
1467         * cut-n-paste/Makefile.am:
1468
1469         Add evmountoperation to subdirs list.
1470         
1471 2008-04-17  Carlos Garcia Campos  <carlosgc@gnome.org>
1472
1473         * configure.ac:
1474
1475         Fix libspectre check in configure script. Fixes bug #528549.
1476         
1477 2008-04-16  Carlos Garcia Campos  <carlosgc@gnome.org>
1478
1479         * configure.ac:
1480         * cut-n-paste/evmountoperation/ev-mount-operation.[ch]:
1481         * shell/Makefile.am:
1482         * shell/ev-window.c: (ev_window_load_remote_failed),
1483         (mount_volume_ready_cb), (window_open_file_copy_ready_cb):
1484
1485         Add GtkMountOperation (renamed to avoid conflicts) to be able to
1486         open documents in remote locations that are not mounted.
1487         
1488 2008-04-14  Carlos Garcia Campos  <carlosgc@gnome.org>
1489
1490         * backend/dvi/mdvi-lib/bitmap.[ch]: (bitmap_convert_lsb8),
1491         (bitmap_convert_msb8):
1492         * backend/dvi/mdvi-lib/t1.c: (t1_glyph_bitmap):
1493         * backend/dvi/mdvi-lib/tt.c: (tt_get_bitmap):
1494
1495         Fix T1 font rendering in dvi backend. Patch by Mattias Nissler.
1496         
1497 2008-04-14  Carlos Garcia Campos  <carlosgc@gnome.org>
1498
1499         * shell/ev-jobs.[ch]: (ev_job_render_dispose),
1500         (ev_job_render_new), (ev_job_render_set_selection_info),
1501         (ev_job_render_run):
1502         * shell/ev-pixbuf-cache.c: (job_page_ready_cb), (job_finished_cb),
1503         (check_job_size_and_unref),
1504         (copy_job_page_and_selection_to_job_info), (copy_job_to_job_info),
1505         (add_job), (ev_pixbuf_cache_get_selection_surface):
1506
1507         Create the render context needed for rendering a page in the render
1508         thread so that we don't block the main thread. Simplify
1509         EvJobRender API.
1510         
1511 2008-04-14  Carlos Garcia Campos  <carlosgc@gnome.org>
1512
1513         * libdocument/Makefile.am:
1514         * libdocument/ev-page.[ch]:
1515         * libdocument/ev-render-context.[ch]: (ev_render_context_dispose),
1516         (ev_render_context_new), (ev_render_context_set_page):
1517         * libdocument/ev-form-field.[ch]: (ev_form_field_init),
1518         (ev_form_field_finalize), (ev_form_field_class_init):
1519         * libdocument/ev-document-forms.[ch]:
1520         (ev_document_forms_get_form_fields):
1521         * libdocument/ev-document.[ch]: (ev_document_get_page),
1522         (ev_document_get_page_size), (ev_document_get_page_label):
1523         * shell/ev-jobs.[ch]: (ev_job_thumbnail_dispose),
1524         (ev_job_render_run), (ev_job_thumbnail_new),
1525         (ev_job_thumbnail_run), (ev_job_print_run):
1526         * shell/ev-page-cache.c: (ev_page_cache_new):
1527         * shell/ev-pixbuf-cache.c: (job_page_ready_cb), (job_finished_cb),
1528         (check_job_size_and_unref), (add_job):
1529         * shell/ev-sidebar-thumbnails.c: (add_range):
1530         * shell/ev-view.c: (ev_view_form_field_get_region),
1531         (ev_view_form_field_button_create_widget),
1532         (ev_view_form_field_text_save), (ev_view_form_field_choice_save),
1533         (ev_view_handle_form_field), (ev_view_size_allocate),
1534         (get_selected_text):
1535         * shell/ev-window.c: (ev_window_refresh_window_thumbnail):
1536         * backend/pdf/ev-poppler.cc: (pdf_document_get_page_size),
1537         (pdf_document_get_page), (pdf_document_get_page_label),
1538         (pdf_document_render), (pdf_document_get_info),
1539         (pdf_document_document_iface_init),
1540         (pdf_document_thumbnails_get_thumbnail),
1541         (pdf_document_thumbnails_get_dimensions),
1542         (pdf_document_file_exporter_do_page),
1543         (pdf_selection_render_selection),
1544         (pdf_selection_get_selected_text),
1545         (pdf_selection_get_selection_region),
1546         (pdf_selection_get_selection_map),
1547         (pdf_document_forms_get_form_fields),
1548         (pdf_document_forms_form_field_text_get_text),
1549         (pdf_document_forms_form_field_text_set_text),
1550         (pdf_document_forms_form_field_button_set_state),
1551         (pdf_document_forms_form_field_button_get_state),
1552         (pdf_document_forms_form_field_choice_get_item),
1553         (pdf_document_forms_form_field_choice_get_n_items),
1554         (pdf_document_forms_form_field_choice_is_item_selected),
1555         (pdf_document_forms_form_field_choice_select_item),
1556         (pdf_document_forms_form_field_choice_toggle_item),
1557         (pdf_document_forms_form_field_choice_unselect_all),
1558         (pdf_document_forms_form_field_choice_set_text),
1559         (pdf_document_forms_form_field_choice_get_text):
1560         * backend/ps/ev-spectre.c: (ps_document_get_page),
1561         (ps_document_get_page_size), (ps_document_get_page_label),
1562         (ps_document_render), (ps_document_document_iface_init),
1563         (ps_document_file_exporter_do_page):
1564         * backend/tiff/tiff-document.c: (tiff_document_get_page_size),
1565         (tiff_document_render), (tiff_document_render_pixbuf),
1566         (tiff_document_file_exporter_do_page):
1567         * backend/pixbuf/pixbuf-document.c:
1568         (pixbuf_document_get_page_size):
1569         * backend/comics/comics-document.c:
1570         (comics_document_get_page_size), (comics_document_render_pixbuf):
1571         * backend/djvu/djvu-document.c: (djvu_document_get_page_size),
1572         (djvu_document_render), (djvu_selection_get_selected_text),
1573         (djvu_document_thumbnails_get_thumbnail),
1574         (djvu_document_file_exporter_do_page),
1575         (djvu_document_find_get_result):
1576         * backend/dvi/dvi-document.c: (dvi_document_get_page_size),
1577         (dvi_document_render), (dvi_document_thumbnails_get_dimensions),
1578         (dvi_document_thumbnails_get_thumbnail),
1579         (dvi_document_file_exporter_do_page):
1580         * backend/impress/impress-document.c:
1581         (impress_document_get_page_size),
1582         (impress_document_render_pixbuf):
1583         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
1584
1585         Add EvPage so that we can hold a reference to the backend
1586         page. Form fields keep now a reference to the poppler page
1587         improving performance since we don't have to create/destroy the
1588         poppler field for every form operation. This will be needed for
1589         annotations too.
1590         
1591 2008-04-12  Carlos Garcia Campos  <carlosgc@gnome.org>
1592
1593         * data/evince-ui.xml:
1594         * shell/ev-window.c:
1595
1596         Add Ctrl-Insert keybinding for copying text. Fixes bug #526523.
1597         
1598 2008-04-12  Carlos Garcia Campos  <carlosgc@gnome.org>
1599
1600         * configure.ac:
1601         * backend/ps/Makefile.am:
1602
1603         Remove gs stuff from ps backend.
1604         
1605 2008-04-12  Carlos Garcia Campos  <carlosgc@gnome.org>
1606
1607         * configure.ac:
1608         * backend/pdf/ev-poppler.cc:
1609
1610         Bump poppler requirement to 0.8.0.
1611         
1612 2008-04-08  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
1613
1614         * NEWS:
1615         * configure.ac:
1616
1617         Update for release 2.22.1.1
1618
1619 2008-04-08  Carlos Garcia Campos  <carlosgc@gnome.org>
1620
1621         * configure.ac:
1622
1623         Fix build (again) when poppler version is 0.6
1624         
1625 2008-04-08  Carlos Garcia Campos  <carlosgc@gnome.org>
1626
1627         * backend/djvu/djvu-links.c: (build_tree):
1628
1629         Make sure link title is a valid utf8 string. Fixes bug #526517.
1630         
1631 2008-04-07  Carlos Garcia Campos  <carlosgc@gnome.org>
1632
1633         * configure.ac:
1634
1635         Fix build in FreeBSD. Based on patch by Michael Johnson. Fixes bug
1636         #526799.
1637         
1638 2008-04-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
1639
1640         * configure.ac:
1641         
1642         Update for release 2.22.1.
1643
1644 2008-04-06  Carlos Garcia Campos  <carlosgc@gnome.org>
1645
1646         * NEWS:
1647
1648         Update for upcoming release.
1649
1650 2008-04-06  Carlos Garcia Campos  <carlosgc@gnome.org>
1651
1652         * configure.ac:
1653         * backend/dvi/dvidocument.evince-backend.in:
1654
1655         Add compressed dvi to the list of supported mime types. Patch by
1656         Ed Catmur. Fixes bug #307087.
1657
1658 2008-04-06  Carlos Garcia Campos  <carlosgc@gnome.org>
1659
1660         * shell/ev-jobs.c: (ev_job_print_get_page_list):
1661
1662         Fix a crash when printing a range that doesn't specify the start or
1663         end page. Fixes bug #524288.
1664
1665 2008-04-02  Carlos Garcia Campos  <carlosgc@gnome.org>
1666
1667         * shell/ev-window.c: (ev_window_cmd_continuous),
1668         (ev_window_cmd_dual), (ev_window_cmd_view_best_fit),
1669         (ev_window_cmd_view_page_width), (ev_window_run_fullscreen),
1670         (ev_window_stop_fullscreen), (ev_window_cmd_view_fullscreen),
1671         (ev_window_run_presentation), (ev_window_stop_presentation),
1672         (ev_window_cmd_view_presentation),
1673         (ev_window_cmd_leave_fullscreen),
1674         (ev_window_cmd_start_presentation), (ev_window_cmd_escape):
1675
1676         Do not unfullscreen and fullscreen again the window when changing
1677         from fullscreen to presentation mode and vice versa. Fixes bug
1678         #524112.
1679         
1680 2008-04-01  Carlos Garcia Campos  <carlosgc@gnome.org>
1681
1682         * backend/ps/ev-spectre.c: (ps_document_thumbnails_get_thumbnail):
1683
1684         Do not crash when thumbnail failed to render in PS backend. Fixes
1685         bug #525015.
1686         
1687 2008-03-31  Carlos Garcia Campos  <carlosgc@gnome.org>
1688
1689         * shell/ev-window.c: (window_open_file_copy_ready_cb),
1690         (ev_window_load_file_remote), (ev_window_open_uri):
1691
1692         Handle errors when opening remote files.
1693         
1694 2008-03-31  Carlos Garcia Campos  <carlosgc@gnome.org>
1695
1696         * shell/ev-page-action.c: (ev_page_action_grab_focus):
1697
1698         Only grab the focus for the current visible proxy widget. Fixes
1699         bug #521224.
1700         
1701 2008-03-30  Emil Soleyman  <emil@nishra.com>
1702
1703         * shell/ev-window.c: (launch_external_uri):
1704         
1705         Reuse g_app_info_launch_default_for_uri to
1706         save some code and fix bug #525009.
1707
1708 2008-03-24  Wouter Bolsterlee  <wbolster@svn.gnome.org>
1709
1710         * shell/ev-window.c (image_save_dialog_response_cb):
1711
1712         Use g_str_has_suffix. See bug #523069.
1713
1714 2008-03-22  Carlos Garcia Campos  <carlosgc@gnome.org>
1715
1716         * configure.ac:
1717
1718         Add a configure option to enable/diable DBus. Patch by Rémi
1719         Cardona. Fixes bug 521797.
1720
1721 2008-03-22  Carlos Garcia Campos  <carlosgc@gnome.org>
1722
1723         * backend/pdf/ev-poppler.cc: (pdf_document_file_exporter_do_page):
1724
1725         Fix printing in documents with rotated pages. Patch by Eugen
1726         Dedu. Fixes bug #512648.
1727         
1728 2008-03-19  Carlos Garcia Campos  <carlosgc@gnome.org>
1729
1730         * backend/pdf/ev-poppler.cc: (ev_link_dest_from_dest),
1731         (ev_link_from_action):
1732
1733         Fix warning messages.
1734         
1735 2008-03-19  Carlos Garcia Campos  <carlosgc@gnome.org>
1736
1737         * shell/ev-window.c: (image_save_dialog_response_cb):
1738
1739         Do not append the extension to filename when saving an image
1740         if the filename alredy contains the extension. Fixes bug #523069.
1741         
1742 2008-03-18  Carlos Garcia Campos  <carlosgc@gnome.org>
1743
1744         * shell/ev-view.[ch]: (ev_view_find_cancel):
1745         * shell/ev-window.c: (find_bar_close_cb):
1746
1747         Cancel the find operation when the find bar is closed. Fixes bug
1748         #508845.
1749         
1750 2008-03-18  Carlos Garcia Campos  <carlosgc@gnome.org>
1751
1752         * backend/ps/psdocument.evince-backend.in:
1753
1754         Make ps backend module resident. Fixes bug #520607.
1755         
1756 2008-03-18  Carlos Garcia Campos  <carlosgc@gnome.org>
1757
1758         * shell/ev-jobs.c: (ev_job_print_run):
1759
1760         Invert collate action in order to work as expected, fix reverse
1761         printing so that it doesn't start with a blank page and fix number
1762         of copies. Patch by Eugen Dedu. Fixes bug #365332.
1763         
1764 2008-03-14  Carlos Garcia Campos  <carlosgc@gnome.org>
1765
1766         * backend/pdf/ev-poppler.cc: (pdf_selection_render_selection):
1767
1768         Fix build with poppler <= 0.7.2
1769         
1770 2008-03-14  Carlos Garcia Campos  <carlosgc@gnome.org>
1771
1772         * libdocument/ev-document-misc.c:
1773         (ev_document_misc_surface_from_pixbuf):
1774
1775         Fix selections with poppler-splash.
1776         
1777 2008-03-14  Carlos Garcia Campos  <carlosgc@gnome.org>
1778
1779         * configure.ac:
1780         * backend/pdf/ev-poppler.cc:
1781
1782         Fix build with poppler >= 0.7.2
1783         
1784 2008-03-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
1785
1786         * configure.ac:
1787         
1788         Update for release 2.22.0
1789
1790 2008-03-09  Carlos Garcia Campos  <carlosgc@gnome.org>
1791
1792         * NEWS:
1793
1794         Update for upcoming release.
1795
1796 2008-03-09  Wouter Bolsterlee  <wbolster@svn.gnome.org>
1797
1798         * shell/ev-window.c (ev_window_print_dialog_response_cb):
1799
1800         Bug 495107 – Handle print dialog responses correctly
1801
1802         Correctly handle print dialog response. Properly fixes
1803         the above mentioned bug.
1804
1805 2008-03-08  Carlos Garcia Campos  <carlosgc@gnome.org>
1806
1807         * shell/ev-window.c: (ev_window_print_dialog_response_cb):
1808
1809         Make sure print job is only run when the print button is
1810         clicked. Based on patch by Eugen Dedu. Fixes bug #495107.
1811         
1812 2008-03-03  Carlos Garcia Campos  <carlosgc@gnome.org>
1813
1814         * backend/pdf/pdfdocument.evince-backend.in:
1815         * libdocument/ev-backends-manager.c:
1816         (ev_backends_manager_load_backend),
1817         (ev_backends_manager_get_document):
1818         * libdocument/ev-module.[ch]: (ev_module_load), (ev_module_new):
1819
1820         Allow making backend modules resident. This is needed only for
1821         some backends like pdf to avoid registering glib types more than
1822         once.
1823         
1824 2008-03-03  Carlos Garcia Campos  <carlosgc@gnome.org>
1825
1826         * backend/comics/comics-document.c:
1827         * backend/djvu/djvu-document.c:
1828         * backend/impress/impress-document.c:
1829         * backend/pdf/ev-poppler.cc:
1830         * backend/pixbuf/pixbuf-document.c:
1831         * backend/ps/ev-spectre.c:
1832         * backend/ps/ps-document.c:
1833         * backend/tiff/tiff-document.c:
1834         * libdocument/ev-document.h:
1835         * properties/ev-properties-main.c:
1836
1837         Use g_type_module_add_interface instead of
1838         g_type_add_interface_static. Fixes bug #519679.
1839         
1840 2008-02-29  Carlos Garnacho  <carlosg@gnome.org>
1841
1842         * shell/ev-transition-animation.[ch] (ev_transition_animation_ready):
1843         Added. Returns whether the animation has everything necessary to run.
1844         * shell/ev-view.c (ev_view_expose_event): Do not assume the animation
1845         is ready just because it's been created. Fixes #519106.
1846         (draw_one_page): Do not show the "Loading..." text in presentation
1847         mode, there was a slim probability that this could happen.
1848
1849 2008-02-27  Carlos Garcia Campos  <carlosgc@gnome.org>
1850
1851         * libdocument/ev-document-factory.c: (get_mime_type_from_uri):
1852
1853         Duplicate mime_type string before freeing it so that it doesn't
1854         always fail when getting mime type from uri. Fixes bug #518874.
1855         
1856 2008-02-27  Carlos Garcia Campos  <carlosgc@gnome.org>
1857
1858         * shell/ev-view.c: (ev_view_form_field_choice_changed):
1859
1860         Fix a crash when a choice form field doesn't have any item
1861         selected. Fixes bug #518831
1862         
1863 2008-02-25  Alexander Larsson  <alexl@redhat.com>
1864
1865         * shell/ev-window.c (ev_window_clear_temp_file):
1866         Use g_file_has_prefix instead of renamed
1867         g_file_contains_file.
1868
1869         * configure.ac:
1870         Require new glib for above change.
1871         
1872 2008-02-16  Carlos Garcia Campos  <carlosgc@gnome.org>
1873
1874         * libdocument/ev-image.c: (ev_image_finalize),
1875         (ev_image_save_tmp):
1876
1877         Return a real uri instead of a filename when saving an
1878         image. Fixes images drag an drop from evince to nautilus. 
1879         
1880 2008-02-16  Carlos Garcia Campos  <carlosgc@gnome.org>
1881
1882         * backend/pdf/ev-poppler.cc:
1883         (pdf_document_images_get_image_mapping):
1884
1885         Return the image list in the right order. Fixes bug #516237.
1886         
1887 2008-02-12  Wouter Bolsterlee  <wbolster@svn.gnome.org>
1888
1889         * backend/impress/impress-document.c:
1890         (impress_document_thumbnails_get_thumbnail):
1891
1892         Remove unused variable to avoid a compiler warning.
1893
1894 2008-02-12  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
1895
1896         * configure.ac:
1897         
1898         Update for release 2.21.91.
1899
1900 2008-02-08  Carlos Garcia Campos  <carlosgc@gnome.org>
1901
1902         * configure.ac:
1903         * shell/Makefile.am:
1904         * shell/ev-application.[ch]:
1905         * shell/ev-sidebar-links.c:
1906         * shell/ev-utils.[ch]:
1907         * shell/ev-window.[ch]:
1908
1909         Remove libgnomeprint support. Fixes bug #512370.
1910         
1911 2008-02-08  Matthias Clasen  <mclasen@redhat.com>
1912
1913         * thumbnailer/evince-thumbnailer.c: (main):
1914
1915         Initialize glib type system before using it. Fixes bug #513934.
1916         
1917 2008-02-03  Carlos Garcia Campos  <carlosgc@gnome.org>
1918
1919         * properties/ev-properties-main.c:
1920
1921         Add missing #include.
1922         
1923 2008-01-31  Carlos Garcia Campos  <carlosgc@gnome.org>
1924
1925         * configure.ac:
1926         * backend/djvu/djvu-document.c: (djvu_document_render):
1927         * backend/tiff/tiff-document.c: (tiff_document_render):
1928
1929         Use the new cairo function cairo_format_stride_for_width when
1930         available. Fixes bug #482720.
1931
1932 2008-01-31  Carlos Garcia Campos  <carlosgc@gnome.org>
1933
1934         * libdocument/ev-document-factory.c: (get_mime_type_from_uri),
1935         (get_mime_type_from_data), (get_document_from_uri):
1936
1937         Use g_content_type_guess() only when slow is true in
1938         get_document_from_uri(). Fix several memory leaks.
1939         
1940 2008-01-30  Cosimo Cecchi  <cosimoc@svn.gnome.org>
1941
1942         * libdocument/ev-document-factory.c:
1943         (throw_unknown_mime_type_error), (throw_failed_to_get_info_error),
1944         (get_document_from_uri):
1945
1946         Use g_content_type_guess () to get mimetype for files.
1947         Bug #510401.
1948
1949 2008-01-30  Carlos Garcia Campos  <carlosgc@gnome.org>
1950
1951         * thumbnailer/Makefile.am:
1952
1953         Remove DJVU_LIBS from thumbnailer LDADD. Fixes bug #513203.
1954         
1955 2008-01-29  Carlos Garcia Campos  <carlosgc@gnome.org>
1956
1957         * configure.ac:
1958
1959         Fix build with --without-libgnome. Fixes bug #512771.
1960         
1961 2008-01-29  Matthias Clasen  <mclasen@redhat.com>
1962
1963         * backend/dvi/Makefile.am: Install only dvi
1964         module. Fixes bug #512718.
1965
1966 2008-01-29  Matthias Clasen  <mclasen@redhat.com>
1967
1968         * properties/ev-properties-main.c: (nautilus_module_initialize):
1969         
1970         Initialize backends in properties tab. Fixes bug
1971         #512720.
1972
1973 2008-01-29  Matthias Clasen  <mclasen@redhat.com>
1974
1975         * properties/Makefile.am: No need to link with 
1976         libraries. Fixes bug #512719.
1977
1978 2008-01-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
1979
1980         * NEWS:
1981         * configure.ac:
1982         
1983         Update for release 2.21.90.
1984
1985 2008-01-27  Carlos Garcia Campos  <carlosgc@gnome.org>
1986
1987         * shell/ev-window.c: (ev_window_cmd_escape):
1988
1989         Fix compile warning.
1990         
1991 2008-01-27  Carlos Garcia Campos  <carlosgc@gnome.org>
1992
1993         * backend/dvi/dvi-document.c: (dvi_document_file_exporter_end):
1994
1995         Fix printing in dvi backend when filename contains white
1996         espaces. Fixes bug #502839.
1997         
1998 2008-01-26  Carlos Garcia Campos  <carlosgc@gnome.org>
1999
2000         * cut-n-paste/totem-screensaver/totem-scrsaver.c:
2001         (screensaver_disable_x11):
2002         * shell/Makefile.am:
2003         * shell/xdg-user-dir-lookup.c: Removed
2004         * shell/ev-metadata-manager.c: (ev_metadata_arm_timeout):
2005         * shell/ev-view.c: (ev_view_presentation_transition_start):
2006         * shell/ev-window.c: (ev_window_cmd_file_open),
2007         (ev_window_cmd_save_as), (presentation_set_timeout):
2008
2009         Remove #ifdefs that are no longer needed.
2010         
2011 2008-01-26  Carlos Garcia Campos  <carlosgc@gnome.org>
2012
2013         * shell/ev-view.[ch]: (ev_view_button_release_event),
2014         (ev_view_autoscroll_start), (ev_view_autoscroll_stop):
2015         * shell/ev-window.c: (ev_window_cmd_view_autoscroll),
2016         (ev_window_cmd_escape):
2017
2018         Stop autoscroll when Escape key is pressed. Fixes bug #511635.
2019         
2020 2008-01-25  Carlos Garcia Campos  <carlosgc@gnome.org>
2021
2022         * configure.ac:
2023         * backend/comics/comics-document.c: (comics_document_load):
2024         * libdocument/ev-attachment.[ch]: (ev_attachment_finalize),
2025         (ev_attachment_set_property), (ev_attachment_init),
2026         (ev_attachment_save), (ev_attachment_launch_app),
2027         (ev_attachment_open):
2028         * libdocument/ev-document-factory.c: (get_document_from_uri):
2029         * libdocument/ev-file-helpers.[ch]: (ev_tmp_file_get),
2030         (ev_tmp_file_unlink), (ev_tmp_uri_unlink), (ev_xfer_uri_simple),:
2031         * shell/ev-jobs.c:
2032         * shell/ev-password.c: (ev_password_dialog_set_property),
2033         (ev_password_dialog_save_password):
2034         * shell/ev-sidebar-attachments.c:
2035         (ev_sidebar_attachments_drag_data_get):
2036         * shell/ev-window-title.c: (get_filename_from_uri):
2037         * shell/ev-window.c: (ev_window_clear_temp_file),
2038         (ev_window_load_job_cb), (window_open_file_copy_ready_cb),
2039         (ev_window_open_uri), (window_save_file_copy_ready_cb),
2040         (ev_window_save_remote), (ev_window_cmd_save_as), (launch_action),
2041         (launch_external_uri), (image_save_dialog_response_cb),
2042         (attachment_save_dialog_response_cb):
2043         * shell/main.c: (load_files), (load_files_remote), (main):
2044         * thumbnailer/evince-thumbnailer.c: (main):
2045
2046         Port to gio and drop gnome-vfs dependency. Fixes bug
2047         #510401. Based on patch by Cosimo Cecchi.
2048         
2049 2008-01-24  Wouter Bolsterlee  <wbolster@svn.gnome.org>
2050
2051         * NEWS:
2052
2053         Fixed formatting inconsistencies (spaces vs. tabs)
2054
2055 2008-01-24  Wouter Bolsterlee  <wbolster@svn.gnome.org>
2056
2057         * shell/ev-window.c:
2058
2059         Use top/up/bottom/down arrows instead of
2060         first/left/last/right in the toolbar and menu actions.
2061         This fixes issues with RTL languages and is visually
2062         consistent with the page view. Fixes bug #170081.
2063
2064 2008-01-24  Wouter Bolsterlee  <wbolster@svn.gnome.org>
2065
2066         * NEWS:
2067
2068         Fixed some inaccuracies pointed out by Carlos Garcia
2069         Campos.
2070
2071 2008-01-24  Wouter Bolsterlee  <wbolster@svn.gnome.org>
2072
2073         * NEWS:
2074         * data/evince.schemas.in:
2075         * shell/ev-window.c: (ev_window_setup_action_sensitivity):
2076
2077         Override PDF restrictions by default. Fixes bug #382700.
2078
2079 2008-01-24  Wouter Bolsterlee  <wbolster@svn.gnome.org>
2080
2081         * NEWS: Updated for upcoming release
2082
2083 2008-01-23  Carlos Garcia Campos  <carlosgc@gnome.org>
2084
2085         * libdocument/ev-backends-manager.c: (ev_backends_manager_load):
2086
2087         Fix memory leak.
2088         
2089 2008-01-23  Gil Forcada <gilforcada@guifi.net>
2090
2091         * shell/ev-window.c: (register_custom_actions):
2092         
2093         Added comment for translators
2094
2095 2008-01-22  Carlos Garcia Campos  <carlosgc@gnome.org>
2096
2097         * shell/ev-view.c: (ev_view_button_release_event):
2098
2099         Do not create the idle function for kinetic scrolling if we are
2100         not in a drag operation.
2101
2102 2008-01-22  Carlos Garcia Campos  <carlosgc@gnome.org>
2103
2104         * shell/ev-view.c: (ev_view_handle_cursor_over_xy),
2105         (ev_view_button_press_event), (ev_view_motion_notify_event),
2106         (ev_view_button_release_event):
2107
2108         Restore cursor after autoscrolling. Fixes bug #509958.
2109
2110 2008-01-19  Carlos Garcia Campos  <carlosgc@gnome.org>
2111
2112         * configure.ac:
2113         * backend/pdf/ev-poppler.cc:
2114         (pdf_document_images_get_image_mapping),
2115         (pdf_document_images_get_image),
2116         (pdf_document_document_images_iface_init):
2117         * libdocument/ev-document-images.[ch]:
2118         (ev_document_images_get_image_mapping),
2119         (ev_document_images_get_image):
2120         * libdocument/ev-image.[ch]: (ev_image_new), (ev_image_get_page),
2121         (ev_image_get_id), (ev_image_save_tmp):
2122         * shell/ev-jobs.c: (ev_job_render_run):
2123         * shell/ev-view.c: (ev_view_drag_data_get):
2124         * shell/ev-window.c: (image_save_dialog_response_cb),
2125         (ev_view_popup_cmd_copy_image):
2126
2127         Do not render images when rendering the page but on demand. It
2128         reduces the memory comsumption.
2129         
2130 2008-01-18  Marcelo Lira  <setanta@gmail.com>
2131
2132         * configure.a:
2133         * shell/ev-password.c:
2134
2135         Make gnome-keyring optional. Fixes bug #509676.
2136         
2137 2008-01-16  Carlos Garcia Campos  <carlosgc@gnome.org>
2138
2139         * shell/ev-pixbuf-cache.c: (add_job):
2140
2141         Initialize include_images variable as FALSE instead of TRUE.
2142         
2143 2008-01-15  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
2144
2145         * configure.ac:
2146         * cut-n-paste/Makefile.am:
2147         * cut-n-paste/fileformatchooser/Makefile.am:
2148         * cut-n-paste/fileformatchooser/egg-macros.h:
2149         * cut-n-paste/fileformatchooser/eggfileformatchooser.c:
2150         * cut-n-paste/fileformatchooser/eggfileformatchooser.h:
2151         * shell/Makefile.am:
2152         * shell/ev-utils.c:
2153         (file_chooser_dialog_add_writable_pixbuf_formats),
2154         (get_gdk_pixbuf_format_by_extension):
2155         * shell/ev-utils.h:
2156         * shell/ev-window.c: (ev_window_error_message),
2157         (image_save_dialog_response_cb), (ev_view_popup_cmd_save_image_as):
2158         
2159         Simplify image format selection on save.
2160
2161 2008-01-15  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
2162
2163         * shell/ev-view.c: (ev_view_scroll_event):
2164         
2165         Repair gorizontal scrolling with shift. Fixes
2166         bug #483412.
2167
2168 2008-01-13  Carlos Garcia Campos  <carlosgc@gnome.org>
2169         
2170         * MAINTAINERS:
2171
2172         Fix formatting issues.
2173         
2174 2008-01-13  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
2175
2176         * backend/comics/comics-document.c: (comics_regex_quote):
2177         
2178         Don't overquote special chars except of '. See bug 
2179         502500. Thanks to Tom Parker.
2180
2181 2008-01-13  Wouter Bolsterlee  <wbolster@svn.gnome.org>
2182
2183         * MAINTAINERS:
2184         
2185         Added Nickolay and Carlos, since they're doing most of
2186         the releases nowadays.
2187
2188 2008-01-13  Wouter Bolsterlee  <wbolster@svn.gnome.org>
2189
2190         * properties/Makefile.am:
2191
2192         Get the nautilus extension dir properly instead of using
2193         a hack. Fixes bug #505359.
2194
2195 2008-01-13  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
2196
2197         * properties/Makefile.am:
2198         
2199         Install nautilus extension into new place. See bug
2200         #505359. Thanks to Matthias Clasen, Brian Pepple and
2201         Damien Carbery.
2202
2203 2008-01-13  Djihed Afifi  <djihed@gmail.com>
2204
2205         * shell/ev-window.c: (ev_window_get_recent_file_label):
2206         
2207         RTL marker in recent file list. See bug #509076.
2208
2209 2008-01-13  Carlos Garcia Campos  <carlosgc@gnome.org>
2210
2211         * backend/djvu/djvu-text-page.c: (djvu_text_page_limits):
2212         * shell/ev-window.c: (image_save_dialog_response_cb):
2213
2214         Fix compile warnings due to unused variables.
2215         
2216 2008-01-13  Carlos Garcia Campos  <carlosgc@gnome.org>
2217
2218         * configure.ac:
2219         * backend/dvi/cairo-device.c: (dvi_cairo_draw_ps):
2220         * backend/ps/ev-spectre.c: (ps_document_render):
2221
2222         Bump requirements to libspectre 0.2.0. Fixes bug #507705. 
2223
2224 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2225
2226         * shell/ev-transition-animation.c (ev_transition_animation_fade)
2227         (ev_transition_animation_paint): Implement "fade" effect.
2228
2229 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2230
2231         * shell/ev-transition-animation.c (ev_transition_animation_uncover)
2232         (ev_transition_animation_paint): Implement "uncover" effect.
2233
2234 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2235
2236         * shell/ev-transition-animation.c (ev_transition_animation_cover)
2237         (ev_transition_animation_paint): Implement "cover" effect.
2238
2239 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2240
2241         * shell/ev-transition-animation.c (ev_transition_animation_push)
2242         (ev_transition_animation_paint): Implement "push" effect.
2243
2244 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2245
2246         * shell/ev-transition-animation.c (ev_transition_animation_dissolve)
2247         (ev_transition_animation_paint): Implement "dissolve" effect.
2248
2249 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2250
2251         * shell/ev-transition-animation.c (ev_transition_animation_wipe)
2252         (ev_transition_animation_paint): Implement "wipe" effect.
2253
2254 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2255
2256         * shell/ev-transition-animation.c (ev_transition_animation_box)
2257         (ev_transition_animation_paint): Implement "box" effect.
2258
2259 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2260
2261         * shell/ev-transition-animation.c (ev_transition_animation_blinds)
2262         (ev_transition_animation_paint): Implement "blinds" effect.
2263
2264 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2265
2266         * shell/ev-transition-animation.c (ev_transition_animation_split)
2267         (ev_transition_animation_paint): Implement "split" effect.
2268
2269 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2270
2271         * shell/ev-view-private.h: Add a EvTransitionAnimation to the struct.
2272         * shell/ev-view.c (ev_view_expose_event) (ev_view_change_page)
2273         (ev_view_transition_animation_start) 
2274         (ev_view_transition_animation_finish) (ev_transition_animation_frame)
2275         (job_finished_cb) (page_changed_cb) (ev_view_set_presentation)
2276         (ev_view_next_page) (ev_view_previous_page):
2277         
2278         Use EvTransitionAnimation to drive page changes in the presentation
2279         mode, the animation will wait to start until both the origin and 
2280         destination page surfaces are available. Fixes #458460.
2281
2282         (draw_loading_text):
2283
2284         Remove workaround for bug #320352, it's now fixed properly.
2285
2286
2287 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2288
2289         * shell/ev-transition-animation.[ch]: Added, EvTransitionAnimation
2290         will contain the implementations for page transition animations, at
2291         the moment it just has the "replace" effect.
2292         * shell/Makefile.am: Added these files to build.
2293
2294 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2295
2296         * shell/ev-timeline.[ch]: Added, EvTimeline is the base object for
2297         animations.
2298         * shell/Makefile.am: Added these files to build.
2299
2300 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2301
2302         * backend/pdf/ev-poppler.cc (pdf_document_get_effect): Added
2303         implementation to get_effect() in EvDocumentTransitionIface.
2304
2305 2008-01-04  Carlos Garnacho  <carlosg@gnome.org>
2306
2307         * libdocument/ev-transition-effect.[ch]: New files, define a page
2308         transition effect, at the moment it maps PopplerPageTransition to a
2309         GObject.
2310         * libdocument/Makefile.am: Added these files to build.
2311         * libdocument/ev-document-transition.[ch]
2312         (ev_document_transition_get_effect): New method, gets the
2313         EvTransitionEffect returned by the interface implementation, with
2314         fallback to the "replace" effect.
2315
2316 2007-12-30  Carl-Anton Ingmarsson  <c-a.ingmarsson@oktv.se>
2317
2318         * configure.ac:
2319         * cut-n-paste/Makefile.am:
2320         * cut-n-paste/fileformatchooser/Makefile.am:
2321         * cut-n-paste/fileformatchooser/egg-macros.h:
2322         * cut-n-paste/fileformatchooser/eggfileformatchooser.[ch]:
2323         * shell/Makefile.am:
2324         * shell/ev-window.c: (image_save_dialog_response_cb),
2325         (ev_view_popup_cmd_save_image_as):
2326
2327         Allow exporting images in any format supported by
2328         GdkPixbuf. Fixes bug #500209.
2329         
2330 2007-12-29  Carlos Garcia Campos  <carlosgc@gnome.org>
2331
2332         * backend/pixbuf/pixbuf-document.c:
2333
2334         More warnings fixed.
2335         
2336 2007-12-29  Carlos Garcia Campos  <carlosgc@gnome.org>
2337
2338         * backend/djvu/djvu-links.c: (get_djvu_link_dest),
2339         (get_djvu_hyperlink_area), (djvu_links_find_link_dest):
2340         * backend/djvu/djvu-text.h:
2341         * backend/tiff/tiff-document.c: (tiff_document_render):
2342
2343         Fix compile warnings.
2344         
2345 2007-12-28  Christian Persch  <chpe@gnome.org>
2346
2347         * **/*.c: Include config.h. Bug #504721.
2348
2349 2007-12-28  Carlos Garcia Campos  <carlosgc@gnome.org>
2350
2351         * configure.ac:
2352         * Makefile.am:
2353         * po/POTFILES.in:
2354         * backend/comics/Makefile.am:
2355         * backend/comics/comics-document.[ch]:
2356         * backend/comics/comicsdocument.evince-backend.in:
2357         * backend/djvu/Makefile.am:
2358         * backend/djvu/djvu-document.[ch]:
2359         * backend/djvu/djvudocument.evince-backend.in:
2360         * backend/dvi/Makefile.am:
2361         * backend/dvi/dvi-document.[c]:
2362         * backend/dvi/dvidocument.evince-backend.in:
2363         * backend/impress/Makefile.am:
2364         * backend/impress/impress-document.[ch]:
2365         * backend/impress/impressdocument.evince-backend.in:
2366         * backend/pdf/Makefile.am:
2367         * backend/pdf/ev-poppler.cc:
2368         * backend/pdf/ev-poppler.h:
2369         * backend/pdf/pdfdocument.evince-backend.in:
2370         * backend/pixbuf/Makefile.am:
2371         * backend/pixbuf/pixbuf-document.[ch]:
2372         * backend/pixbuf/pixbufdocument.evince-backend.in:
2373         * backend/ps/Makefile.am:
2374         * backend/ps/ev-spectre.[ch]:
2375         * backend/ps/ps-document.[ch]:
2376         * backend/ps/psdocument.evince-backend.in:
2377         * backend/tiff/Makefile.am:
2378         * backend/tiff/tiff-document.[ch]:
2379         * backend/tiff/tiffdocument.evince-backend.in:
2380         * libdocument/Makefile.am:
2381         * libdocument/ev-backends-manager.[ch]:
2382         * libdocument/ev-module.[ch]:
2383         * libdocument/ev-document.h:
2384         * libdocument/ev-document-factory.[ch]:
2385         (gdk_pixbuf_mime_type_list), (mime_type_supported_by_gdk_pixbuf),
2386         (get_compression_from_mime_type), (get_document_from_uri),
2387         (ev_document_factory_get_document), (file_filter_add_mime_types),
2388         (ev_document_factory_add_filters):
2389         * shell/Makefile.am:
2390         * shell/ev-window-title.c: (get_filename_from_uri):
2391         * shell/main.c: (main):
2392         * thumbnailer/Makefile.am:
2393         * thumbnailer/evince-thumbnailer.c: (main):
2394
2395         Plugin system for backends. Fixes bug #351348.
2396         
2397 2007-12-25  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
2398
2399         * shell/ev-view-private.h:
2400         * shell/ev-view.c: (ev_view_drag_update_momentum),
2401         (ev_view_scroll_drag_release), (ev_view_motion_notify_event),
2402         (ev_view_button_release_event), (ev_view_destroy):
2403         
2404         Kinetic scrolling implemented as requested in
2405         bug #461271. Thanks to David Turner <cillian64@googlemail.com>.
2406
2407 2007-12-23  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
2408
2409         * data/evince-toolbar.xml:
2410         * data/evince-ui.xml:
2411         * shell/ev-view-private.h:
2412         * shell/ev-view.c: (ev_view_handle_cursor_over_xy),
2413         (ev_view_button_press_event), (ev_view_motion_notify_event),
2414         (ev_view_button_release_event), (ev_view_init),
2415         (ev_view_autoscroll_cb), (ev_view_autoscroll),
2416         (ev_view_set_cursor):
2417         * shell/ev-view.h:
2418         * shell/ev-window.c: (ev_window_setup_action_sensitivity),
2419         (ev_window_cmd_view_autoscroll):
2420         
2421         Autoscroll feature with the context menu. Fixes bug 
2422         #323670. Thanks to David Turner <cillian64@googlemail.com>.
2423
2424 2007-12-23  Carlos Garcia Campos  <carlosgc@gnome.org>
2425
2426         * shell/ev-pixbuf-cache.c: (check_job_size_and_unref):
2427
2428         Disconnect also page-ready signal when removing a job because the
2429         page size has changed. Thanks to kripken
2430         <kripkensteiner@gmail.com>.
2431
2432 2007-12-21  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
2433
2434         * shell/ev-page-action.c: (page_scroll_cb), (create_tool_item):
2435         
2436         Scroll pages in page entry with mouse wheel. Fixes bug
2437         #324122. Thanks to David Turner <cillian64@googlemail.com>.
2438
2439 2007-12-20  Carlos Garcia Campos  <carlosgc@gnome.org>
2440
2441         * backend/dvi/Makefile.am:
2442         * backend/dvi/cairo-device.c: (dvi_cairo_draw_ps),
2443         (mdvi_cairo_device_init):
2444         * backend/dvi/mdvi-lib/common.h:
2445         * backend/dvi/mdvi-lib/mdvi.h:
2446         * backend/dvi/mdvi-lib/sp-epsf.c: (epsf_special):
2447         * backend/dvi/mdvi-lib/util.c: (mdvi_strrstr),
2448         (mdvi_build_path_from_cwd):
2449
2450         Add ps specials support in dvi backend when libspectre is
2451         present. Fixes bug #386005.
2452         
2453 2007-12-20  Carlos Garcia Campos  <carlosgc@gnome.org>
2454
2455         * configure.ac:
2456         * backend/ps/Makefile.am:
2457         * backend/ps/ev-spectre.[ch]:
2458         
2459         Use libspectre, if available, for the ps backend. Fixes bugs
2460         #317106, #499787, #501235, #421879, #445797, #443859 and #486547.
2461
2462 2007-12-18  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>
2463         
2464         * backend/comics/comics-document.c: (comics_document_load):
2465         
2466         Cygwin build issue fix.
2467
2468 2007-12-16  Carlos Garcia Campos  <carlosgc@gnome.org>
2469
2470         * shell/ev-view.c: (ev_view_set_zoom):
2471
2472         Do not limit the minimum zoom factor when sizing mode is best bit
2473         or fit width. Fixes bug #503805.
2474         
2475 2007-12-14  Carlos Garcia Campos  <carlosgc@gnome.org>
2476
2477         * backend/pdf/ev-poppler.cc: (ev_link_dest_from_dest):
2478         * libdocument/ev-link-dest.[ch]: (ev_link_dest_get_top),
2479         (ev_link_dest_get_left), (ev_link_dest_get_zoom),
2480         (ev_link_dest_get_property), (ev_link_dest_set_property),
2481         (ev_link_dest_class_init), (ev_link_dest_new_xyz),
2482         (ev_link_dest_new_fith), (ev_link_dest_new_fitv),
2483         (ev_link_dest_new_fitr):
2484         * shell/ev-view.c: (goto_fitr_dest), (goto_fitv_dest),
2485         (goto_fith_dest), (goto_xyz_dest):
2486
2487         Do not change left, top and zoom values when they are null in PDF
2488         destinations. Fixes bug #460658.
2489         
2490 2007-12-10  Christian Persch  <chpe@gnome.org>
2491
2492         * shell/ev-view-accessible.c: (ev_view_accessible_finalize),
2493         (ev_view_accessible_class_init),
2494         (ev_view_accessible_idle_do_action),
2495         (ev_view_accessible_action_do_action),
2496         (ev_view_accessible_action_get_description),
2497         (ev_view_accessible_action_set_description),
2498         (ev_view_accessible_action_iface_init), (ev_view_accessible_new),
2499         (ev_view_accessible_factory_init),
2500         (ev_view_accessible_factory_get_accessible_type):
2501         * shell/ev-view-accessible.h: A bit of cleanup: use gobject instance
2502         private data, and G_DEFINE_TYPE. Bug #502843.
2503
2504 2007-12-08  Christian Persch  <chpe@gnome.org>
2505
2506         * shell/ev-metadata-manager.c: (item_free),
2507         (ev_metadata_manager_init), (ev_metadata_manager_shutdown),
2508         (value_free), (parse_value), (parseItem),
2509         (ev_metadata_manager_set_last), (ev_metadata_manager_set),
2510         (save_values): Use GSlice to allocate small amounts of memory. Bug
2511         #475972.
2512
2513 2007-12-05  Carlos Garcia Campos  <carlosgc@gnome.org>
2514
2515         * shell/ev-view.c: (ev_view_handle_cursor_over_xy):
2516
2517         Restore cursor to normal after a drag operation. Fixes bug
2518         #501603.
2519         
2520 2007-12-04  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
2521
2522         * NEWS:
2523         * configure.ac:
2524         
2525         Update for release 2.21.1
2526
2527 2007-12-02  Carlos Garcia Campos  <carlosgc@gnome.org>
2528
2529         * configure.ac:
2530         * cut-n-paste/gedit-message-area/Makefile.am:
2531         * cut-n-paste/gedit-message-area/gedit-message-area.[ch]:
2532         * shell/Makefile.am:
2533         * shell/ev-message-area.[ch]:
2534         * shell/ev-window.c: (ev_window_set_message_area),
2535         (ev_window_error_message_response_cb), (ev_window_error_message),
2536         (ev_window_load_job_cb), (ev_window_cmd_file_open_copy_at_dest),
2537         (ev_window_save_job_cb), (image_save_dialog_response_cb),
2538         (ev_attachment_popup_cmd_open_attachment),
2539         (attachment_save_dialog_response_cb), (ev_window_set_document),
2540         (ev_window_init):
2541
2542         Use a message area instead of a popup dialog for error
2543         notifications. Fixes bug #337495.
2544         
2545 2007-12-02  Carlos Garcia Campos  <carlosgc@gnome.org>
2546
2547         * shell/ev-window.c: (fullscreen_toolbar_remove_shadow),
2548         (ev_window_run_fullscreen):
2549
2550         Remove the shadow of the fullscreen toolbar. Fixes bug #500702.
2551         
2552 2007-12-01  Carlos Garcia Campos  <carlosgc@gnome.org>
2553
2554         * ev-sidebar-thumbnails.c: (update_visible_range),
2555         (ev_sidebar_thumbnails_refresh),
2556         (ev_sidebar_thumbnails_set_document),
2557         (ev_sidebar_thumbnails_support_document):
2558
2559         Show thumbnails for documents with one page. Fixes bug #358751.
2560         
2561 2007-12-01  Carlos Garcia Campos  <carlosgc@gnome.org>
2562
2563         * shell/ev-window.c:
2564         (ev_window_load_print_settings_from_metadata),
2565         (ev_window_save_print_settings), (ev_window_print_finished),
2566         (ev_window_print_range):
2567
2568         Print settings that are specific to the document are now saved per
2569         document in the metadata file. Fixes bug #488806.
2570         
2571 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
2572
2573         * backend/tiff/tiff-document.c: (tiff_document_render):
2574
2575         Tiff documents were rendered with wrong colors. Fixes bug #497279.
2576         
2577 2007-11-25  Carlos Garcia Campos  <carlosgc@gnome.org>
2578
2579         * shell/ev-application.[ch]: (get_find_string_from_args),
2580         (ev_application_open_uri_at_dest), (ev_application_open_uri),
2581         (ev_application_open_uri_list):
2582         * shell/ev-jobs.[ch]: (ev_job_load_dispose), (ev_job_load_new):
2583         * shell/ev-window.[ch]: (ev_window_load_job_cb),
2584         (ev_window_open_uri), (ev_window_cmd_file_open_copy_at_dest),
2585         (ev_window_cmd_recent_file_activate),
2586         (ev_window_open_recent_action_item_activated),
2587         (ev_window_print_send), (open_remote_link):
2588         * shell/main.c: (arguments_parse):
2589
2590         Add a command line option for search. Fixes bug #497710.
2591         
2592 2007-11-20  Darren Kenny  <darren.kenny@sun.com>
2593
2594         * shell/ev-jobs.c: (ev_job_print_new):
2595
2596         Fix endless loop when pages_per_sheet is 0. Fixes bug #498248.
2597         
2598 2007-10-29  Carlos Garcia Campos  <carlosgc@gnome.org>
2599
2600         * data/evince-toolbar.xml:
2601         * shell/Makefile.am:
2602         * shell/ev-application.c: (ev_application_init):
2603         * shell/ev-open-recent-action.[ch]:
2604         * shell/ev-window.c:
2605         (ev_window_open_recent_action_item_activated),
2606         (register_custom_actions):
2607
2608         Add an expander to the open toolbar item which pops up a dropdown
2609         menu with the recently used documents. Fixes bug #487215.
2610         
2611 2007-10-29  Carlos Garcia Campos  <carlosgc@gnome.org>
2612
2613         * shell/ev-window.c: (ev_window_open_uri),
2614         (ev_window_cmd_view_reload):
2615
2616         Do not jump to the first page when reloading by running evince
2617         from the command line. Fixes bug #490847.
2618         
2619 2007-10-27  Hiroyuki Ikezoe  <poincare@ikezoe.net>
2620
2621         * shell/ev-window.c: (ev_window_cmd_help_contents):
2622
2623         Plugged memory leak when help file is not found. Fixes bug
2624         #490762.
2625         
2626 2007-10-26  Carlos Garcia Campos  <carlosgc@gnome.org>
2627
2628         * configure.ac:
2629
2630         Enable djvu, dvi and comics backends by default. Fixes bug
2631         #437121.
2632         
2633 2007-10-26  Carlos Garcia Campos  <carlosgc@gnome.org>
2634
2635         * configure.ac:
2636         * cut-n-paste/Makefile.am:
2637         * cut-n-paste/recent-files/*: Removed
2638         * help/reference/Makefile.am:
2639         * shell/Makefile.am:
2640         * shell/ev-application.[ch]: (ev_application_shutdown),
2641         (ev_application_init):
2642         * shell/ev-window.c: (ev_window_add_recent),
2643         (ev_window_setup_recent), (ev_window_dispose), (ev_window_init):
2644
2645         Bump requirements to gtk+ 2.10.0 and remove egg-recent code. 
2646         
2647 2007-10-25  Pascal Terjan  <pterjan@linuxfr.org>
2648
2649         * shell/ev-window.c: (launch_external_uri):
2650
2651         Let GnomeVFS check the URL, this allow more URL (like mailto:),
2652         and report error if the URL is not supported (#489910).
2653
2654 2007-10-24  Carlos Garcia Campos  <carlosgc@gnome.org>
2655
2656         * backend/pdf/ev-poppler.cc: (pdf_document_file_exporter_begin),
2657         (pdf_document_file_exporter_begin_page),
2658         (pdf_document_file_exporter_end_page):
2659
2660         Fix printing with poppler splash backend. Fixes bug #489774.
2661         
2662 2007-10-22  Carlos Garcia Campos  <carlosgc@gnome.org>
2663
2664         * backend/pdf/ev-poppler.cc: (pdf_document_file_exporter_begin):
2665         * shell/ev-print-job.c: (ev_print_job_class_init):
2666
2667         Fix a crash when printing with the gnome-print dialog. Fixes bug
2668         #488939.
2669         
2670 2007-10-18  Sebastien Bacher  <seb128@ubuntu.com>
2671
2672         * backend/pixbuf/pixbuf-document.c:
2673
2674         Fix an implicit function definition warning (#487655)
2675
2676 2007-10-11  Carlos Garcia Campos  <carlosgc@gnome.org>
2677
2678         * shell/ev-window.c:
2679
2680         Fix conflicting shortcut for view sade pane and presentation.
2681         
2682 2007-10-11  Carlos Garcia Campos  <carlosgc@gnome.org>
2683
2684         * backend/pdf/ev-poppler.cc:
2685         (pdf_document_file_exporter_begin_page),
2686         (pdf_document_file_exporter_do_page),
2687         (pdf_document_file_exporter_end_page),
2688         (pdf_document_file_exporter_iface_init):
2689         * libdocument/ev-file-exporter.[ch]:
2690         (ev_file_exporter_begin_page), (ev_file_exporter_end_page):
2691         * shell/ev-jobs.c: (ev_job_print_get_page_list),
2692         (ev_job_print_run):
2693
2694         When printing multiple pages per sheet in reverse option, do not
2695         invert the order of the pages in every sheet, but the order of the
2696         sheets. Do not print blank pages when page range is invalid. Fixes
2697         bugs #484857 and #485521.
2698         
2699 2007-10-10  Carlos Garcia Campos  <carlosgc@gnome.org>
2700
2701         * shell/ev-jobs.c: (ev_job_print_get_page_list),
2702         (ev_job_print_run):
2703         * shell/ev-window.c: (ev_window_print_dialog_response_cb):
2704
2705         Respect ranges order when printing more than one range in random
2706         order.
2707         
2708 2007-10-10  Martin Schanzenbach  <mschanzenbach@gmail.com>
2709
2710         * shell/ev-window.c: (ev_window_refresh_window_thumbnail),
2711         (ev_window_setup_document), (ev_window_rotation_changed_cb):
2712
2713         Rotate also the window icon when document is rotated. Fixes bug
2714         #474681.
2715         
2716 2007-10-04  Carlos Garcia Campos  <carlosgc@gnome.org>
2717
2718         * backend/pdf/ev-poppler.cc: (ev_form_field_from_poppler_field),
2719         (pdf_document_forms_get_form_fields):
2720
2721         Silently ignore unknown form fields. Fixes bug #482654. Patch by
2722         Matthias Drochner.
2723         
2724 2007-10-04  Carlos Garcia Campos  <carlosgc@gnome.org>
2725
2726         * configure.ac:
2727         * backend/pdf/ev-poppler.cc: (pdf_document_file_exporter_do_page):
2728
2729         Use poppler_page_render_for_printing() instead of
2730         poppler_page_render() if available when exporting to a ps or pdf
2731         file. Fixes bug #476627.
2732         
2733 2007-10-04  Carlos Garcia Campos  <carlosgc@gnome.org>
2734
2735         * shell/ev-window.c: (ev_window_run_fullscreen):
2736
2737         Do not show the toolbar in fullscreen mode if the main toolbar is
2738         not visible. Fixes bug #483048.
2739         
2740 2007-09-29  Carlos Garcia Campos  <carlosgc@gnome.org>
2741
2742         * shell/ev-view.c: (ev_view_button_press_event):
2743
2744         Give priority to form fields over images when deciding whether a
2745         button press event is over an image or form field. It allows edit
2746         form fields when they are over a background image. Fixes bug
2747         #477841.
2748         
2749 2007-09-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
2750
2751         * NEWS:
2752         * configure.ac:
2753         
2754         Update for release 2.20.0
2755
2756 2007-09-12  Carlos Garcia Campos  <carlosgc@gnome.org>
2757
2758         * backend/pdf/ev-poppler.cc:
2759
2760         Remove #ifdef HAVE_FORMS, so that forms support works again.
2761
2762 2007-09-05  Götz Waschk  <waschk@mandriva.org>
2763
2764         * configure.ac:
2765         * data/evince.desktop.in.in:
2766         
2767         Fixes desktop file issues. See bug #473471.
2768
2769 2007-09-04  Carlos Garcia Campos  <carlosgc@gnome.org>
2770
2771         * shell/ev-job-queue.c: (handle_job), (search_for_jobs_unlocked),
2772         (no_jobs_available_unlocked), (ev_job_queue_init), (find_queue),
2773         (ev_job_queue_remove_job):
2774         * shell/ev-jobs.[ch]: (ev_job_save_init), (ev_job_save_dispose),
2775         (ev_job_save_class_init), (ev_job_save_new), (ev_job_save_run):
2776         * shell/ev-window.c: (ev_window_clear_save_job),
2777         (ev_window_save_job_cb), (file_save_dialog_response_cb),
2778         (ev_window_dispose):
2779
2780         Move save a copy task to its own job so that it's carried out in a
2781         thread avoiding another lock in the main thread. Use
2782         ev_xfer_uri_simple() instead of gnome_vfs_move() so that document
2783         can be saved to a pathin another file system. Fixes bug #456891.
2784         
2785 2007-09-04  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
2786
2787         * NEWS:
2788         * configure.ac:
2789         
2790         Update for release 2.19.92
2791
2792 2007-09-03  Carlos Garcia Campos  <carlosgc@gnome.org>
2793
2794         * configure.ac:
2795         * backend/pdf/ev-poppler.cc: (pdf_selection_get_selected_text),
2796         (pdf_selection_get_selection_region),
2797         (pdf_selection_get_selection_map),
2798         (ev_form_field_from_poppler_field):
2799
2800         Bump requirements to poppler 0.6 and drop all ifdefs used. Double
2801         and triple click selections are enabled again now.
2802
2803 2007-09-03  Carlos Garcia Campos  <carlosgc@gnome.org>
2804
2805         * shell/ev-window.c: (ev_window_add_history):
2806
2807         Make sure not to use the history with documents not supporting
2808         links. Fixes bug #468954.
2809
2810 2007-09-03  Carlos Garcia Campos  <carlosgc@gnome.org>
2811
2812         * shell/ev-window.c: (ev_window_load_job_cb):
2813
2814         Restart the search when reloading a document with the find bar
2815         visible. Fixes bug #461962.
2816
2817 2007-09-03  Carlos Garcia Campos  <carlosgc@gnome.org>
2818
2819         * shell/ev-window.c: (setup_document_from_metadata),
2820         (ev_window_load_job_cb), (ev_window_cmd_view_reload):
2821
2822         Do not jump to the first page when reloading a document from the
2823         last page.
2824
2825 2007-09-03  Carlos Garcia Campos  <carlosgc@gnome.org>
2826
2827         * shell/ev-window.c: (update_chrome_flag),
2828         (setup_sidebar_from_metadata),
2829         (ev_window_cmd_focus_page_selector), (ev_window_cmd_edit_find),
2830         (ev_window_cmd_edit_find_next),
2831         (ev_window_cmd_edit_find_previous), (ev_window_cmd_escape),
2832         (ev_window_view_toolbar_cb), (ev_window_view_sidebar_cb),
2833         (find_bar_close_cb), (view_actions_focus_in_cb):
2834
2835         Do not update visibility when changing a chrome flag so that it's
2836         possible to update several flags and update visibility only once
2837         for all of them.
2838
2839 2007-09-03  Carlos Garcia Campos  <carlosgc@gnome.org>
2840
2841         * shell/ev-window.c: (ev_window_print_dialog_response_cb):
2842
2843         Use GTK_UNIT_POINTS instead of GTK_UNIT_PIXEL, since it's not
2844         supported by gtk+. Fixes bug #460907.
2845
2846 2007-09-03  Carlos Garcia Campos  <carlosgc@gnome.org>
2847
2848         * shell/ev-view.c: (view_update_range_and_current_page):
2849
2850         Make sure current-page <= end-page in continuous mode. Fixes bug
2851         #454950.
2852
2853 2007-09-03  Carlos Garcia Campos  <carlosgc@gnome.org>
2854
2855         * backend/pdf/ev-poppler.cc: (build_tree):
2856
2857         Ignore outline items without a title. Fixes bug #453913.
2858
2859 2007-09-03  Carlos Garcia Campos  <carlosgc@gnome.org>
2860
2861         * shell/ev-view.c: (ev_view_handle_cursor_over_xy),
2862         (ev_view_button_release_event), (ev_view_leave_notify_event):
2863
2864         Use always drag mouse cursor during a drag operation. Fixes bug
2865         #470564.
2866
2867 2007-09-02  Carlos Garcia Campos  <carlosgc@gnome.org>
2868
2869         * backend/pdf/ev-poppler.cc: (pdf_selection_get_selected_text),
2870         (pdf_selection_get_selection_region),
2871         (pdf_selection_get_selection_map):
2872
2873         Temporarily disable double and triple selections since it depends on
2874         poppler cvs head. It'll be enabled again as soon as poppler 0.6 is
2875         released and the update of the external dependency minimal version
2876         approved.
2877
2878 2007-09-01  Carlos Garcia Campos  <carlosgc@gnome.org>
2879
2880         * backend/pdf/ev-poppler.cc: (pdf_document_file_exporter_begin),
2881         (pdf_document_file_exporter_do_page):
2882         * libdocument/ev-file-exporter.h:
2883         * shell/ev-jobs.[ch]: (ev_job_print_new), (ev_job_print_run):
2884         * shell/ev-window.c: (ev_window_print_dialog_response_cb):
2885
2886         Actually fix printing regressions. Remove orientation from
2887         EvPrintContext since it's redundant.
2888
2889 2007-08-31  Carlos Garcia Campos  <carlosgc@gnome.org>
2890
2891         * backend/dvi/dvi-document.c: (dvi_document_document_iface_init):
2892         * backend/impress/impress-document.c:
2893         (impress_document_document_iface_init):
2894         * backend/ps/ps-document.c: (ps_document_document_iface_init):
2895         * backend/djvu/djvu-document.c:
2896         (djvu_document_document_iface_init),
2897         (djvu_selection_get_selected_text), (djvu_selection_iface_init):
2898         * backend/tiff/tiff-document.c:
2899         (tiff_document_document_iface_init):
2900         * backend/pixbuf/pixbuf-document.c:
2901         (pixbuf_document_document_iface_init):
2902         * backend/comics/comics-document.c:
2903         (comics_document_document_iface_init):
2904         * backend/pdf/ev-poppler.cc: (pdf_document_document_iface_init),
2905         (pdf_selection_render_selection),
2906         (pdf_selection_get_selected_text),
2907         (pdf_selection_get_selection_region),
2908         (pdf_selection_get_selection_map), (pdf_selection_iface_init):
2909         * libdocument/ev-selection.[ch]: (ev_selection_get_selected_text),
2910         (ev_selection_get_selection_region),
2911         (ev_selection_get_selection_map):
2912         * libdocument/ev-document.[ch]:
2913         * shell/ev-pixbuf-cache.[ch]: (add_job),
2914         (ev_pixbuf_cache_get_selection_surface), (update_job_selection):
2915         * shell/ev-view-private.h:
2916         * shell/ev-jobs.[ch]: (ev_job_render_new), (ev_job_render_new),
2917         (ev_job_render_run):
2918         * shell/ev-window.c: (ev_window_setup_action_sensitivity):
2919         * shell/ev-view.c: (start_selection_for_event),
2920         (ev_view_button_press_event), (ev_view_drag_data_get),
2921         (ev_view_drag_data_received), (ev_view_button_release_event),
2922         (compute_new_selection_text), (compute_selections),
2923         (ev_view_select_all), (get_selected_text), (ev_view_copy),
2924         (ev_view_primary_get_cb):
2925
2926         Add support for double and triple click selections.
2927
2928 2007-08-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
2929
2930         * NEWS:
2931         * configure.ac:
2932
2933         Update for release 2.19.4
2934
2935 2007-08-28  Justin Blanchard  <justinb04@aim.com>
2936
2937         * shell/ev-view-private.h:
2938         * shell/ev-view.c: (ev_view_expose_event), (ev_view_init),
2939         (ev_view_set_highlight_search):
2940         * shell/ev-view.h:
2941         * shell/ev-window.c: (ev_window_cmd_edit_find_next),
2942         (ev_window_cmd_edit_find_previous), (find_bar_search_changed_cb),
2943         (find_bar_visibility_changed_cb):
2944         
2945         Enables 'find next' when bindbar is hidden. Fixes bug #323817.
2946
2947 2007-08-27  Carlos Garcia Campos  <carlosgc@gnome.org>
2948
2949         * backend/pdf/ev-poppler.cc: (pdf_print_context_free),
2950         (pdf_document_file_exporter_begin),
2951         (pdf_document_file_exporter_do_page):
2952         * shell/ev-jobs.c: (ev_job_print_run):
2953         * shell/ev-window.c: (ev_window_print_dialog_response_cb):
2954
2955         Create always a portrait cairo surface and rotate when needed for
2956         landscape. It fixes printing problems in real printers.
2957
2958 2007-08-25  Carlos Garcia Campos  <carlosgc@gnome.org>
2959
2960         * backend/pdf/ev-poppler.cc: (pdf_document_file_exporter_begin):
2961         * libdocument/ev-file-exporter.[ch]:
2962         (ev_file_exporter_get_capabilities):
2963         * shell/ev-jobs.[ch]: (ev_job_print_new), (ev_job_print_run):
2964         * shell/ev-window.c: (ev_window_print_dialog_response_cb):
2965
2966         Adjust number of pages per row according to page orientation when
2967         printing 2 or 6 pages per sheet.
2968
2969 2007-08-25  Carlos Garcia Campos  <carlosgc@gnome.org>
2970
2971         * shell/ev-window.c: (ev_window_print_send):
2972
2973         Reset also cups setting to 1 when printing multiple pages per
2974         sheet. Fixes bug #468853.
2975
2976 2007-08-24  Carlos Garcia Campos  <carlosgc@gnome.org>
2977
2978         * libdocument/ev-document-misc.c:
2979         (ev_document_misc_surface_rotate_and_scale):
2980
2981         Use directly cairo_surface_get_content() when creating a similar
2982         surface as suggested by Jeff Muizelaar. Thanks again.
2983
2984 2007-08-24  Carlos Garcia Campos  <carlosgc@gnome.org>
2985
2986         * backend/djvu/djvu-document.c: (djvu_document_render):
2987         * backend/tiff/tiff-document.c: (tiff_document_render):
2988         * backend/pdf/ev-poppler.cc: (pdf_document_render):
2989         * libdocument/ev-document-misc.c:
2990         (ev_document_misc_surface_from_pixbuf),
2991         (ev_document_misc_surface_rotate_and_scale):
2992
2993         Use CAIRO_FORMAT_RGB24 instead of CAIRO_FORMAT_ARGB32 when
2994         creating page surfaces. Fixes bug #453123. Thank you very much to
2995         Jeff Muizelaar <jeff@infidigm.net>.
2996
2997 2007-08-17  Carlos Garcia Campos  <carlosgc@gnome.org>
2998
2999         * shell/ev-page-cache.c: (ev_page_cache_new),
3000         (ev_page_cache_get_thumbnail_size):
3001         * shell/ev-sidebar-thumbnails.c: (get_scale_for_page),
3002         (ev_sidebar_thumbnails_set_loading_icon):
3003
3004         Also store in page-cache the dimensions of the thumbnails so that
3005         they can be used to create the correct loading icon in the side
3006         pane. Fixes bug #466857.
3007
3008 2007-08-17  Carlos Garcia Campos  <carlosgc@gnome.org>
3009
3010         * backend/pdf/ev-poppler.cc:
3011         (pdf_document_thumbnails_get_thumbnail):
3012
3013         Fix thumbnails rotation in pdf documents that include embedded 
3014         thumbnails.
3015
3016 2007-08-15  Jens Granseuer  <jensgr@gmx.net>
3017
3018         * backend/pdf/ev-poppler.cc:
3019
3020         Don't use #ifdef in macro expansion. Some compilers don't
3021         like that. Closes bug #467042.
3022
3023 2007-08-15  Justin Blanchard  <justinb04@aim.com>
3024
3025         * backend/djvu/djvu-document.c: (djvu_document_finalize):
3026         
3027         Fixes memory leak in djvu backend.
3028
3029 2007-08-15  Andreas Nilsson  <nisses.mail@home.se>
3030
3031         * data/icons/32x32/Makefile.am:
3032         * data/icons/32x32/actions/Makefile.am:
3033         * data/icons/32x32/actions/view-page-cont.svg:
3034         * data/icons/32x32/actions/view-page-facing.svg:
3035         * data/icons/48x48/Makefile.am:
3036         * data/icons/48x48/actions/Makefile.am:
3037         * data/icons/48x48/actions/view-page-cont.svg:
3038         * data/icons/48x48/actions/view-page-facing.svg:
3039         
3040         Icons for a new sizes.
3041
3042 2007-08-14  Justin Blanchard  <justinb04@aim.com>
3043
3044         * shell/ev-page-cache.c: (build_height_to_page),
3045         (ev_page_cache_get_height_to_page):
3046         
3047         Fixes invalid read, see bug #466401.
3048
3049 2007-08-11  Carlos Garcia Campos  <carlosgc@gnome.org>
3050
3051         * cut-n-paste/toolbar-editor/egg-toolbar-editor.c:
3052         (set_drag_cursor):
3053         * cut-n-paste/toolbar-editor/egg-editable-toolbar.c:
3054         (configure_item_cursor), (new_pixbuf_from_widget):
3055
3056         Fix multihead problems in toolbar editor. Fixes bug #382055.
3057
3058 2007-08-11  Carlos Garcia Campos  <carlosgc@gnome.org>
3059
3060         * shell/ev-window.c: (ev_window_cmd_file_open),
3061         (ev_window_cmd_save_as):
3062
3063         Use g_get_user_special_dir when available instead of
3064         xdg_user_dir_lookup.
3065
3066 2007-08-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3067
3068         * MAINTAINERS:
3069         
3070         Updated according to request on desktop-devel.
3071
3072 2007-08-05  Carlos Garcia Campos  <carlosgc@gnome.org>
3073
3074         * shell/ev-view.c: (ev_view_expose_event), (draw_one_page):
3075
3076         Do not use cairo_rectangle and cairo_clip since we are
3077         not using cairo_fill but cairo_paint. Use the same cairo context
3078         for every page in the same expose event.
3079
3080 2007-07-31  Hiroyuki Ikezoe  <poincare@ikezoe.net>
3081
3082         * shell/ev-window.c: (file_open_dialog_response_cb): Plugged memory
3083         leak.
3084
3085 2007-07-30  Carlos Garcia Campos  <carlosgc@gnome.org>
3086
3087         * configure.ac:
3088         * NEWS:
3089
3090         Release 0.9.3
3091
3092 2007-07-30  Carlos Garcia Campos  <carlosgc@gnome.org>
3093
3094         * libdocument/ev-document-info.h:
3095         * libdocument/ev-document.h:
3096         * shell/ev-page-action.h:
3097         * shell/ev-sidebar-links.h:
3098
3099         Fix a headers problem with ev-link
3100         
3101         * libdocument/ev-link.[ch]: (ev_link_mapping_get_area):
3102         * shell/ev-view-private.h:
3103         * shell/ev-view.c: (ev_view_handle_cursor_over_xy),
3104         (get_link_area), (ev_view_query_tooltip),
3105         (ev_view_leave_notify_event), (ev_view_destroy),
3106         (ev_view_class_init):
3107
3108         Use new gtk tooltips when available instead of ev-tooltip.
3109         
3110 2007-07-30  Carlos Garcia Campos  <carlosgc@gnome.org>
3111
3112         * shell/ev-window.c: (update_chrome_visibility),
3113         (ev_window_sidebar_visibility_changed_cb):
3114
3115         Do not hide sidebar in fullscreen mode. Fixes bug #396535.
3116         
3117 2007-07-29  Carlos Garcia Campos  <carlosgc@gnome.org>
3118
3119         * shell/ev-navigation-action.c:
3120         (ev_navigation_action_history_changed),
3121         (ev_navigation_action_set_history):
3122         * shell/ev-navigation-action-widget.c:
3123         (ev_navigation_action_widget_init):
3124         * shell/ev-sidebar-thumbnails.c: (adjustment_changed_cb):
3125
3126         Fix compile warnings.
3127         
3128 2007-07-29  Carlos Garcia Campos  <carlosgc@gnome.org>
3129
3130         * cut-n-paste/toolbar-editor/egg-editable-toolbar.c:
3131         (egg_editable_toolbar_dispose):
3132
3133         Fix memory leak.
3134         
3135 2007-07-29  Carlos Garcia Campos  <carlosgc@gnome.org>
3136
3137         * cut-n-paste/totem-screensaver/totem-scrsaver.c:
3138         (screensaver_disable_x11):
3139         * shell/ev-metadata-manager.c: (ev_metadata_arm_timeout):
3140         * shell/ev-window.c: (presentation_set_timeout):
3141         * shell/ev-view.c: (ev_view_presentation_transition_start):
3142
3143         Use g_timeout_add_seconds instead of g_timeout_add when
3144         available.
3145         
3146 2007-07-29  Carlos Garcia Campos  <carlosgc@gnome.org>
3147
3148         * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_init):
3149
3150         Set horizontal scrollbar policy to AUTOMATIC instead of
3151         NEVER. Workaround for bug #449462.
3152         
3153 2007-07-29  Carlos Garcia Campos  <carlosgc@gnome.org>
3154
3155         * shell/ev-jobs.c: (ev_job_render_page_ready):
3156
3157         Add page_ready callback to main loop with high priority and hold
3158         a reference to job during idle.
3159         
3160 2007-07-29  Carlos Garcia Campos  <carlosgc@gnome.org>
3161
3162         * configure.ac:
3163         * backend/pdf/ev-poppler.cc: (pdf_print_context_free),
3164         (pdf_document_file_exporter_begin),
3165         (pdf_document_file_exporter_do_page),
3166         (pdf_document_file_exporter_get_capabilities):
3167         * libdocument/ev-file-exporter.h:
3168         * shell/ev-jobs.[ch]: (ev_job_print_new), (ev_job_print_run):
3169         * shell/ev-window.c: (ev_window_print_send),
3170         (ev_window_print_dialog_response_cb):
3171
3172         Allow printing multiple pages per sheet. Fixes bug #395573.
3173         
3174 2007-07-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3175
3176         * shell/ev-view.c: (tip_from_link):
3177         
3178         Check for NULL, fixes bug #460862.
3179
3180 2007-07-29  Christian Persch  <chpe@gnome.org>
3181
3182         * shell/ev-window.c: (ev_window_enumerate_printer_cb),
3183         (ev_window_preview_print_finished), (ev_window_do_preview_print),
3184         (ev_window_cmd_preview_print):
3185         
3186         Fixes bug #437681 - blocks while enumerating printers.
3187
3188 2007-07-29  Christian Persch  <chpe@gnome.org>
3189
3190         * shell/ev-window.c: (ev_window_screen_changed):
3191         
3192         Don't use deprecated gtk+ function. See bug #460909.
3193
3194 2007-07-27  Carlos Garcia Campos  <carlosgc@gnome.org>
3195
3196         * shell/ev-utils.c: (get_num_monitors):
3197         * shell/ev-window.c: (ev_window_sizing_mode_changed_cb):
3198
3199         Do not use display before initializing it. Remove compile
3200         warnings.
3201
3202 2007-07-27  Cosimo Cecchi  <anarki@lilik.it>
3203
3204         * shell/ev-view.c: (ev_view_class_init):
3205         
3206         Unix-like hjkl bindings added. See bug #458111.
3207
3208 2007-07-27  Johannes Buchner  <buchner.johannes@gmx.at>
3209
3210         * shell/ev-utils.c: (get_num_monitors), (get_screen_dpi):
3211         * shell/ev-utils.h:
3212         * shell/ev-view.c: (ev_view_set_zoom_for_size),
3213         (ev_view_update_view_size):
3214         * shell/ev-view.h:
3215         * shell/ev-window.c: (ev_window_update_actions),
3216         (setup_view_from_metadata), (ev_window_screen_changed),
3217         (ev_window_sizing_mode_changed_cb), (ev_window_zoom_changed_cb),
3218         (zoom_control_changed_cb):
3219         * shell/ev-window.h:
3220         
3221         Reorganizes utility functions.
3222
3223 2007-07-26  Carlos Garcia Campos  <carlosgc@gnome.org>
3224
3225         * shell/ev-pixbuf-cache.c: (job_page_ready_cb), (job_finished_cb),
3226         (copy_job_page_and_selection_to_job_info), (copy_job_to_job_info),
3227         (add_job), (ev_pixbuf_cache_get_surface),
3228         (ev_pixbuf_cache_get_link_mapping),
3229         (ev_pixbuf_cache_get_image_mapping),
3230         (ev_pixbuf_cache_get_form_field_mapping),
3231         (ev_pixbuf_cache_get_text_mapping):
3232         * shell/ev-jobs.[ch]: (ev_job_render_class_init),
3233         (notify_page_ready), (ev_job_render_page_ready),
3234         (ev_job_render_run):
3235
3236         Add page_ready signal to notify that page is ready as soon as
3237         possible even if other page elements like links, forms, images or
3238         text mapping are not ready yet.
3239
3240 2007-07-26  Carlos Garcia Campos  <carlosgc@gnome.org>
3241
3242         * backend/dvi/dvi-document.c: (dvi_document_file_exporter_begin),
3243         (dvi_document_file_exporter_do_page),
3244         (dvi_document_file_exporter_get_capabilities),
3245         (dvi_document_file_exporter_iface_init):
3246         * backend/ps/ps-document.c: (ps_document_file_exporter_begin),
3247         (ps_document_file_exporter_do_page),
3248         (ps_document_file_exporter_get_capabilities),
3249         (ps_document_file_exporter_iface_init):
3250         * backend/djvu/djvu-document.c:
3251         (djvu_document_file_exporter_begin),
3252         (djvu_document_file_exporter_end),
3253         (djvu_document_file_exporter_get_capabilities),
3254         (djvu_document_file_exporter_iface_init):
3255         * backend/tiff/tiff-document.c:
3256         (tiff_document_file_exporter_begin),
3257         (tiff_document_file_exporter_get_capabilities),
3258         (tiff_document_document_file_exporter_iface_init):
3259         * backend/pdf/ev-poppler.cc: (pdf_document_file_exporter_begin),
3260         (pdf_document_file_exporter_do_page),
3261         (pdf_document_file_exporter_get_capabilities),
3262         (pdf_document_file_exporter_iface_init):
3263         * libdocument/ev-file-exporter.[ch]: (ev_file_exporter_begin),
3264         (ev_file_exporter_get_capabilities):
3265         * shell/ev-print-job.c: (ev_print_job_use_print_dialog_settings),
3266         (idle_print_handler), (ev_print_job_print):
3267         * shell/ev-jobs.c: (ev_job_print_run):
3268         * shell/ev-window.c: (ev_window_print_send),
3269         (ev_window_print_range):
3270
3271         Use capabilities to know which options should be offered by the
3272         print dialog depending on the document backend.
3273
3274 2007-07-25  Carlos Garcia Campos  <carlosgc@gnome.org>
3275
3276         * shell/ev-view.c: (ev_view_handle_cursor_over_xy):
3277
3278         Give priority to forms over text to set the cursor.
3279
3280 2007-07-24  Carlos Garcia Campos  <carlosgc@gnome.org>
3281
3282         * shell/ev-view-private.h:
3283         * shell/ev-view.c: (ev_view_handle_cursor_over_xy),
3284         (ev_view_leave_notify_event), (ev_view_finalize),
3285         (ev_view_get_property), (ev_view_class_init):
3286
3287         Use IBEAM cursor for text form fields and NORMAL cursor for read
3288         only fields. Remove unused status attribute.
3289
3290 2007-07-20  Carlos Garcia Campos  <carlosgc@gnome.org>
3291
3292         * shell/ev-view.c: (ev_view_form_field_button_create_widget):
3293
3294         Update region for current selected items also for checkbox
3295         buttons, since they can behave as radio buttons when they are in a
3296         set.
3297
3298 2007-07-19  Carlos Garcia Campos  <carlosgc@gnome.org>
3299
3300         * configure.ac:
3301         * backend/pdf/ev-poppler.cc: (ev_form_field_from_poppler_field):
3302
3303         Get max length of text form fields.
3304
3305 2007-07-19  Carlos Garcia Campos  <carlosgc@gnome.org>
3306
3307         * backend/pdf/ev-poppler.cc: (ev_form_field_from_poppler_field):
3308         * libdocument/ev-form-field.h:
3309         * shell/ev-view.c: (ev_view_form_field_text_create_widget):
3310
3311         Fix build with current poppler cvs head.
3312
3313 2007-07-11  Carlos Garcia Campos  <carlosgc@gnome.org>
3314
3315         * cut-n-paste/zoom-control/ephy-zoom-control.c:
3316         * shell/eggfindbar.c: (egg_find_bar_init):
3317
3318         Fix build with gtk+ >= 2.11.5 due to gtktooltips
3319         deprecation. Fixes bug #455667
3320
3321 2007-07-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3322
3323         * NEWS:
3324         * configure.ac:
3325         
3326         Update for release 0.9.2
3327
3328 2007-07-09  Carlos Garcia Campos  <carlosgc@gnome.org>
3329
3330         * shell/ev-view.c: (ev_view_form_field_text_save),
3331         (ev_view_form_field_choice_save):
3332
3333         Fix a crash when closing whith a form widget visible.
3334
3335 2007-07-09  Carlos Garcia Campos  <carlosgc@gnome.org>
3336
3337         * shell/ev-view.c: (ev_view_form_field_button_create_widget):
3338
3339         Update also the region of the current selected button when
3340         clicking on another button if they are radio buttons.
3341
3342 2007-07-09  Carlos Garcia Campos  <carlosgc@gnome.org>
3343
3344         * shell/ev-pixbuf-cache.[ch]: (ev_pixbuf_cache_class_init),
3345         (dispose_cache_job_info), (job_finished_cb), (move_one_job),
3346         (add_job), (add_job_if_needed), (ev_pixbuf_cache_get_surface),
3347         (ev_pixbuf_cache_get_link_mapping),
3348         (ev_pixbuf_cache_get_image_mapping),
3349         (ev_pixbuf_cache_get_form_field_mapping),
3350         (ev_pixbuf_cache_get_text_mapping), (ev_pixbuf_cache_reload_page):
3351         * shell/ev-view.c: (ev_view_form_field_get_region),
3352         (ev_view_form_field_button_create_widget),
3353         (ev_view_form_field_text_save), (ev_view_form_field_choice_save),
3354         (job_finished_cb):
3355
3356         Redraw only form field region instead of the whole page when
3357         reloading a page to show changes on the form field.
3358
3359 2007-07-09  Carlos Garcia Campos  <carlosgc@gnome.org>
3360
3361         * shell/ev-view.c: (ev_view_form_field_choice_save):
3362
3363         Fix selection of first item in list form fields.
3364
3365 2007-07-09  Carlos Garcia Campos  <carlosgc@gnome.org>
3366
3367         * shell/ev-pixbuf-cache.c: (add_job), (add_job_if_needed),
3368         (ev_pixbuf_cache_reload_page),
3369         (ev_pixbuf_cache_get_form_field_mapping):
3370
3371         Some refactoring to avoid duplicated code.
3372
3373 2007-07-08  Carlos Garcia Campos  <carlosgc@gnome.org>
3374
3375         * configure.ac:
3376         * backend/pdf/ev-poppler.cc: (pdf_document_get_crop_box),
3377         (ev_form_field_from_poppler_field),
3378         (pdf_document_forms_get_form_fields),
3379         (pdf_document_forms_form_field_text_get_text),
3380         (pdf_document_forms_form_field_text_set_text),
3381         (pdf_document_forms_form_field_button_set_state),
3382         (pdf_document_forms_form_field_button_get_state),
3383         (pdf_document_forms_form_field_choice_get_item),
3384         (pdf_document_forms_form_field_choice_get_n_items),
3385         (pdf_document_forms_form_field_choice_is_item_selected),
3386         (pdf_document_forms_form_field_choice_select_item),
3387         (pdf_document_forms_form_field_choice_toggle_item),
3388         (pdf_document_forms_form_field_choice_unselect_all),
3389         (pdf_document_forms_form_field_choice_set_text),
3390         (pdf_document_forms_form_field_choice_get_text),
3391         (pdf_document_document_forms_iface_init):
3392         * libdocument/Makefile.am:
3393         * libdocument/ev-form-field.[ch]:
3394         * libdocument/ev-document-forms.[ch]:
3395         * shell/ev-pixbuf-cache.[ch]: (dispose_cache_job_info),
3396         (move_one_job), (copy_job_to_job_info), (add_job_if_needed),
3397         (add_job), (ev_pixbuf_cache_reload_page),
3398         (ev_pixbuf_cache_get_form_field_mapping):
3399         * shell/ev-jobs.[ch]: (ev_job_render_new), (ev_job_render_run):
3400         * shell/ev-view-private.h:
3401         * shell/ev-view.[ch]: (ev_view_set_scroll_adjustments),
3402         (ev_view_handle_cursor_over_xy),
3403         (ev_view_get_form_field_at_location),
3404         (ev_view_forms_remove_widgets), (ev_view_form_field_destroy),
3405         (ev_view_form_field_button_create_widget),
3406         (ev_view_form_field_text_save), (ev_view_form_field_text_changed),
3407         (ev_view_form_field_text_create_widget),
3408         (ev_view_form_field_choice_save),
3409         (ev_view_form_field_choice_changed),
3410         (ev_view_form_field_choice_create_widget),
3411         (ev_view_handle_form_field), (ev_view_size_allocate),
3412         (ev_view_realize), (draw_end_presentation_page),
3413         (ev_view_button_press_event), (ev_view_remove_all),
3414         (ev_view_motion_notify_event), (ev_view_key_press_event),
3415         (ev_view_enter_notify_event), (highlight_find_results),
3416         (draw_loading_text), (draw_one_page), (ev_view_destroy),
3417         (ev_view_class_init), (page_changed_cb),
3418         (on_adjustment_value_changed), (ev_view_set_presentation),
3419         (merge_selection_region), (ev_view_set_cursor),
3420         (ev_view_reset_presentation_state):
3421         
3422         Merge evince-forms branch.
3423
3424 2007-07-03  Jaap Haitsma  <jaap@haitsma.org>
3425
3426         * cut-n-paste/toolbar-editor/update-toolbareditor-from-libegg: removed
3427
3428         * cut-n-paste/toolbar-editor/update-toolbareditor-from-libegg.sh: added
3429         This script also updates itself from libegg
3430
3431         * cut-n-paste/toolbar-editor/egg*:
3432         Run update-toolbareditor-from-libegg.sh so we are in sync again with
3433         libegg
3434
3435 2007-07-02  Jaap Haitsma  <jaap@haitsma.org>
3436
3437         * shell/ev-window.c:
3438         
3439         Adds a nice icon to page action during toolbar editing.
3440         See bug #452872.
3441
3442 2007-07-02  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3443
3444         * data/evince-toolbar.xml:
3445         * shell/ev-window.c:
3446         
3447         Let user add a presentation and fullscreen icons on toolbar.
3448         See bug #449734.
3449
3450 2007-07-01  Jaap Haitsma  <jaap@haitsma.org>
3451
3452         * cut-n-paste/toolbar-editor/update-toolbareditor-from-libegg: 
3453
3454         new script to keep in sync with toolbareditor in libegg
3455
3456         * cut-n-paste/toolbar-editor/*: 
3457
3458         Run update-toolbareditor-from-libegg so we are in sync again. 
3459         Fixes bug #452850.
3460         
3461
3462 2007-07-01  Carlos Garcia Campos  <carlosgc@gnome.org>
3463
3464         * shell/ev-sidebar-links.c: (job_finished_callback):
3465
3466         Do not connect selection changed signal more than once. Fixes bug
3467         #349433.
3468
3469 2007-06-29  Carlos Garcia Campos  <carlosgc@gnome.org>
3470
3471         * shell/ev-window.c: (ev_window_view_sidebar_cb):
3472
3473         Do not change sidebar chrome flag when pressing F9 key in
3474         presentation mode.
3475
3476 2007-06-29  Carlos Garcia Campos  <carlosgc@gnome.org>
3477
3478         * backend/pdf/ev-poppler.cc:
3479         (pdf_document_thumbnails_get_dimensions):
3480
3481         Make sure thumbnails width and height is not <= 0. Fixes a crash
3482         with some pdf documents which have really small pages.
3483
3484 2007-06-22  Gabor Kelemen  <kelemeng@gnome.hu>
3485
3486         * shell/main.c: (main):
3487
3488         Fixes program description translation issue.
3489         Bug #450148.
3490
3491 2007-06-21  Cesar Fernandez  <cesar@pk2.org>
3492
3493         * shell/ev-view.c: (ev_view_next_page), (ev_view_previous_page):
3494
3495         Do not change current page when returning from black/white mode
3496         in presentation. Fixes bug #415032.
3497
3498 2007-06-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3499
3500         * NEWS:
3501         * configure.ac:
3502         
3503         Update for release 0.9.1
3504
3505 2007-06-17  Alaska Subedi  <asubedi@gmail.com>
3506
3507         * backend/dvi/dvi-document.c:
3508         (dvi_document_finalize),
3509         (dvi_document_file_exporter_format_supported),
3510         (dvi_document_file_exporter_begin),
3511         (dvi_document_file_exporter_do_page),
3512         (dvi_document_file_exporter_end),
3513         (dvi_document_file_exporter_iface_init), (dvi_document_init):
3514         
3515         PDF exporter for dvi documents. Fixes bug #441319.
3516
3517 2007-06-17  Carlos Garcia Campos  <carlosgc@gnome.org>
3518
3519         * shell/ev-window.c: (ev_window_clear_print_job):
3520
3521         Clear gtk print job when job has finished. Fixes bug #447612.
3522
3523 2007-06-17  Carlos Garcia Campos  <carlosgc@gnome.org>
3524
3525         * shell/ev-window.c: (ev_window_print_send),
3526         (ev_window_print_dialog_response_cb), (ev_window_print_range):
3527
3528         Add preview button to print dialog. Fixes bug #445419.
3529
3530 2007-06-17  Carlos Garcia Campos  <carlosgc@gnome.org>
3531
3532         * backend/dvi/Makefile.am:
3533         * backend/dvi/pixbuf-device.[ch]: Removed
3534         * backend/dvi/cairo-device.[ch]: Added
3535         * backend/dvi/mdvi-lib/dviread.c: (draw_shrink_rule):
3536         * backend/dvi/dvi-document.c: (dvi_document_load),
3537         (dvi_document_render), (dvi_document_finalize),
3538         (dvi_document_thumbnails_get_thumbnail), (parse_color),
3539         (dvi_document_do_color_special):
3540         * libdocument/ev-document-misc.[ch]:
3541         (ev_document_misc_pixbuf_from_surface):
3542
3543         Port dvi backend to cairo and fix a problem with colors. 
3544
3545 2007-06-14  Carlos Garcia Campos  <carlosgc@gnome.org>
3546
3547         * shell/ev-view.c: (draw_one_page):
3548
3549         Draw only visible region.
3550
3551 2007-06-13  Carlos Garcia Campos  <carlosgc@gnome.org>
3552
3553         * backend/djvu/djvu-document.c: (djvu_document_render):
3554
3555         Fix rotation in djvu backend.
3556
3557 2007-06-13  Carlos Garcia Campos  <carlosgc@gnome.org>
3558
3559         * shell/ev-pixbuf-cache.c: (job_finished_cb),
3560         (ev_pixbuf_cache_get_surface), (ev_pixbuf_cache_get_link_mapping),
3561         (ev_pixbuf_cache_get_image_mapping),
3562         (ev_pixbuf_cache_get_text_mapping):
3563
3564         Redraw view every time we have a new surface. Fixes bug #443587.
3565
3566 2007-06-13  Carlos Garcia Campos  <carlosgc@gnome.org>
3567
3568         * libdocument/ev-document.c: (ev_document_info_free):
3569
3570         Fix memory leaks.
3571
3572 2007-06-13  Carlos Garcia Campos  <carlosgc@gnome.org>
3573
3574         * backend/dvi/dvi-document.c: (dvi_document_render),
3575         (dvi_document_render_pixbuf), (dvi_document_document_iface_init):
3576         * backend/impress/impress-document.c:
3577         (imp_render_get_from_drawable), (impress_document_render_pixbuf),
3578         (impress_document_render), (impress_document_document_iface_init),
3579         (impress_document_thumbnails_get_thumbnail):
3580         * backend/djvu/djvu-document-private.h:
3581         * backend/djvu/djvu-document.c: (djvu_document_render),
3582         (djvu_document_finalize), (djvu_document_document_iface_init),
3583         (djvu_document_thumbnails_get_thumbnail), (djvu_document_init):
3584         * backend/tiff/tiff-document.c: (tiff_document_render),
3585         (tiff_document_render_pixbuf),
3586         (tiff_document_document_iface_init):
3587         * backend/pdf/ev-poppler.cc: (pdf_document_render),
3588         (pdf_document_render_pixbuf), (pdf_document_document_iface_init),
3589         (pdf_selection_render_selection):
3590         * backend/comics/comics-document.c:
3591         (comics_document_render_pixbuf), (comics_document_render),
3592         (comics_document_document_iface_init):
3593         * backend/pixbuf/pixbuf-document.c: (pixbuf_document_render),
3594         (pixbuf_document_document_iface_init):
3595         * libdocument/ev-document-misc.[ch]:
3596         (ev_document_misc_surface_from_pixbuf),
3597         (ev_document_misc_surface_rotate_and_scale):
3598         * libdocument/ev-document.[ch]: (ev_document_render):
3599         * libdocument/ev-selection.[ch]: (ev_selection_render_selection):
3600         * shell/ev-pixbuf-cache.[ch]: (dispose_cache_job_info),
3601         (move_one_job), (copy_job_to_job_info), (add_job_if_needed),
3602         (ev_pixbuf_cache_get_surface), (new_selection_surface_needed),
3603         (clear_selection_if_needed), (ev_pixbuf_cache_style_changed),
3604         (ev_pixbuf_cache_get_selection_surface), (clear_job_selection):
3605         * shell/ev-jobs.[ch]: (ev_job_render_dispose),
3606         (render_finished_cb), (ev_job_render_run):
3607         * shell/ev-view.c: (draw_loading_text), (draw_one_page),
3608         (merge_selection_region):
3609
3610         Use cairo image surfaces instead of GDK pixbufs for drawing pages
3611         and selections.
3612
3613 2007-06-12  Carlos Garcia Campos  <carlosgc@gnome.org>
3614
3615         * shell/ev-window-title.c: (ev_window_title_update):
3616
3617         Fix memory leak.
3618
3619 2007-06-09  Carlos Garcia Campos  <carlosgc@gnome.org>
3620
3621         * shell/ev-view.c: (draw_loading_text):
3622
3623         Show loading text centered. Fixes bug #433061
3624
3625 2007-06-09  Carlos Garcia Campos  <carlosgc@gnome.org>
3626
3627         * shell/ev-sidebar-thumbnails.c:
3628         (ev_sidebar_thumbnails_set_loading_icon):
3629
3630         Remove a mutex in the main thread that blocks the UI in heavy
3631         documents.
3632
3633 2007-06-09  Carlos Garcia Campos  <carlosgc@gnome.org>
3634
3635         * shell/ev-pixbuf-cache.c (copy_job_to_job_info):
3636
3637         Set points_set to TRUE so that selections don't disappear after a
3638         zoom change.
3639
3640 2007-06-07  Michael Monreal  <infernux@web.de>
3641
3642         * data/icons/16x16/actions/Makefile.am:
3643         * data/icons/16x16/actions/zoom.svg:
3644         * data/icons/22x22/actions/Makefile.am:
3645         * data/icons/22x22/actions/zoom.svg:
3646         * data/icons/24x24/actions/Makefile.am:
3647         * shell/ev-stock-icons.c:
3648         * shell/ev-stock-icons.h:
3649         * shell/ev-window.c:
3650         
3651         Zoom icon artwork. See bug #444795.
3652
3653 2007-06-05  Bastien Nocera  <hadess@hadess.net>
3654
3655         * shell/ev-metadata-manager.c: Remove extraneous function
3656         (Closes: #444386)
3657
3658 2007-06-05  Bastien Nocera  <hadess@hadess.net>
3659
3660         * shell/ev-metadata-manager.c: (ev_metadata_manager_init),
3661         (ev_metadata_manager_shutdown), (ev_metadata_manager_set_last),
3662         (ev_metadata_manager_set), (ev_metadata_manager_save):
3663         Simplify the timeout, no need for modified anymore
3664
3665 2007-06-05  Bastien Nocera  <hadess@hadess.net>
3666
3667         * shell/ev-metadata-manager.c: (ev_metadata_arm_timeout),
3668         (ev_metadata_manager_init), (ev_metadata_manager_shutdown),
3669         (ev_metadata_manager_set_last), (ev_metadata_manager_set),
3670         (ev_metadata_manager_save): Adapted patch from Arjan van de
3671         Ven (arjan@linux.intel.com) to avoid the timeout running all the
3672         time, saves on power (Closes: #443851)
3673
3674 2007-06-02  Carlos Garcia Campos  <carlosgc@gnome.org>
3675
3676         * configure.ac:
3677         * backend/pdf/ev-poppler.cc: (pdf_document_images_get_images),
3678         (pdf_selection_render_selection), (pdf_document_get_page_duration):
3679
3680         Bump requirements to poppler 0.5.9 and drop all ifdefs used.
3681
3682 2007-05-25  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3683
3684         * shell/ev-window.c: (ev_window_add_history):
3685
3686         Check if history is NULL
3687
3688 2007-05-25  Carlos Garcia Campos  <carlosgc@gnome.org>
3689
3690         * libdocument/ev-image.c: (ev_image_finalize):
3691         * libdocument/ev-document-factory.c: (free_uncompressed_uri):
3692         * libdocument/ev-attachment.c: (ev_attachment_finalize):
3693         * libdocument/ev-file-helpers.[ch]: (ev_tmp_filename_unlink),
3694         (ev_tmp_uri_unlink):
3695
3696         Add functions to delete temporary files created by evince in a safe
3697         way.
3698
3699         * shell/ev-window.c: (ev_window_clear_local_uri),
3700         (open_xfer_update_progress_callback),
3701         (save_xfer_update_progress_callback), (ev_window_save_remote),
3702         (file_save_dialog_response_cb), (ev_window_cmd_save_as),
3703         (image_save_dialog_response_cb), (ev_view_popup_cmd_save_image_as),
3704         (attachment_save_dialog_response_cb),
3705         (ev_attachment_popup_cmd_save_attachment_as):
3706
3707         Allow saving a copy of a document, image or attachment to a remote
3708         location. Fixes bug #440754. 
3709
3710 2007-05-22  Carlos Garcia Campos  <carlosgc@gnome.org>
3711
3712         * configure.ac:
3713         * backend/pdf/ev-poppler.cc: (pdf_selection_render_selection):
3714
3715         Fix build with current poppler from cvs head. 
3716
3717 2007-05-21  Eduardo Lima <eduardo.lima@indt.org.br>
3718
3719         * libdocument/ev-file-helpers.c: (ensure_dir_exists):
3720
3721         Using g_mkdir_with_parents() instead of g_mkdir() to really ensure the
3722         directory exists.
3723
3724 2007-05-20  Wouter Bolsterlee  <wbolster@svn.gnome.org>
3725
3726         * shell/ev-sidebar.c: (ev_sidebar_add_page):
3727         * shell/ev-window.c:
3728
3729         Change sidebar ordering. Fixes bug #439939.
3730
3731 2007-05-20  Marc Brockschmidt he+bugzilla.g@marcbrockschmidt.de
3732
3733         * backend/comics/Makefile.am:
3734         
3735         Fixes build with --without-libgnome.
3736
3737 2007-05-19  Carlos Garcia Campos  <carlosgc@gnome.org>
3738         
3739         * shell/ev-view.c: (page_changed_cb), (on_adjustment_value_changed):
3740
3741         Update cursor and tooltip on page change and view scroll. Fixes bug
3742         #439217.
3743
3744 2007-05-14  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3745
3746         * NEWS:
3747         * configure.ac:
3748         
3749         Update for release 0.9.0
3750
3751 2007-05-14  Alaska Subedi <asubedi@gmail.com>
3752
3753         * backend/djvu/djvu-document-private.h:
3754         * backend/djvu/djvu-document.c: (G_DEFINE_TYPE_WITH_CODE),
3755         (djvu_document_finalize),
3756         (djvu_document_file_exporter_format_supported),
3757         (djvu_document_file_exporter_begin),
3758         (djvu_document_file_exporter_do_page),
3759         (djvu_document_file_exporter_end),
3760         (djvu_document_file_exporter_iface_init), (djvu_document_init):
3761         
3762         Implemented printing with djvu. Bug #437998.
3763
3764 2007-05-14  Carlos Garcia Campos  <carlosgc@gnome.org>
3765
3766         * backend/impress/zip.c:
3767         Add missing ulong definition.
3768
3769         * backend/ps/ps-interpreter.c:
3770         Add missing headers.
3771
3772         Fix compilation on FreeBSD. Patch by Roy Marples. Fixes bug #438277.
3773
3774 2007-05-14  Carlos Garcia Campos  <carlosgc@gnome.org>
3775
3776         * backend/pdf/ev-poppler.cc: (pdf_document_dispose):
3777
3778         Add missing call to parent class dispose method. 
3779
3780 2007-05-12  Ross Burton  <ross@openedhand.com>
3781
3782         * shell/main.c:
3783         Sync keybindings manually when building without libgnome
3784         (#437925).
3785
3786 2007-05-12  Ross Burton  <ross@openedhand.com>
3787
3788         * shell/ev-window.c:
3789         Respect the screen when opening help (#437866).
3790
3791 2007-05-11  Carlos Garcia Campos  <carlosgc@gnome.org>
3792
3793         * data/evince-ui.xml:
3794         * shell/ev-application.[ch]: (get_print_settings_from_args),
3795         (ev_application_open_uri_at_dest), (ev_application_open_uri),
3796         (ev_application_open_uri_list):
3797         * shell/ev-window.[ch]: (ev_window_clear_print_settings_file),
3798         (ev_window_open_uri), (ev_window_cmd_file_open_copy_at_dest),
3799         (ev_window_cmd_recent_file_activate), (ev_window_run_preview),
3800         (ev_window_cmd_view_reload), (lookup_printer_from_name),
3801         (ev_window_preview_print_finished), (ev_window_cmd_preview_print),
3802         (ev_window_dispose):
3803         * shell/main.c: (arguments_parse):
3804
3805         Add print button in preview mode. Fixes bug #396475. 
3806
3807 2007-05-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3808
3809         * cut-n-paste/zoom-control/ephy-zoom.h:
3810         
3811         Fixes zoom level factors. See bug #408119 for details.
3812
3813 2007-05-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3814
3815         * backend/comics/comics-document.c: (comics_regex_quote),
3816         (extract_argv):
3817         
3818         Correctly quote symbols. Fixes crash in the bug
3819         #415370.
3820
3821 2007-05-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3822
3823         * shell/ev-navigation-action-widget.c:
3824         (ev_navigation_action_widget_init),
3825         (ev_navigation_action_widget_class_init),
3826         (ev_navigation_action_widget_button_press_event):
3827         
3828         Connect to button-press event on correct widget. Fixes
3829         bug #431988
3830
3831 2007-05-09  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3832
3833         * shell/ev-application.c: (ev_application_open_window),
3834         (ev_application_add_icon_path_for_screen),
3835         (ev_application_open_uri_at_dest):
3836         * shell/ev-navigation-action-widget.c: (popup_menu_under_arrow):
3837         * shell/ev-navigation-action.c: (build_menu):
3838         
3839         Add app-specific icons to our icon theme. Fixes bug
3840         #425508.
3841
3842 2007-05-09  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3843
3844         * shell/ev-history.c: (ev_history_class_init),
3845         (ev_history_add_link):
3846         * shell/ev-history.h:
3847         * shell/ev-navigation-action.c:
3848         (ev_navigation_action_history_changed),
3849         (ev_navigation_action_set_history), (build_menu),
3850         (ev_navigation_action_finalize):
3851         * shell/ev-window.c: (ev_window_setup_action_sensitivity):
3852         
3853         Make navigation action unsensitive instead of showing
3854         menu with unsensitive word. Fixes bug #417392.
3855
3856 2007-05-08  Carlos Garcia Campos  <carlosgc@gnome.org>
3857
3858         * shell/ev-application.[ch]: (ev_application_shutdown),
3859         (ev_application_get_print_settings),
3860         (ev_application_set_print_settings):
3861         * shell/ev-window.c:
3862
3863         Remember print settings. Fixes bug #349102. 
3864
3865 2007-05-08  Christian Persch  <chpe@gnome.org>
3866
3867         * configure.ac:
3868         * properties/ev-properties-view.c:
3869
3870         No need for a configure check; just use the GTK_CHECK_VERSION macro.
3871         Bug #382438.
3872
3873 2007-05-08  Carlos Garcia Campos  <carlosgc@gnome.org>
3874
3875         * configure.ac:
3876         * properties/ev-properties-view.c: (ev_regular_paper_size):
3877
3878         Use gtk+ builtin paper list to identify the document's paper size.
3879         Fixes bug #382438. 
3880
3881 2007-05-04  Carlos Garcia Campos  <carlosgc@gnome.org>
3882
3883         * configure.ac:
3884
3885         Fix build when compiling with thumbnailer and libgnome support. 
3886
3887 2007-05-04  Ross Burton  <ross@openedhand.com>
3888
3889         * configure.ac:
3890         Add --without-libgnome, check for libgnome and libgnomeui
3891         separately, and add them to the symbols as required.
3892
3893         * libdocument/ev-file-helpers.c:
3894         When building without libgnome, use g_get_user_config_dir instead
3895         of gnome_user_dir_get.
3896
3897         * shell/ev-application.c:
3898         When building without libgnome, don't use session management.
3899
3900         * shell/main.c:
3901         When building without libgnome, don't use GnomeProgram or
3902         initialise the authentication manager.
3903
3904         This fixes #328842.
3905
3906 2007-05-04  Ross Burton  <ross@openedhand.com>
3907
3908         * shell/ev-window.c:
3909         Don't use libgnome to open help, instead call Yelp directly.
3910
3911 2007-05-04  Ross Burton  <ross@openedhand.com>
3912
3913         * shell/ev-sidebar-attachments.c:
3914         Don't use libgnome to lookup icons for MIME types, instead copy
3915         code from GTK+ to do it manually.
3916
3917 2007-05-04  Ross Burton  <ross@openedhand.com>
3918
3919         * configure.ac:
3920         Add libxml to the dependencies for SHELL_CORE (#435818).
3921
3922 2007-05-02  Ross Burton  <ross@openedhand.com>
3923
3924         * configure.ac:
3925         * Makefile.am:
3926         Add --disable-thumbnailer (#434825)
3927
3928 2007-05-02  Ross Burton  <ross@openedhand.com>
3929
3930         * shell/ev-window.c:
3931         Add missing includes, fix indentation.
3932
3933         * shell/main.c:
3934         Fix indentation.
3935
3936 2007-04-30  Eduardo Lima <eduardo.lima@indt.org.br>
3937
3938         * shell/ev-window.c (ev_window_cmd_recent_file_activate): Use
3939         ev_application_open_uri_at_dest instead of ev_application_open_uri
3940         preventing new document always being opened in a new window even if there
3941         is an empty window.
3942
3943 2007-04-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
3944
3945         * cut-n-paste/recent-files/egg-recent-view-uimanager.c:
3946         (egg_recent_view_uimanager_finalize):
3947         * properties/ev-properties-view.c: (ev_properties_view_dispose):
3948         * shell/ev-page-action-widget.c: (ev_page_action_widget_finalize):
3949         * shell/ev-pixbuf-cache.c: (ev_pixbuf_cache_finalize),
3950         (ev_pixbuf_cache_dispose):
3951         * shell/ev-properties-fonts.c: (ev_properties_fonts_dispose):
3952         * shell/ev-tooltip.c: (ev_tooltip_dispose):
3953         
3954         Add missing chain to parent class methods. Fixes
3955         bug #433128.
3956
3957 2007-04-22  Brian Pepple  <bpepple@fedoraproject.org>
3958
3959         * data/Makefile.am (update-icon-cache): Updates
3960         gtk-update-icon-cache in uninstall-hook.
3961
3962 2007-04-22  Carlos Garcia Campos  <carlosgc@gnome.org>
3963
3964         * shell/ev-window.c: (ev_window_setup_document),
3965         (ev_window_set_document), (ev_window_load_job_cb):
3966         * shell/ev-view.c: (setup_caches):
3967         * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_set_document):
3968
3969         Start rendering pages before any other jobs. 
3970
3971 2007-04-22  Carlos Garcia Campos  <carlosgc@gnome.org>
3972
3973         * shell/ev-window.c: (ev_window_stop_fullscreen),
3974         (ev_window_stop_presentation):
3975
3976         Update chrome visibility before window unfullscreen. 
3977
3978 2007-04-20  Carlos Garcia Campos  <carlosgc@gnome.org>
3979
3980         * data/Makefile.am:
3981         * data/evince-ui.xml:
3982         * shell/ev-stock-icons.[ch]:
3983         * shell/ev-application.[ch]: (ev_application_shutdown),
3984         (ev_application_init), (ev_application_get_toolbars_model):
3985         * shell/ev-window.c: (update_chrome_visibility),
3986         (fullscreen_toolbar_setup_item_properties),
3987         (ev_window_run_fullscreen), (ev_window_stop_fullscreen),
3988         (ev_window_run_presentation), (ev_window_stop_presentation),
3989         (ev_window_run_preview), (ev_window_screen_changed),
3990         (ev_window_cmd_leave_fullscreen), (ev_window_cmd_start_presentation),
3991         (ev_window_dispose), (ev_window_init):
3992
3993         Make fullscreen toolbar always visible. Do not use egg toolbars for
3994         fullscreen and preview modes since such toolbars are not editables.
3995         Fixes bugs #300278, #338910 and #316188.  
3996
3997 2007-04-20  Iñigo Martínez  <inigomartinez@gmail.com>
3998
3999         * shell/ev-application.c:
4000         * shell/ev-job-queue.c:
4001         * shell/ev-metadata-manager.c:
4002         * shell/ev-stock-icons.c:
4003         * shell/ev-window.c:
4004         * shell/main.c:
4005         
4006         Developers documentation updated.
4007
4008 2007-04-19  Carlos Garcia Campos  <carlosgc@gnome.org>
4009
4010         * shell/ev-window.c: (uri_is_valid), (launch_external_uri):
4011
4012         Check whether uri is valid before launching it. Fixes bug #427664.
4013
4014 2007-04-19  Carlos Garcia Campos  <carlosgc@gnome.org>
4015
4016         * shell/ev-window.c:
4017
4018         Change key accelerator for Open a Copy menu entry which is in conflict
4019         with Close. Fixes bug #427321.
4020
4021 2007-04-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4022
4023         * NEWS:
4024         * configure.ac:
4025         
4026         Update for release 0.8.1
4027
4028 2007-04-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4029
4030         * shell/ev-window.c: (setup_size_from_metadata):
4031         
4032         Do not make window bigger than screen. Fixes bug 
4033         #388985.
4034
4035 2007-04-08  Carlos Garcia Campos  <carlosgc@gnome.org>
4036
4037         * backend/tiff/tiff-document.c: (tiff_document_get_resolution),
4038         (tiff_document_get_page_size), (tiff_document_render_pixbuf):
4039
4040         Use default resolution when it's not provided by document. Fixes bug
4041         #408762.
4042
4043 2007-04-08  Carlos Garcia Campos  <carlosgc@gnome.org>
4044
4045         * configure.ac:
4046         * thumbnailer/Makefile.am:
4047         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
4048         * thumbnailer/evince-thumbnailer.schemas.in:
4049         * thumbnailer/evince-thumbnailer-ps.schemas.in:
4050
4051         Add support for ps, eps and compressed documents thumbnails. Do not
4052         ignore size parameter. 
4053
4054 2007-04-07  Ricardo Markiewicz  <rmarkie@fi.uba.ar>
4055
4056         * backend/dvi/dvi-document.c: (dvi_document_class_init), (hsb2rgb),
4057         (dvi_document_do_color_special):
4058         * backend/dvi/mdvi-lib/special.c: (register_builtin_specials):
4059
4060         Implement font color specials in the DVI backend. Fixes bug #303651.
4061
4062 2007-04-02  Matthias Clasen  <mclasen@redhat.com>
4063
4064         Fixup the previous commit:
4065
4066         * shell/Makefile.am (SOURCES): Add xdg-user-dir-lookup.c
4067         * shell/xdg-user-dir-lookup.c: Make the function non-static
4068         * shell/ev-window.c: Don't include xdg-user-dir-lookup.c
4069
4070 2007-04-02  Matthias Clasen  <mclasen@redhat.com>
4071
4072         * shell/ev-window.c (file_open_dialog_response_cb): Use
4073         the xdg-user-dirs DOCUMENTS folder as default folder when
4074         opening a file chooser.  (#424858)
4075
4076         * shell/xdg-user-dir-lookup.c: Copy-and-pasted file from
4077         xdg-user-dirs.
4078
4079 2007-03-24  Carlos Garcia Campos  <carlosgc@gnome.org>
4080
4081         * shell/ev-window.c: (ev_window_load_job_cb):
4082
4083         Do not setup view from metadata on preview mode. 
4084
4085 2007-03-22  Carlos Garcia Campos  <carlosgc@gnome.org>
4086
4087         * shell/main.c:
4088
4089         Use unlink-tempfile instead of unlink-temp-file. Fixes bug #421274. 
4090
4091 2007-03-19  Carlos Garcia Campos  <carlosgc@gnome.org>
4092
4093         * shell/ev-view.c: (ev_view_primary_get_cb):
4094
4095         Check pointer != NULL before using it. Fixes bug #416841. 
4096
4097 2007-03-12  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4098
4099         * NEWS:
4100         * configure.ac:
4101         
4102         Release 0.8.0
4103
4104 2007-03-10  Carlos Garcia Campos  <carlosgc@gnome.org>
4105
4106         * shell/ev-sidebar-thumbnails.c: (adjustment_changed_cb):
4107
4108         Do not render thumbnails when sidebar thumbnail page is not visible
4109         at startup. Fixes bug #416447. 
4110
4111 2007-03-07  Christian Kirbach  <Christian.Kirbach@googlemail.com>
4112
4113         * data/evince.desktop.in.in:
4114
4115         "Application" is not a valid category in the freedesktop specification.
4116
4117 2007-02-27  Carlos Garcia Campos  <carlosgc@gnome.org>
4118
4119         * libdocument/ev-file-helpers.[ch]: (compression_run),
4120         (ev_file_uncompress), (ev_file_compress):
4121         * shell/ev-window.c: (file_save_dialog_response_cb):
4122
4123         Save document compressed when saving a copy of a compressed document.
4124         Fixes bug #334542.
4125
4126 2007-02-23  Carlos Garcia Campos  <carlosgc@gnome.org>
4127
4128         * shell/ev-view.c: (ev_view_goto_window_key_press_event):
4129
4130         Allow deleting in goto window entry in presentation mode. 
4131
4132 2007-02-20  Kjartan Maraas  <kmaraas@gnome.org>
4133
4134         * Makefile.am: Dist MAINTAINERS.
4135
4136 2007-02-20  Carlos Garcia Campos  <carlosgc@gnome.org>
4137
4138         * shell/ev-window.c: (ev_window_update_actions):
4139
4140         Fix zoom shortcut keys when searching. Fixes bug #409828.
4141
4142 2007-02-18  Carlos Garcia Campos  <carlosgc@gnome.org>
4143
4144         * shell/ev-window.c: (ev_window_setup_document):
4145
4146         Fix crash when loading documents with only one page. 
4147
4148 2007-02-16  Carlos Garcia Campos  <carlosgc@gnome.org>
4149
4150         * backend/dvi/dvi-document.c:
4151         (dvi_document_thumbnails_get_dimensions),
4152         (dvi_document_thumbnails_get_thumbnail):
4153         * backend/impress/impress-document.c:
4154         (impress_document_thumbnails_get_thumbnail),
4155         (impress_document_thumbnails_get_dimensions):
4156         * backend/ps/ps-document.c: (ps_document_thumbnails_get_thumbnail),
4157         (ps_document_thumbnails_get_dimensions):
4158         * backend/djvu/djvu-document.c:
4159         (djvu_document_thumbnails_get_dimensions),
4160         (djvu_document_thumbnails_get_thumbnail):
4161         * backend/tiff/tiff-document.c:
4162         (tiff_document_thumbnails_get_thumbnail),
4163         (tiff_document_thumbnails_get_dimensions):
4164         * backend/pdf/ev-poppler.cc: (make_thumbnail_for_page),
4165         (pdf_document_thumbnails_get_thumbnail),
4166         (pdf_document_thumbnails_get_dimensions):
4167         * backend/comics/comics-document.c:
4168         (comics_document_thumbnails_get_thumbnail),
4169         (comics_document_thumbnails_get_dimensions):
4170         * backend/pixbuf/pixbuf-document.c:
4171         (pixbuf_document_thumbnails_get_thumbnail),
4172         (pixbuf_document_thumbnails_get_dimensions):
4173         * libdocument/ev-document-thumbnails.[ch]:
4174         (ev_document_thumbnails_get_thumbnail),
4175         (ev_document_thumbnails_get_dimensions):
4176         * libdocument/ev-document-misc.[ch]:
4177         (ev_document_misc_get_thumbnail_frame):
4178         * shell/ev-jobs.[ch]: (ev_job_thumbnail_dispose),
4179         (ev_job_thumbnail_new), (ev_job_thumbnail_run):
4180         * shell/ev-sidebar-thumbnails.c: (get_scale_for_page), (add_range),
4181         (ev_sidebar_thumbnails_set_loading_icon), (refresh),
4182         (ev_sidebar_thumbnails_refresh):
4183         * shell/ev-window.c: (ev_window_setup_document):
4184         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
4185
4186         Use an EvRenderContext for rendering thumbnails instead of a suggested
4187         width, so that different sized pages get sized proportionally.
4188
4189 2007-02-15  Carlos Garcia Campos  <carlosgc@gnome.org>
4190
4191         * shell/ev-view.c: (ev_view_button_press_event),
4192         (ev_view_key_press_event):
4193
4194         Fix critical warnings when there is no document loaded. 
4195
4196 2007-02-15  Carlos Garcia Campos  <carlosgc@gnome.org>
4197
4198         * shell/ev-page-action-widget.c:
4199         * shell/ev-navigation-action.c:
4200         * shell/ev-window.c:
4201
4202         Fix compile warnings. 
4203
4204 2007-02-15  Carlos Garcia Campos  <carlosgc@gnome.org>
4205
4206         * backend/djvu/djvu-text.h:
4207         * backend/djvu/djvu-document.c:
4208         * backend/djvu/djvu-text-page.c:
4209         * backend/djvu/djvu-links.c:
4210         * backend/djvu/djvu-text-page.h:
4211         * backend/djvu/djvu-text.c:
4212         
4213         Fix build on Mac. Fixes bug #392186. Patch by
4214         <ephraim_owns@hotmail.com>
4215
4216 2007-02-15  Carlos Garcia Campos  <carlosgc@gnome.org>
4217
4218         * backend/pdf/ev-poppler.cc: (pdf_document_file_exporter_do_page):
4219
4220         Restore cairo context before rendering every page when printing a PDF
4221         document into a PDF file. 
4222
4223 2007-02-13  Carlos Garcia Campos  <carlosgc@gnome.org>
4224
4225         * backend/ps/gstypes.h:
4226         * backend/ps/ps-document.c: (ps_document_get_page_rotation),
4227         (ps_document_get_page_size), (ps_async_renderer_render_pixbuf),
4228         (ps_document_thumbnails_get_thumbnail):
4229
4230         Handle PostScript page orientation. Fixes bug #318568.
4231
4232 2007-02-13  Carlos Garcia Campos  <carlosgc@gnome.org>
4233
4234         * backend/ps/Makefile.am:
4235         * backend/ps/ps-document.[ch]: (ps_document_init), (ps_document_dispose),
4236         (document_load), (ps_document_load), (save_document),
4237         (save_page_list), (ps_document_get_n_pages),
4238         (ps_document_get_page_size), (ps_document_get_info),
4239         (ps_interpreter_page_rendered), (ps_async_renderer_render_pixbuf),
4240         (ps_interpreter_thumbnail_rendered), (ps_document_render_thumbnail),
4241         (ps_document_thumbnails_get_thumbnail),
4242         (ps_document_thumbnails_get_dimensions),
4243         (ps_document_document_thumbnails_iface_init):
4244         * backend/ps/ps.[ch]: (psgetpagebox):
4245         * backend/ps/ps-interpreter.[ch]:
4246
4247         Add support for thumbnails in ps backend. Fixes bug #164755. 
4248
4249 2007-02-13  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4250
4251         * NEWS:
4252         * configure.ac:
4253         
4254         Release 0.7.2
4255
4256 2007-02-12  Carlos Garcia Campos  <carlosgc@gnome.org>
4257
4258         * shell/ev-window.c: (ev_window_set_icon_from_thumbnail),
4259         (ev_window_clear_thumbnail_job), (ev_window_setup_document),
4260         (ev_window_dispose):
4261
4262         Use document thumbnail as window icon. Fixes bug #384442.
4263
4264 2007-02-11  Ed Catmur  <ed@catmur.co.uk>
4265
4266         * configure.ac:
4267
4268         Remove application/x-gzpostscript from EVINCE_MIME_TYPES which was
4269         duplicated adding application/x-bzpostscript instead. 
4270
4271 2007-02-11  Tom Parker  <palfrey@tevp.net>
4272
4273         * backend/ps/ps-document.c: (document_load):
4274
4275         Check return value of psscan before trying
4276         to use it. Fixes bug #372414.
4277
4278 2007-02-11  Carlos Garcia Campos  <carlosgc@gnome.org>
4279
4280         * shell/ev-page-cache.c: (ev_page_cache_finalize):
4281
4282         Fix invalid free in ev-page-cache. Fixes bug #404745.
4283
4284 2007-02-11  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4285
4286         * test/Makefile.am:
4287         * test/test3.py:
4288         
4289         Added reload test case.
4290
4291 2007-02-10  Carlos Garcia Campos  <carlosgc@gnome.org>
4292
4293         * po/POTFILES.in:
4294         * backend/djvu/djvu-document.c: (djvu_document_load):
4295
4296         Check whether there are missing files in indirect multipage djvu
4297         documents. Fixes bug #361683. 
4298
4299 2007-02-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4300
4301         * test/Makefile.am:
4302         * test/test-mime.bin:
4303         * test/test3.py:
4304         
4305         Added test for slow mime type
4306
4307 2007-02-06  Carlos Garcia Campos  <carlosgc@gnome.org>
4308
4309         * shell/ev-page-cache.c: (ev_page_cache_finalize):
4310
4311         Add some checks and call parent_class->finalize. Fixes bug #404745.
4312
4313 2007-02-06  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4314
4315         * shell/ev-navigation-action.c: (connect_proxy):
4316         
4317         Fixes dropdown history menu. Thanks a lot Carlos!
4318
4319 2007-02-05  Carlos Garcia Campos  <carlosgc@gnome.org>
4320
4321         * backend/djvu/djvu-links.c: (str_to_utf8), (build_tree):
4322
4323         Make sure g_markup_escape_text receives a valid utf-8 string. Fixes
4324         bug #373715.
4325
4326 2007-02-05  Carlos Garcia Campos  <carlosgc@gnome.org>
4327
4328         * backend/ps/ps.c: (psscan):
4329
4330         Fix memory leak. 
4331
4332 2007-02-03  Carlos Garcia Campos  <carlosgc@gnome.org>
4333
4334         * configure.ac:
4335         * libdocument/ev-file-helpers.c: 
4336
4337         Add missing libgnome/gnome-init.h header file. Fixes bug #396677.
4338
4339 2007-02-03  Carlos Garcia Campos  <carlosgc@gnome.org>
4340
4341         * configure.ac:
4342         * backend/ps/ps-document.c: (ps_document_init), (ps_document_dispose),
4343         (ps_interpreter_start), (document_load), (save_document),
4344         (save_page_list):
4345         * libdocument/ev-file-helpers.[ch]: (ev_file_uncompress):
4346         * libdocument/ev-document-factory.c:
4347         (ev_document_factory_get_from_mime), (get_document_from_uri),
4348         (free_uncompressed_uri), (ev_document_factory_get_document):
4349         * shell/ev-window.c: (ev_window_cmd_file_open_copy_at_dest):
4350
4351         Support for PDF, PS and EPS compressed files. Fixes bug #307087. 
4352
4353 2007-02-03  Carlos Garcia Campos  <carlosgc@gnome.org>
4354
4355         * libdocument/ev-document.h:
4356
4357         Fix typo in function name. 
4358
4359 2007-02-03  Carlos Garcia Campos  <carlosgc@gnome.org>
4360
4361         * backend/ps/ps-document.c: (ps_interpreter_finished),
4362         (ps_interpreter_start), (ps_interpreter_failed):
4363
4364         Handle ghostscript interpreter crashes. 
4365
4366 2007-02-02  Carlos Garcia Campos  <carlosgc@gnome.org>
4367
4368         * shell/ev-window.c: (ev_window_open_uri),
4369         (window_configure_event_cb):
4370
4371         Setup window size and position before showing it. Fixes bug #401711.
4372
4373 2007-02-02  Carlos Garcia Campos  <carlosgc@gnome.org>
4374
4375         * backend/ps/Makefile.am:
4376         * backend/ps/ps-document.[ch]: (ps_section_free), (ps_document_init),
4377         (ps_document_dispose), (ps_document_class_init),
4378         (ps_interpreter_input), (ps_interpreter_output),
4379         (ps_interpreter_error), (setup_interpreter_env),
4380         (ps_interpreter_start), (ps_interpreter_stop),
4381         (ps_interpreter_failed), (ps_interpreter_is_ready),
4382         (check_filecompressed), (document_load), (ps_document_load),
4383         (ps_document_get_n_pages), (setup_page), (setup_pixmap),
4384         (ps_document_widget_event), (send_ps), (ps_document_next_page),
4385         (render_page):
4386
4387         Rework ps-document. Code cleanups, remove deprecated code. 
4388
4389 2007-02-01  Carlos Garcia Campos  <carlosgc@gnome.org>
4390
4391         * shell/ev-view.c: (ev_view_button_press_event):
4392
4393         Do not start an image drag and drop operation when pointer is on 
4394         text, so that we can select text when the whole background is an
4395         image. 
4396
4397 2007-01-31  Carlos Garcia Campos  <carlosgc@gnome.org>
4398
4399         * shell/ev-window.c: (ev_window_update_actions): 
4400
4401         Disable all zoom related actions during presentation mode. 
4402
4403 2007-01-31  Esteban Sanchez  <esteban@steve-0.com>
4404
4405         * shell/ev-view.c: (ev_view_zoom_in), (ev_view_zoom_out):
4406
4407         Do not zoom in or out on presentation mode. Fixes bug #401305.
4408
4409 2007-01-30  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4410
4411         * shell/ev-navigation-action.c: (connect_proxy),
4412         (create_menu_item), (ev_navigation_action_class_init):
4413         
4414         Correctly show menu and fix crash when navigaton 
4415         action is out of toolbar visible area.
4416
4417 2007-01-30  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4418
4419         * data/Makefile.am:
4420         * data/evince.1:
4421         
4422         Added man file
4423
4424 2007-01-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4425
4426         * help/reference/* :
4427         * configure.ac:
4428         
4429         Added gtk-doc based documentation for Evince.
4430         Still in initial state but I hope it will
4431         grow.
4432         
4433         * configure.ac:
4434         
4435         Lower dbus requirement to 0.70
4436
4437 2007-01-29  Carlos Garcia Campos  <carlosgc@gnome.org>
4438
4439         * shell/ev-window.c: (ev_window_add_history):
4440
4441         Fix memory leak. 
4442
4443 2007-01-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4444
4445         * shell/ev-view.c: (ev_view_page_label_from_dest), (tip_from_link):
4446         * shell/ev-view.h:
4447         * shell/ev-window.c: (ev_window_add_history):
4448         
4449         Correctly handle named destination links
4450
4451 2007-01-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4452
4453         * NOTES:
4454         * backend/djvu/djvu-links.c: (djvu_links_get_links_model):
4455         * backend/pdf/ev-poppler.cc:
4456         * libdocument/ev-document-links.h:
4457         * libdocument/ev-link.c: (ev_link_get_page):
4458         * libdocument/ev-link.h:
4459         * shell/ev-history.c: (ev_history_init), (ev_history_class_init),
4460         (ev_history_add_link):
4461         * shell/ev-history.h:
4462         * shell/ev-navigation-action.c: (activate_menu_item_cb),
4463         (new_history_menu_item), (build_menu):
4464         * shell/ev-page-cache.c: (ev_page_cache_set_current_page_history):
4465         * shell/ev-sidebar-links.c: (create_loading_model),
4466         (print_section_cb), (ev_sidebar_links_construct),
4467         (fill_page_labels), (update_page_callback_foreach),
4468         (update_page_callback), (job_finished_callback):
4469         * shell/ev-view.c: (ev_view_handle_link):
4470         * shell/ev-window.c: (ev_window_find_chapter),
4471         (ev_window_add_history), (view_handle_link_cb),
4472         (history_changed_cb):
4473         
4474         Implements another history variant
4475
4476 2007-01-28  Carlos Garcia Campos  <carlosgc@gnome.org>
4477
4478         * shell/ev-window.c: (view_external_link_cb):
4479         * shell/ev-view.c: (ev_view_button_release_event):
4480
4481         Open links in new window when clicking with middle button. 
4482
4483 2007-01-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4484
4485         * shell/ev-navigation-action.c: (new_history_menu_item):
4486         * shell/ev-page-cache.c: (ev_page_cache_set_current_page_history):
4487         * shell/ev-view.c: (ev_view_handle_link):
4488         * shell/ev-window.c:
4489         
4490         Store link before jump, not the destination. For me it 
4491         seems like more natural history behavior.
4492
4493 2007-01-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4494
4495         * shell/ev-navigation-action.c: (activate_menu_item_cb),
4496         (ev_navigation_action_class_init):
4497         * shell/ev-navigation-action.h:
4498         * shell/ev-page-action.c: (activate_cb):
4499         * shell/ev-page-cache.c: (ev_page_cache_class_init),
4500         (ev_page_cache_set_current_page_history):
4501         * shell/ev-page-cache.h:
4502         * shell/ev-sidebar-thumbnails.c:
4503         (ev_sidebar_tree_selection_changed),
4504         (ev_sidebar_icon_selection_changed), (page_changed_cb):
4505         * shell/ev-view-private.h:
4506         * shell/ev-view.c: (ev_view_handle_link), (ev_view_class_init):
4507         * shell/ev-view.h:
4508         * shell/ev-window.c: (page_changed_cb), (history_changed_cb),
4509         (ev_window_setup_document), (ev_window_load_job_cb):
4510         * shell/ev-window.h:
4511         
4512         History finally works as expected.
4513
4514 2007-01-28  Carlos Garcia Campos  <carlosgc@gnome.org>
4515
4516         * shell/ev-sidebar-links.c: (ev_sidebar_links_map):
4517
4518         Do not update links treeview if it doesn't have a model assigned yet. 
4519
4520 2007-01-28  Carlos Garcia Campos  <carlosgc@gnome.org>
4521
4522         * shell/ev-sidebar-links.c: (ev_sidebar_links_map),
4523         (ev_sidebar_links_class_init), (update_page_callback):
4524
4525         Do not update links treeview when sidepane is not visible. 
4526
4527 2007-01-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4528
4529         * shell/ev-marshal.list:
4530         * shell/ev-page-action.c: (activate_cb),
4531         (ev_page_action_class_init):
4532         * shell/ev-page-action.h:
4533         * shell/ev-page-cache.c: (ev_page_cache_set_page_label):
4534         * shell/ev-window.c:
4535         
4536         Remove activate_link signal, not required.
4537
4538 2007-01-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4539
4540         * shell/ev-navigation-action.c: (build_menu):
4541         
4542         Reorder menu items and build menu with fixed length.
4543
4544 2007-01-27  Ed Catmur  <ed@catmur.co.uk>
4545
4546         * shell/ev-view.c: (get_selected_text):
4547         
4548         Normalize text to fix ligatures problem. See bug
4549         #341947 for details.
4550
4551 2007-01-25  Carlos Garcia Campos  <carlosgc@gnome.org>
4552
4553         * shell/ev-page-cache.c: (ev_page_cache_finalize):
4554
4555         Fix memory leak in ev-page-cache. 
4556
4557 2007-01-25  Tom Parker <palfrey@tevp.net>
4558
4559         * backend/impress/impress-document.c: (impress_document_load),
4560         (impress_document_finalize), (impress_document_init):
4561         * properties/ev-properties-main.c: (ev_properties_get_pages):
4562         
4563         Correctly handle impress document errors. Fixes nautilus
4564         crash in property page #370491.
4565
4566 2007-01-24  Carlos Garcia Campos  <carlosgc@gnome.org>
4567
4568         * shell/ev-job-queue.c: (handle_job), (search_for_jobs_unlocked),
4569         (no_jobs_available_unlocked), (ev_job_queue_init), (find_queue),
4570         (ev_job_queue_remove_job):
4571         * shell/ev-jobs.[ch]: (ev_job_load_init), (ev_job_load_class_init),
4572         (ev_job_load_dispose), (ev_job_load_new), (ev_job_load_set_uri),
4573         (ev_job_load_run):
4574         * shell/ev-window.c: (ev_window_is_empty), (password_dialog_response),
4575         (ev_window_popup_password_dialog), (ev_window_clear_load_job),
4576         (ev_window_load_job_cb), (xfer_update_progress_callback),
4577         (ev_window_open_uri), (ev_window_dispose):
4578         * shell/main.c: (main):
4579
4580         Do file transfer asynchronously in the main thread instead of
4581         synchronously in the load thread. Fixes bugs #399694, #398307 and
4582         #343542.
4583
4584 2007-01-24  Carlos Garcia Campos  <carlosgc@gnome.org>
4585
4586         * shell/ev-jobs.c: (ev_job_xfer_run):
4587
4588         Load the document with the font-config lock held. 
4589
4590 2007-01-23  Carlos Garcia Campos  <carlosgc@gnome.org>
4591
4592         * backend/ps/ps-document.c: (start_interpreter):
4593
4594         Fix memory leaks in ps backend. 
4595
4596 2007-01-21  Carlos Garcia Campos  <carlosgc@gnome.org>
4597
4598         * backend/impress/impress-document.c:
4599         (impress_document_render_pixbuf):
4600
4601         Do not acquire fontconfig lock in impress backend, since it is using
4602         the main loop for rendering. 
4603
4604 2007-01-21  Carlos Garcia Campos  <carlosgc@gnome.org>
4605
4606         * po/POTFILES.in: 
4607
4608         Remove mdvi files that shouldn't be translated. 
4609
4610 2007-01-21  Carlos Garcia Campos  <carlosgc@gnome.org>
4611
4612         * shell/ev-view-private.h:
4613         * shell/ev-view.c: (draw_loading_text), (ev_view_destroy),
4614         (ev_view_set_zoom):
4615
4616         Render "loading..." text into a cairo surface instead of directly into
4617         the window so that fontconfig lock is only needed once and UI is not
4618         blocked. Change text color to #9B9B9B. Fixes bug #397356.
4619
4620 2007-01-19  Carlos Garcia Campos  <carlosgc@gnome.org>
4621
4622         * shell/ev-stock-icons.c: (ev_stock_icons_init):
4623         * shell/ev-application.c: (ev_application_open_uri_at_dest):
4624
4625         Use icon theme associated with the window screen rather than default. 
4626
4627 2007-01-19  Luca Ferretti  <elle.uca@libero.it>
4628
4629         * configure.ac:
4630
4631         Fix a typo in previous commit (24x24/action/ --> 24x24/actions)
4632
4633 2007-01-19  Luca Ferretti  <elle.uca@libero.it>
4634
4635         * data/icons/*/apps/evince.*:
4636
4637         Move Evince icons under new apps directory.
4638
4639         * data/icons/*/actions/*:
4640
4641         Add new custom themeable Evince icons: view-page-continuous, 
4642         view-page-facing, zoom-fit-width, zoom-fit-page. From Andreas
4643         Nilsson, at 16 and 22 pixels (plus 24 for compatibility).
4644
4645         * configure.ac:
4646
4647         Add new directories to AC_CONFIG_FILES.
4648
4649         * shell/ev-stock-icons.c:
4650         * shell/ev-stock-icons.h:
4651
4652         Use new custom themeable icons.
4653
4654 2007-01-18  Carlos Garcia Campos  <carlosgc@gnome.org>
4655
4656         * shell/ev-view.c: (ev_view_expose_event), (draw_one_page):
4657
4658         Do not draw white background page in presentation mode. 
4659
4660 2007-01-16  Jani Monoses <jani.monoses@gmail.com>
4661
4662         * shell/ev-view.c: Remove unused gnome-vfs include.
4663
4664 2007-01-16  Theppitak Karoonboonyanan  <thep@linux.thai.net>
4665
4666         * backend/dvi/mdvi-lib/fontmap.c: (mdvi_load_fontmap):
4667         
4668         Format string is corrected, fixes bug #397129.
4669
4670 2007-01-14  Carlos Garcia Campos  <carlosgc@gnome.org>
4671
4672         * shell/ev-window.c: (ev_window_setup_recent):
4673
4674         Do not include in recent menu inexistent documents. Fixes
4675         bug #339171.
4676
4677 2007-01-14  Carlos Garcia Campos  <carlosgc@gnome.org>
4678
4679         * po/POTFILES.skip: 
4680
4681         Update POTFILES.skip file according to current source tree. 
4682
4683 2007-01-13  Carlos Garcia Campos  <carlosgc@gnome.org>
4684
4685         * shell/ev-window.c: (file_save_dialog_response_cb):
4686
4687         Do Save a copy in atomic way. Fixes bug #328266. 
4688
4689 2007-01-12  Carlos Garcia Campos  <carlosgc@gnome.org>
4690
4691         * shell/ev-sidebar-links.c: (update_page_callback_foreach):
4692
4693         Keep selected cell always visible in index treeview.
4694
4695 2007-01-12  Carlos Garcia Campos  <carlosgc@gnome.org>
4696         
4697         * shell/ev-view.c: (ev_view_size_allocate):
4698
4699         Restore horizontal scrollbar after switching to/from fullscreen
4700         or presentation mode. Fixes bug #331728.
4701
4702 2007-01-11  Carlos Garcia Campos  <carlosgc@gnome.org>
4703
4704         * shell/ev-view-private.h:
4705         * shell/ev-window.c: (ev_window_screen_changed), (ev_window_init):
4706         * shell/ev-view.[ch]: (ev_view_class_init), (ev_view_set_zoom),
4707         (ev_view_set_screen_dpi), (ev_view_can_zoom_in),
4708         (ev_view_can_zoom_out):
4709
4710         Use max and min scale values in the view iby taking dpi into account. 
4711
4712 2007-01-10  Carlos Garcia Campos  <carlosgc@gnome.org>
4713
4714         * configure.ac:
4715         * NEWS:
4716
4717         Release 0.7.1
4718
4719 2007-01-09  Carlos Garcia Campos  <carlosgc@gnome.org>
4720
4721         * shell/ev-window.c: (ev_window_print_send):
4722
4723         Send print job to printer with some settings set to default values,
4724         since we have already exported to a file according to such settings
4725         and they could be taken twice by some printers. 
4726
4727 2007-01-09  Carlos Garcia Campos  <carlosgc@gnome.org>
4728
4729         * shell/ev-jobs.c: (ev_job_xfer_run):
4730         * shell/ev-application.c: (ev_application_open_uri_at_dest):
4731
4732         Show main window and load document with the font-config lock held. 
4733
4734 2007-01-08  Carlos Garcia Campos  <carlosgc@gnome.org>
4735
4736         * configure.ac:
4737         * shell/ev-application.c: (ev_application_register_service):
4738         * shell/main.c: (load_files_remote):
4739
4740         Bump requirements to dbus-glib 0.71 and drop all ifdefs used.
4741
4742 2007-01-08  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4743
4744         * doc/debugging.txt:
4745         
4746         Remove obsolete documentation.
4747
4748 2007-01-08  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
4749
4750         * Makefile.am:
4751         * backend/Makefile.am:
4752         * backend/comics/Makefile.am:
4753         * backend/djvu/Makefile.am:
4754         * backend/dvi/Makefile.am:
4755         * backend/ev-async-renderer.c:
4756         * backend/ev-async-renderer.h:
4757         * backend/ev-attachment.c:
4758         * backend/ev-attachment.h:
4759         * backend/ev-backend-marshal.c:
4760         * backend/ev-document-factory.c:
4761         * backend/ev-document-factory.h:
4762         * backend/ev-document-find.c:
4763         * backend/ev-document-find.h:
4764         * backend/ev-document-fonts.c:
4765         * backend/ev-document-fonts.h:
4766         * backend/ev-document-images.c:
4767         * backend/ev-document-images.h:
4768         * backend/ev-document-info.h:
4769         * backend/ev-document-links.c:
4770         * backend/ev-document-links.h:
4771         * backend/ev-document-misc.c:
4772         * backend/ev-document-misc.h:
4773         * backend/ev-document-security.c:
4774         * backend/ev-document-security.h:
4775         * backend/ev-document-thumbnails.c:
4776         * backend/ev-document-thumbnails.h:
4777         * backend/ev-document-transition.c:
4778         * backend/ev-document-transition.h:
4779         * backend/ev-document.c:
4780         * backend/ev-document.h:
4781         * backend/ev-file-exporter.c:
4782         * backend/ev-file-exporter.h:
4783         * backend/ev-image.c:
4784         * backend/ev-image.h:
4785         * backend/ev-link-action.c:
4786         * backend/ev-link-action.h:
4787         * backend/ev-link-dest.c:
4788         * backend/ev-link-dest.h:
4789         * backend/ev-link.c:
4790         * backend/ev-link.h:
4791         * backend/ev-render-context.c:
4792         * backend/ev-render-context.h:
4793         * backend/ev-selection.c:
4794         * backend/ev-selection.h:
4795         * backend/impress/Makefile.am:
4796         * backend/pdf/Makefile.am:
4797         * backend/pixbuf/Makefile.am:
4798         * backend/ps/Makefile.am:
4799         * backend/ps/ps-document.c: (push_pixbuf), (interpreter_failed),
4800         (ps_document_widget_event), (setup_pixmap), (setup_page), (input),
4801         (start_interpreter), (stop_interpreter), (document_load),
4802         (ps_document_next_page), (render_page):
4803         * backend/tiff/Makefile.am:
4804         * comics/Makefile.am:
4805         * comics/comics-document.c:
4806         * comics/comics-document.h:
4807         * configure.ac:
4808         * cut-n-paste/zoom-control/ephy-zoom-control.c:
4809         * djvu/Makefile.am:
4810         * djvu/djvu-document-private.h:
4811         * djvu/djvu-document.c:
4812         * djvu/djvu-document.h:
4813         * djvu/djvu-links.c:
4814         * djvu/djvu-links.h:
4815         * djvu/djvu-text-page.c:
4816         * djvu/djvu-text-page.h:
4817         * djvu/djvu-text.c:
4818         * djvu/djvu-text.h:
4819         * dvi/Makefile.am:
4820         * dvi/dvi-document.c:
4821         * dvi/dvi-document.h:
4822         * dvi/fonts.c:
4823         * dvi/fonts.h:
4824         * dvi/mdvi-lib/Makefile.am:
4825         * dvi/mdvi-lib/afmparse.c:
4826         * dvi/mdvi-lib/afmparse.h:
4827         * dvi/mdvi-lib/bitmap.c:
4828         * dvi/mdvi-lib/bitmap.h:
4829         * dvi/mdvi-lib/color.c:
4830         * dvi/mdvi-lib/color.h:
4831         * dvi/mdvi-lib/common.c:
4832         * dvi/mdvi-lib/common.h:
4833         * dvi/mdvi-lib/defaults.h:
4834         * dvi/mdvi-lib/dvimisc.c:
4835         * dvi/mdvi-lib/dviopcodes.h:
4836         * dvi/mdvi-lib/dviread.c:
4837         * dvi/mdvi-lib/files.c:
4838         * dvi/mdvi-lib/font.c:
4839         * dvi/mdvi-lib/fontmap.c:
4840         * dvi/mdvi-lib/fontmap.h:
4841         * dvi/mdvi-lib/fontsrch.c:
4842         * dvi/mdvi-lib/gf.c:
4843         * dvi/mdvi-lib/hash.c:
4844         * dvi/mdvi-lib/hash.h:
4845         * dvi/mdvi-lib/list.c:
4846         * dvi/mdvi-lib/mdvi.h:
4847         * dvi/mdvi-lib/pagesel.c:
4848         * dvi/mdvi-lib/paper.c:
4849         * dvi/mdvi-lib/paper.h:
4850         * dvi/mdvi-lib/pk.c:
4851         * dvi/mdvi-lib/private.h:
4852         * dvi/mdvi-lib/setup.c:
4853         * dvi/mdvi-lib/sp-epsf.c:
4854         * dvi/mdvi-lib/special.c:
4855         * dvi/mdvi-lib/sysdeps.h:
4856         * dvi/mdvi-lib/t1.c:
4857         * dvi/mdvi-lib/tfm.c:
4858         * dvi/mdvi-lib/tfmfile.c:
4859         * dvi/mdvi-lib/tt.c:
4860         * dvi/mdvi-lib/util.c:
4861         * dvi/mdvi-lib/vf.c:
4862         * dvi/pixbuf-device.c:
4863         * dvi/pixbuf-device.h:
4864         * impress/Makefile.am:
4865         * impress/common.h:
4866         * impress/document.c:
4867         * impress/f_oasis.c:
4868         * impress/f_oo13.c:
4869         * impress/iksemel.c:
4870         * impress/iksemel.h:
4871         * impress/imposter.h:
4872         * impress/impress-document.c:
4873         * impress/impress-document.h:
4874         * impress/internal.h:
4875         * impress/r_back.c:
4876         * impress/r_draw.c:
4877         * impress/r_geometry.c:
4878         * impress/r_gradient.c:
4879         * impress/r_style.c:
4880         * impress/r_text.c:
4881         * impress/render.c:
4882         * impress/render.h:
4883         * impress/zip.c:
4884         * impress/zip.h:
4885         * lib/Makefile.am:
4886         * lib/ev-debug.c:
4887         * lib/ev-debug.h:
4888         * lib/ev-file-helpers.c:
4889         * lib/ev-file-helpers.h:
4890         * lib/ev-gui.c:
4891         * lib/ev-gui.h:
4892         * lib/ev-tooltip.c:
4893         * lib/ev-tooltip.h:
4894         * libdocument/Makefile.am:
4895         * libdocument/ev-file-helpers.c:
4896         * pdf/Makefile.am:
4897         * pdf/ev-poppler.cc:
4898         * pdf/ev-poppler.h:
4899         * pixbuf/Makefile.am:
4900         * pixbuf/pixbuf-document.c:
4901         * pixbuf/pixbuf-document.h:
4902         * properties/Makefile.am:
4903         * ps/Makefile.am:
4904         * ps/gsdefaults.c:
4905         * ps/gsdefaults.h:
4906         * ps/gsio.c:
4907         * ps/gsio.h:
4908         * ps/gstypes.h:
4909         * ps/ps-document.c:
4910         * ps/ps-document.h:
4911         * ps/ps.c:
4912         * ps/ps.h:
4913         * shell/Makefile.am:
4914         * shell/ev-application.h:
4915         * shell/ev-sidebar-links.c:
4916         * shell/ev-sidebar-links.h:
4917         * shell/ev-utils.c: (ev_gui_sanitise_popup_position),
4918         (ev_gui_menu_position_tree_selection):
4919         * shell/ev-utils.h:
4920         * shell/ev-view.c: (ev_view_finalize):
4921         * shell/ev-window.c:
4922         * shell/main.c: (main):
4923         * thumbnailer/Makefile.am:
4924         * tiff/Makefile.am:
4925         * tiff/tiff-document.c:
4926         * tiff/tiff-document.h:
4927         * tiff/tiff2ps.c:
4928         * tiff/tiff2ps.h:
4929         
4930         Reorganize source tree.
4931
4932 2007-01-08  Carlos Garcia Campos  <carlosgc@gnome.org>
4933
4934         * backend/ev-document-factory.c:
4935
4936         Do not include ev-poppler.h when pdf is disabled. 
4937
4938 2007-01-07  Carlos Garcia Campos  <carlosgc@gnome.org>
4939
4940         * configure.ac:
4941         * data/evince-ui.xml:
4942         * pdf/ev-poppler.cc: (pdf_document_images_get_images),
4943         (pdf_document_document_images_iface_init):
4944         * backend/Makefile.am:
4945         * backend/ev-document-images.[ch]:
4946         * backend/ev-image.[ch]:
4947         * lib/ev-file-helpers.[ch]: (ev_tmp_filename):
4948         * shell/ev-jobs.[ch]: (ev_job_render_new), (ev_job_render_run),
4949         (ev_job_xfer_run):
4950         * shell/ev-pixbuf-cache.[ch]: (dispose_cache_job_info),
4951         (move_one_job), (copy_job_to_job_info), (add_job_if_needed),
4952         (ev_pixbuf_cache_get_image_mapping):
4953         * shell/ev-window.c: (view_menu_link_popup), (view_menu_image_popup),
4954         (view_menu_popup_cb), (ev_window_dispose),
4955         (image_save_dialog_response_cb), (ev_view_popup_cmd_save_image_as),
4956         (ev_view_popup_cmd_copy_image):
4957         * shell/ev-view-private.h:
4958         * shell/ev-view.c: (ev_view_get_image_at_location),
4959         (ev_view_do_popup_menu), (ev_view_popup_menu),
4960         (ev_view_button_press_event), (ev_view_drag_data_get),
4961         (ev_view_drag_motion), (ev_view_drag_data_received),
4962         (ev_view_motion_notify_event), (ev_view_button_release_event),
4963         (ev_view_finalize), (ev_view_class_init):
4964
4965         Add image handling support. Fixes bugs #310008 and #325047. Images
4966         selection is not supported yet. 
4967
4968 2007-01-07  Carlos Garcia Campos  <carlosgc@gnome.org>
4969
4970         * shell/ev-window.c: (drag_data_received_cb), (ev_window_init):
4971         * shell/ev-view.c: (ev_view_drag_data_received), (ev_view_class_init),
4972         (ev_view_init):
4973
4974         Move view drag and drop stuff to ev-view.
4975
4976 2007-01-05  Carlos Garcia Campos  <carlosgc@gnome.org>
4977
4978         * shell/ev-pixbuf-cache.c: (clear_job_selection):
4979         * shell/ev-view.c: (clear_selection): 
4980
4981         Clear selection also in pixbuf cache.
4982
4983 2007-01-02  Luca Ferretti <elle.uca@libero.it>
4984
4985         * data/evince.desktop.in.in:
4986         
4987         Change icon name in desktop file. See bug #390734
4988         for details.
4989
4990 2006-12-28  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
4991
4992         * thumbnailer/Makefile.am:
4993
4994         Use top_builddir instead top_srcdir for generated schema
4995         file installation. Fixes bug #390161.
4996
4997 2006-12-27  Carlos Garcia Campos  <carlosgc@gnome.org>
4998
4999         * configure.ac:
5000         * backend/Makefile.am:
5001         * backend/ev-document-transition.[ch]:
5002         * pdf/ev-poppler.cc: (pdf_document_get_page_duration),
5003         (pdf_document_page_transition_iface_init):
5004         * shell/ev-view-private.h:
5005         * shell/ev-view.c: (ev_view_destroy), (page_changed_cb),
5006         (ev_view_set_presentation), (transition_next_page),
5007         (ev_view_presentation_transition_stop),
5008         (ev_view_presentation_transition_start), (ev_view_next_page):
5009
5010         Add page transition support in presentation mode. At the moment only
5011         page duration is supported, but not transition effects. Fixes bug
5012         #309815.
5013
5014 2006-12-25  Carlos Garcia Campos  <carlosgc@gnome.org>
5015
5016         * backend/ev-document-links.c: (ev_document_links_find_link_dest):
5017
5018         Run find_link_dest with document lock held, since it's called by links
5019         thread and main thread at the same time. 
5020
5021 2006-12-25  Carlos Garcia Campos  <carlosgc@gnome.org>
5022
5023         * shell/ev-view.c: (goto_dest):
5024
5025         Update page-cache when page is changed by the view, so that
5026         page-changed signal is emitted. 
5027
5028 2006-12-25  Carlos Garcia Campos  <carlosgc@gnome.org>
5029
5030         * test/test1.py:
5031         * test/test2.py:
5032
5033         Use C locale in tests. 
5034
5035 2006-12-24  Carlos Garcia Campos  <carlosgc@gnome.org>
5036
5037         * shell/ev-window.c: (ev_window_run_presentation):
5038         * shell/ev-view-private.h:
5039         * shell/ev-view.c: (ev_view_set_presentation):
5040
5041         Restore zoom settings when back from presentation mode. 
5042
5043 2006-12-24  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5044
5045         * shell/ev-window.c: (ev_window_run_presentation):
5046
5047         Always use "best fit" zoom in presentation mode.
5048         Fixes bug #389195.
5049
5050 2006-12-24  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5051
5052         * shell/ev-view.c: (ev_view_goto_window_create):
5053
5054         Show "Jump to page" label in the page jumping popup in
5055         presentation mode instead of just a GtkEntry.
5056
5057 2006-12-23  Carlos Garcia Campos  <carlosgc@gnome.org>
5058
5059         * shell/ev-window.c: (launch_external_uri):
5060
5061         Do not escape uri before calling gnome_vfs_url_show(). Fixes bug
5062         #378085.
5063
5064 2006-12-22  Elijah Newren  <newren gmail com>
5065
5066         * configure.ac: explicitly check for libxml2.  Fixes #388795
5067
5068 2006-12-22  Carlos Garcia Campos  <carlosgc@gnome.org>
5069
5070         * shell/ev-view-private.h:
5071         * shell/ev-view.c: (send_focus_change), (ev_view_goto_window_hide),
5072         (ev_view_goto_window_delete_event), (key_is_numeric),
5073         (ev_view_goto_window_key_press_event),
5074         (ev_view_goto_window_button_press_event),
5075         (ev_view_goto_entry_activate), (ev_view_goto_window_create),
5076         (ev_view_goto_entry_grab_focus), (ev_view_goto_window_send_key_event),
5077         (ev_view_key_press_event), (ev_view_focus_out), (ev_view_destroy):
5078
5079         Allow jumping to another page by typing a page number in presentation
5080         mode. It uses a popup window with an entry. Fixes bug #353625.
5081
5082 2006-12-21  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5083
5084         * configure.ac:
5085         * properties/ev-properties-view.c: (ev_get_default_user_units),
5086         (ev_regular_paper_size):
5087         
5088         Check for NL_MEASUREMENT. Fixes bug #376469. Thanks
5089         to Damien Carbery <damien.carbery@sun.com> and
5090         Yevgen Muntyan <muntyan@tamu.edu>.
5091
5092 2006-12-20  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5093
5094         * shell/ev-window.c: (setup_document_from_metadata):
5095
5096         Make sure Evince doesn't restore the view on the last
5097         page when a document is reopened. Fixes bug #383381.
5098
5099 2006-12-18  Jens Granseuer  <jensgr@gmx.net>
5100
5101         * shell/ev-view.c: (draw_loading_text):
5102
5103         Fix compilation with older compilers like gcc 2. Fixes bug #387237.
5104
5105 2006-12-18  Carlos Garcia Campos  <carlosgc@gnome.org>
5106
5107         * configure.ac:
5108         * NEWS:
5109
5110         Release 0.7.0
5111
5112 2006-12-18  Carlos Garcia Campos  <carlosgc@gnome.org>
5113
5114         * configure.ac:
5115         * pdf/ev-poppler.cc: (pdf_print_context_free),
5116         (pdf_document_file_exporter_begin),
5117         (pdf_document_file_exporter_do_page):
5118
5119         Make cairo-pdf depedency optional. 
5120
5121 2006-12-18  Carlos Garcia Campos  <carlosgc@gnome.org>
5122
5123         * shell/ev-print-job.c: (idle_print_handler), (ev_print_job_print):
5124
5125         Use ev_file_exporter instead of ev_ps_exporter in ev-print-job.
5126
5127 2006-12-18  Carlos Garcia Campos  <carlosgc@gnome.org>
5128
5129         * backend/ev-document.[ch]: (ev_document_get_fc_mutex),
5130         (ev_document_fc_mutex_lock), (ev_document_fc_mutex_unlock):
5131         * pdf/ev-poppler.cc: (make_thumbnail_for_size):
5132         * shell/ev-jobs.c: (ev_job_render_run), (ev_job_fonts_run):
5133         * shell/ev-view.c: (draw_loading_text):
5134         * shell/ev-window.c: (ev_window_cmd_file_properties):
5135
5136         Use an specific lock for FontConfig. Hopefully it fixes some crashes
5137         related to using FontConfig from different threads.
5138         
5139 2006-12-18  Carlos Garcia Campos  <carlosgc@gnome.org>
5140
5141         * shell/ev-view.c: (draw_loading_text):
5142
5143         Acquire lock document when drawing "Loading..." text so that only one
5144         thread will use FontConfig at the same time. Fixes bug #374750.
5145
5146 2006-12-15  Carlos Garcia Campos  <carlosgc@gnome.org>
5147
5148         * shell/ev-page-action.[ch]: (activate_cb):
5149         * shell/ev-window.c: (activate_label_cb):
5150
5151         Check if text inserted in page entry is a valid page number when it
5152         doesn't match to any document page label. Fixes bug #383165.
5153
5154 2006-12-14  Julien Rebetez,  <julienr@cvs.gnome.org>
5155         * shell/ev-window.c:
5156
5157         GTK_STOCK_SELECT_ALL is used in menu definition, but isn't
5158         available with GTK < 2.10. Added an ifdef to avoid compilation
5159         error.
5160
5161 2006-12-14  Carlos Garcia Campos  <carlosgc@gnome.org>
5162
5163         * configure.ac:
5164         * ps/ps-document.c: (start_interpreter), (ps_document_next_page):
5165
5166         Fix ps backend in multihead systems.
5167
5168 2006-12-14  Carlos Garcia Campos  <carlosgc@gnome.org>
5169
5170         * ps/ps-document.c: (setup_page), (ps_document_get_page_size):
5171         * shell/ev-window.c: (ev_window_get_screen_dpi),
5172         (ev_window_update_actions), (setup_view_from_metadata),
5173         (ev_window_zoom_changed_cb), (zoom_control_changed_cb):
5174
5175         Take screen DPI into account when zooming. Fixes bug #318285.
5176
5177 2006-12-14  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5178
5179         * data/Makefile.am:
5180
5181         Cleaned up/slightly refactored Makefile.am. Added GConf
5182         schemas uninstallation as well.
5183
5184 2006-12-13  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5185
5186         * Makefile.am:
5187         * test/Makefile.am:
5188
5189         Fight with autotools to fix make check. Make distcheck
5190         works fine as well now!
5191
5192 2006-12-13  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5193
5194         * shell/ev-view.c: (draw_end_presentation_page):
5195
5196         Corrected "end of presentation" string.
5197
5198 2006-12-13  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5199
5200         * shell/ev-view.c: (ev_view_key_press_event):
5201
5202         Correctly propagate key press event so that up/down keys
5203         work as expected (correct behaviour was broken by
5204         black/white screen key bindings for presentations).
5205
5206 2006-12-13  Carlos Garcia Campos  <carlosgc@gnome.org>
5207
5208         * pdf/ev-poppler.cc: (pdf_document_find_get_n_results),
5209         (pdf_document_find_get_result), (pdf_document_find_page_has_results),
5210         (pdf_document_find_get_progress), (pdf_selection_render_selection),
5211         (pdf_selection_get_selection_region),
5212         (pdf_selection_get_selection_map):
5213
5214         Add "static" to some private functions. 
5215
5216 2006-12-13  P. Henrique Silva  <ph.silva@gmail.com>
5217
5218         * lib/ev-tooltip.h:
5219         * properties/ev-properties-view.h:
5220         * shell/ev-jobs.h:
5221         * shell/ev-properties-dialog.h:
5222         * shell/ev-properties-fonts.h:
5223         * shell/ev-sidebar-links.h:
5224         * shell/ev-sidebar-thumbnails.h:
5225         * shell/ev-sidebar.h:
5226         * shell/ev-window.h:
5227         
5228         Fixes CHACK type in class casts. See bug #385343
5229         for details.
5230
5231 2006-12-10  Carlos Garcia Campos  <carlosgc@gnome.org>
5232
5233         * shell/ev-view-private.h:
5234         * shell/ev-view.c: (draw_end_presentation_page),
5235         (ev_view_expose_event), (ev_view_key_press_event),
5236         (ev_view_class_init), (ev_view_init):
5237
5238         Blank screen in presentation mode when pressing 'b' (filling with
5239         black) or 'w' (filling with white) keys. Fixes bug #358132.
5240
5241 2006-12-09  Gabriel Felipe Cornejo  <gnomeusr@gmail.com>
5242
5243         * data/evince-toolbar.xml:
5244         * shell/ev-window.c:
5245         
5246         Use stock icon for Select All action. Fixes
5247         bug #382652.
5248
5249 2006-12-09  Radoslav Dorcik  <dixiecko@gmail.com>
5250
5251         * shell/ev-view.c: (get_doc_point_from_offset),
5252         (ev_view_get_link_at_location), (ev_view_motion_notify_event):
5253
5254         Add links support in rotated documents. Fixes bug #343733.
5255
5256 2006-12-09  Carlos Garcia Campos  <carlosgc@gnome.org>
5257
5258         * shell/ev-view-private.h:
5259         * shell/ev-view.c: (draw_end_presentation_page),
5260         (ev_view_expose_event), (ev_view_init), (ev_view_set_presentation):
5261
5262         Show a blank page after the last page in presentation mode with a
5263         message indicating that presentation has finished and how to exit. 
5264
5265 2006-12-09  Carlos Garcia Campos  <carlosgc@gnome.org>
5266
5267         * shell/ev-window.c: (fullscreen_timeout_cb):
5268
5269         Hide cursor after a while in presentation mode. 
5270
5271 2006-12-04  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5272
5273         * backend/ev-document-info.h:
5274         * data/evince-properties.glade:
5275         * pdf/ev-poppler.cc:
5276         * properties/ev-properties-view.c: (ev_regular_paper_size),
5277         (ev_properties_view_set_info):
5278         * ps/ps-document.c: (ps_document_get_info):
5279
5280         Adds a paper size field to the properties dialog. Fixes
5281         bug #307315. Patch by Kasper Svendsen (with some i18n
5282         changes done by me).
5283
5284 2006-12-03  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5285
5286         * cut-n-paste/totem-screensaver/totem-scrsaver.c:
5287         (screensaver_init_dbus), (totem_scrsaver_new),
5288         (totem_scrsaver_init):
5289         * cut-n-paste/totem-screensaver/totem-scrsaver.h:
5290         * shell/ev-application.c: (ev_application_register_service),
5291         (ev_application_screensaver_enable),
5292         (ev_application_screensaver_disable):
5293         * shell/ev-application.h:
5294         * shell/ev-window.c: (ev_window_run_presentation),
5295         (ev_window_stop_presentation), (build_comments_string),
5296         (ev_window_init):
5297         
5298         Move screensaver handling to application. No more
5299         message on startup.
5300
5301 2006-12-03  Carlos Garcia Campos  <carlosgc@gnome.org>
5302
5303         * configure.ac:
5304         * backend/Makefile.am:
5305         * backend/ev-file-exporter.[ch]:
5306         * pdf/ev-poppler.cc: (pdf_document_file_exporter_*):
5307         * ps/ps-document.c: (ps_document_file_exporter_*):
5308         * tiff/tiff-document.c: (tiff_document_document_file_exporter_*):
5309         * shell/ev-jobs.[ch]: (ev_job_print_new), (ev_job_print_run):
5310         * shell/ev-window.c: (ev_window_setup_action_sensitivity),
5311         (ev_window_print_dialog_response_cb), (ev_window_print_range):
5312
5313         Allow printing to PDF when suppoted by the backend.
5314         
5315 2006-12-03  Carlos Garcia Campos  <carlosgc@gnome.org>
5316
5317         * shell/ev-window.c: (build_comments_string):
5318
5319         Use always "Document Viewer" in about dialog. 
5320
5321 2006-12-03  Carlos Garcia Campos  <carlosgc@gnome.org>
5322
5323         * djvu/djvu-document.c: (djvu_document_get_page_size):
5324
5325         Display a warning message when get_pageinfo fails. 
5326
5327 2006-11-30  Yevgen Muntyan  <muntyan@tamu.edu>
5328
5329         * Makefile.am:
5330         * backend/Makefile.am:
5331         * backend/ev-document-factory.c: (ev_document_factory_add_filters):
5332         * configure.ac:
5333         * shell/ev-window.c: (build_comments_string):
5334         
5335         Make pdf compilation optional. See bug #38007.
5336
5337 2006-11-30  Carlos Garcia Campos  <carlosgc@gnome.org>
5338
5339         * ps/ps.c: (get_next_text):
5340
5341         Fix CVE-2006-5864.
5342
5343 2006-11-22  Carlos Garcia Campos  <carlosgc@gnome.org>
5344
5345         * shell/ev-history.c: (ev_history_finalize), (ev_history_class_init):
5346         * shell/ev-navigation-action.c: (connect_proxy),
5347         (ev_navigation_action_finalize), (ev_navigation_action_class_init):
5348         
5349         Do not call g_type_class_peek_parent twice.
5350
5351 2006-11-22  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5352
5353         * configure.ac:
5354         * data/icons/24x24/.cvsignore:
5355         * data/icons/24x24/Makefile.am:
5356         * data/icons/24x24/evince.png:
5357         * data/icons/Makefile.am:
5358         
5359         Add 24x24 icon. Thanks to 
5360         Michael Monreal <infernux@web.de>.
5361
5362 2006-11-22  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5363
5364         * configure.ac: Fix typo in configure.ac. Thanks
5365         to dmacks@netspace.org for notification.
5366
5367 2006-11-22  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5368
5369         * cut-n-paste/totem-screensaver/totem-scrsaver.c:
5370         
5371         Drop dbus include, fixes compilation with older dbus.
5372
5373 2006-11-22  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5374
5375         * configure.ac:
5376         * cut-n-paste/Makefile.am:
5377         * cut-n-paste/totem-screensaver/.cvsignore
5378         * cut-n-paste/totem-screensaver/Makefile.am:
5379         * cut-n-paste/totem-screensaver/README:
5380         * cut-n-paste/totem-screensaver/totem-scrsaver.c:
5381         * cut-n-paste/totem-screensaver/totem-scrsaver.h:
5382         * shell/Makefile.am:
5383         * shell/ev-window.c: (ev_window_run_presentation),
5384         (ev_window_stop_presentation), (ev_window_cmd_help_about),
5385         (ev_window_init):
5386
5387         Implemented screensaver enabling/disabling for
5388         presentation mode (not fullscreen mode). Code stolen
5389         from Totem (with some minor tweaks). Fixes bug #338889.
5390
5391 2006-11-19  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5392
5393         * configure.ac:
5394
5395         Bump gnome-icon-theme requirements. We use the rotation
5396         icons that appeared recently.
5397
5398 2006-11-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5399
5400         * shell/ev-history.c: (ev_history_add_page):
5401         * shell/ev-history.h:
5402         * shell/ev-window.c: (page_changed_cb):
5403         
5404         Use page labels instead of numbers.
5405
5406 2006-11-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5407
5408         * data/evince-toolbar.xml:
5409         * po/POTFILES.in:
5410         * shell/Makefile.am:
5411         * shell/ev-navigation-action-widget.c:
5412         (ev_navigation_action_widget_init),
5413         (ev_navigation_action_widget_class_init), (menu_deactivate_cb),
5414         (menu_detacher), (ev_navigation_action_widget_set_menu),
5415         (menu_position_func), (popup_menu_under_arrow),
5416         (ev_navigation_action_widget_toggled),
5417         (ev_navigation_action_widget_button_press_event):
5418         * shell/ev-navigation-action-widget.h:
5419         * shell/ev-navigation-action.c: (ev_navigation_action_set_history),
5420         (ev_navigation_action_set_window), (activate_menu_item_cb),
5421         (new_history_menu_item), (new_empty_history_menu_item),
5422         (build_menu), (menu_activated_cb), (connect_proxy),
5423         (create_tool_item), (ev_navigation_action_init),
5424         (ev_navigation_action_finalize), (ev_navigation_action_class_init):
5425         * shell/ev-navigation-action.h:
5426         * shell/ev-page-action-widget.c: (ev_page_action_widget_init),
5427         (ev_page_action_widget_set_page_cache),
5428         (ev_page_action_widget_finalize),
5429         (ev_page_action_widget_class_init), (match_selected_cb),
5430         (display_completion_text), (match_completion), (build_new_tree_cb),
5431         (get_filter_model_from_model),
5432         (ev_page_action_widget_update_model):
5433         * shell/ev-page-action-widget.h:
5434         * shell/ev-page-action.c: (activate_link_cb), (update_model),
5435         (connect_proxy):
5436         * shell/ev-page-action.h:
5437         * shell/ev-stock-icons.c:
5438         * shell/ev-stock-icons.h:
5439         * shell/ev-window.c: (ev_window_setup_action_sensitivity),
5440         (page_changed_cb), (ev_window_setup_document), (ev_window_dispose),
5441         (register_custom_actions):
5442         * shell/main.c:
5443         
5444         Preliminary history implementation
5445
5446 2006-11-16  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5447
5448         * dvi/dvi-document.c: (dvi_document_load), (dvi_document_finalize),
5449         (dvi_document_class_init), (dvi_document_init_params):
5450         * dvi/mdvi-lib/font.c: (font_reference):
5451         
5452         Add reference to subfont. Fixes bug #374277.
5453
5454 2006-11-16  Carlos Garcia Campos  <carlosgc@gnome.org>
5455
5456         * shell/ev-window.c: (ev_window_create_tmp_symlink),
5457         (ev_window_cmd_file_open_copy_at_dest):
5458
5459         Fix a race condition when creating symlink. Increase the counter
5460         avoiding an infinite loop. Really fixes bug #357472. (Based on patch by
5461         Mathias Hasselmann).
5462
5463 2006-11-15  Carlos Garcia Campos  <carlosgc@gnome.org>
5464
5465         * backend/Makefile.am:
5466         * backend/ev-attachment.c: (ev_attachment_open):
5467         * lib/ev-file-helpers.[ch]: (ensure_dir_exists), (ev_dot_dir),
5468         (ev_tmp_dir), (ev_tmp_filename):
5469         * shell/ev-sidebar-attachments.c:
5470         (ev_sidebar_attachments_drag_data_get):
5471         * shell/ev-window.c: (ev_window_clear_temp_file):
5472
5473         Use always ev_tmp_dir instead of g_get_tmp_dir. Fix a race condition
5474         in ensure_dir_exists. Abort without crashing when we can't create
5475         user's directory.
5476
5477 2006-11-14  Carlos Garcia Campos  <carlosgc@gnome.org>
5478
5479         * data/evince-ui.xml:
5480         * shell/ev-window.c: (ev_window_setup_action_sensitivity),
5481         (ev_window_xfer_job_cb), (ev_window_get_copy_tmp_name),
5482         (ev_window_cmd_file_open_copy_at_dest),
5483         (ev_window_cmd_file_open_copy), (view_menu_popup_cb),
5484         (ev_view_popup_cmd_open_link_new_window):
5485
5486         Allow opening a copy of the current document in a new window. Fixes bug
5487         #357472
5488
5489 2006-11-11  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5490
5491         * data/evince-toolbar.xml:
5492         
5493         Add rotate right and rotate left to available items for toolbar.
5494         
5495         * data/evince-ui.xml:
5496         * shell/ev-window.c: (ev_window_init):
5497         
5498         Customize toolbar with right click. Fixes bug #372451.
5499
5500 2006-11-11  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>
5501
5502         * shell/ev-window.c: 
5503         
5504         Use "object-rotate-{left,right}" stock icons. Fixes 
5505         bug #373863.
5506
5507 2006-11-10  Carlos Garcia Campos  <carlosgc@gnome.org>
5508
5509         * shell/ev-application.[ch]: (get_unlink_temp_file_from_args),
5510         (ev_application_open_uri_at_dest), (ev_application_open_uri):
5511         * shell/ev-window.[ch]: (ev_window_clear_temp_file),
5512         (ev_window_open_uri):
5513         * shell/main.c: (arguments_parse):
5514
5515         Remove temp file created when evince is used by GTK+ in
5516         preview mode. Fixes bug #365282. 
5517
5518 2006-11-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5519
5520         * shell/ev-window.c: (ev_window_sidebar_visibility_changed_cb):
5521         
5522         Fixes bug #372474 - Side pane disabled when entering 
5523         and leaving fullscreen mode.
5524
5525 2006-11-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5526
5527         * cut-n-paste/toolbar-editor/egg-toolbar-editor.c: (setup_editor):
5528         * data/Makefile.am:
5529         * data/evince-preview-toolbar.xml:
5530         * data/evince-toolbar.xml:
5531         * shell/ev-application.c: (ev_application_shutdown),
5532         (ev_application_init), (ev_application_get_toolbars_model):
5533         * shell/ev-application.h:
5534         * shell/ev-window.c: (update_chrome_visibility),
5535         (ev_window_create_fullscreen_popup), (ev_window_run_preview),
5536         (ev_window_cmd_edit_toolbar), (ev_window_init):
5537         
5538         Fixes bug #364364 - toolbar editor shows zoom actions again.
5539
5540 2006-11-09  Carlos Garcia Campos  <carlosgc@gnome.org>
5541
5542         * shell/ev-window.c: (ev_window_print_dialog_response_cb):
5543
5544         Do not take margins into consideration for paper size when printing.
5545         Really fixes bug #350491.
5546
5547 2006-11-08  Carlos Garcia Campos  <carlosgc@gnome.org>
5548
5549         * data/evince-ui.xml:
5550         * shell/ev-window.c: (ev_window_print_page_setup_done_cb),
5551         (ev_window_cmd_file_print_setup),
5552         (ev_window_print_dialog_response_cb),
5553         (ev_window_setup_action_sensitivity):
5554
5555         Add page setup settings for printing. Fixes bugs #363860 and #350491.
5556
5557 2006-11-08  Carlos Garcia Campos  <carlosgc@gnome.org>
5558
5559         * shell/ev-window.c: (ev_window_print_range):
5560
5561         Revert my previuos commit, since printing to PDF is not supported by
5562         evince yet. 
5563
5564 2006-11-08  Carlos Garcia Campos  <carlosgc@gnome.org>
5565
5566         * shell/ev-window.c: (ev_window_print_range):
5567
5568         Enable print to a PDF. Fixes bug #332121.
5569
5570 2006-10-31  Carlos Garcia Campos  <carlosgc@gnome.org>
5571
5572         * shell/ev-application-service.xml:
5573         * shell/ev-application.[ch]: (ev_application_open_window),
5574         (ev_application_get_empty_window), (ev_application_open_uri_at_dest),
5575         (ev_application_open_uri), (ev_application_open_uri_list):
5576         * shell/ev-window.c: (file_open_dialog_response_cb),
5577         (ev_window_cmd_recent_file_activate), (ev_window_setup_recent),
5578         (drag_data_received_cb), (open_remote_link):
5579         * shell/main.c: (arguments_parse), (load_files), (load_files_remote):
5580
5581         Add support for multiscreen systems. Fixes bug #316206.
5582
5583 2006-10-30  Carlos Garcia Campos  <carlosgc@gnome.org>
5584
5585         * shell/ev-jobs.[ch]: (ev_job_print_new),
5586         (ev_print_job_print_page_in_range), (ev_print_job_print_page_in_set),
5587         (ev_job_print_do_page):
5588         * shell/ev-window.[ch]: (ev_window_print_dialog_response_cb):
5589
5590         Allow printing only odd/even pages. Fixes bug #367289.
5591
5592 2006-10-29  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5593
5594         * test/test1.py:
5595         * test/test2.py:
5596
5597         Re-add locale settings to test files.
5598
5599 2006-10-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5600
5601         * data/evince-ui.xml:
5602         * shell/ev-window.c: (set_action_properties):
5603         
5604         Removed garbage from code and ui.
5605
5606 2006-10-29  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5607
5608         * shell/ev-window.c: (ev_window_cmd_help_about):
5609
5610         Shamelessly add my name to the list of contributors.
5611
5612 2006-10-29  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5613
5614         * test/test1.py:
5615         * test/test2.py:
5616
5617         Cleaned up the dogtail scripts.
5618
5619 2006-10-27  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5620
5621         * shell/ev-view.c: (draw_loading_text): Don't render
5622         "loading..." text in presentation mode. Temporary
5623         workaround for bug #320352.
5624
5625 2006-10-24  Carlos Garcia Campos  <carlosgc@gnome.org>
5626
5627         * shell/ev-jobs.[ch]: (ev_job_print_new), (ev_job_print_run):
5628         * shell/ev-window.c: (ev_window_print_dialog_response_cb):
5629
5630         Use print settings scale, copies, collate and reverse which were
5631         ignored. Fixes bug #359032.
5632
5633 2006-10-24  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5634
5635         * configure.ac:
5636         * data/evince-password.glade:
5637         * test/Makefile.am:
5638         * test/test-encrypt.pdf:
5639         * test/test-links.pdf:
5640         * test/test1.py:
5641         * test/test2.py:
5642
5643         Add automated UI tests for evince with dogtail. See
5644         bug #300948.    
5645
5646 2006-10-22  Carlos Garcia Campos  <carlosgc@gnome.org>
5647
5648         * shell/ev-window.c: (fullscreen_timeout_cb), (ev_window_init):
5649
5650         Hide fullscreen toolbar when switching to another desktop workspace.
5651         Fixes bug #338871
5652
5653 2006-10-20  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5654
5655         * shell/ev-window-title.c: 
5656         
5657         Test for .dvi in title of pdf documents.
5658
5659 2006-10-19  Wouter Bolsterlee  <wbolster@cvs.gnome.org>
5660
5661         * shell/ev-view.c: (ev_view_scroll):
5662
5663         Page Up/Down should do page jumps in "Best fit" mode.
5664         If a user has explicitly chosen to view exactly one page
5665         at a time, scrolling just a part of the page when
5666         pressing Page Up/Down is not right. Fixes bug #323107.
5667
5668 2006-10-09  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5669
5670         * NEWS:
5671         * configure.ac:
5672         
5673         Update for 0.6.1
5674
5675 2006-10-09  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5676
5677         * shell/ev-properties-fonts.c: (ev_properties_fonts_dispose),
5678         (job_fonts_finished_cb), (ev_properties_fonts_set_document):
5679         
5680         Correctly disconnect from job signals on destroy.
5681
5682 2006-10-08  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5683
5684         * shell/ev-view-private.h:
5685         * shell/ev-view.c: (view_set_adjustment_values),
5686         (view_update_range_and_current_page),
5687         (ensure_rectangle_is_visible), (ev_view_size_allocate):
5688         
5689         Fixes bug #343199, current page now follows find page.
5690
5691 2006-10-08  Wouter Bolsterlee  <wbolster@gnome.org>
5692
5693         * backend/ev-document-factory.c:
5694         * configure.ac:
5695         Assigned OpenDocument presenation MIME type to the
5696         Impress backend. Added some missing (but harmless)
5697         #ifdefs in the document factory as well to make things
5698         consistent again. Fixes bug #360658.
5699
5700 2006-10-08  Christian Persch  <chpe@cvs.gnome.org>
5701
5702         * backend/ev-async-renderer.c: (ev_async_renderer_get_type):
5703         * backend/ev-document-find.c: (ev_document_find_get_type):
5704         * backend/ev-document-fonts.c: (ev_document_fonts_get_type):
5705         * backend/ev-document-links.c: (ev_document_links_get_type):
5706         * backend/ev-document-security.c: (ev_document_security_get_type):
5707         * backend/ev-document-thumbnails.c:
5708         (ev_document_thumbnails_get_type):
5709         * backend/ev-document.c: (ev_document_get_type):
5710         * backend/ev-ps-exporter.c: (ev_ps_exporter_get_type):
5711         * backend/ev-selection.c: (ev_selection_get_type):
5712         * cut-n-paste/recent-files/egg-recent-model.c:
5713         (egg_recent_model_get_type):
5714         * cut-n-paste/recent-files/egg-recent-view-uimanager.c:
5715         (egg_recent_view_uimanager_get_type):
5716         * cut-n-paste/recent-files/egg-recent-view.c:
5717         (egg_recent_view_get_type):
5718         * cut-n-paste/toolbar-editor/egg-editable-toolbar.c:
5719         (egg_editable_toolbar_get_type):
5720         * cut-n-paste/toolbar-editor/egg-toolbar-editor.c:
5721         (egg_toolbar_editor_get_type):
5722         * cut-n-paste/toolbar-editor/egg-toolbars-model.c:
5723         (egg_toolbars_model_get_type):
5724         * cut-n-paste/toolbar-editor/eggtreemultidnd.c:
5725         (egg_tree_multi_drag_source_get_type):
5726         * cut-n-paste/zoom-control/ephy-zoom-action.c:
5727         (ephy_zoom_action_get_type):
5728         * cut-n-paste/zoom-control/ephy-zoom-control.c:
5729         (ephy_zoom_control_get_type):
5730         * impress/r_back.c: (_imp_fill_back):
5731         * properties/ev-properties-main.c:
5732         (ev_properties_plugin_register_type):
5733         * shell/ev-sidebar-page.c: (ev_sidebar_page_get_type):
5734         * shell/ev-view-accessible.c: (ev_view_accessible_get_type),
5735         (ev_view_accessible_factory_get_type):
5736
5737         Reduce relocations. Bug #360616.
5738
5739 2006-10-08  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5740
5741         * backend/ev-document-factory.c:
5742         (ev_document_factory_get_document):
5743         
5744         Load document even if extension is wrong.
5745
5746 2006-10-03  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5747
5748         * shell/ev-metadata-manager.c: (save_values):
5749         * shell/ev-window.c: (setup_size_from_metadata),
5750         (setup_view_from_metadata), (ev_window_setup_document),
5751         (ev_window_xfer_job_cb), (window_configure_event_cb):
5752         
5753         Set size according to the document size/page size ratio.
5754         That should correct rather wierd behaviour of the previous
5755         commit.
5756
5757 2006-10-03  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5758
5759         * shell/ev-window.c: (setup_view_from_metadata):
5760         
5761         Set size for new windows from previous window size.
5762         See bugs #354968 and #168450 for details. Thanks
5763         to Meik Hellmund.
5764
5765 2006-10-01  Carlos Garcia Campos  <carlosgc@gnome.org>
5766
5767         * djvu/djvu-links.c: (build_tree):
5768
5769         Fix memory leak.
5770
5771 2006-10-01  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5772
5773         * shell/ev-sidebar.c: (ev_sidebar_init), (ev_sidebar_set_document):
5774         
5775         Don't make sidebar close button insensitive. Fixes
5776         bug #357871.
5777
5778 2006-10-01  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5779
5780         * shell/ev-window.c: (ev_window_setup_action_sensitivity),
5781         (ev_window_set_view_accels_sensitivity):
5782         
5783         Don't enable Slash on documents which don't support
5784         find. Fixes bug #358648.
5785
5786 2006-10-01  Wouter Bolsterlee  <wbolster@gnome.org>
5787
5788         * shell/ev-window.c: (ev_window_cmd_file_open): Make the
5789         open dialog fall back to the current document uri if the
5790         filechooser hasn't been used before. Fixes bug #356980.
5791
5792 2006-09-24  Mathias Hasselmann  <mathias.hasselmann@gmx.de>
5793
5794         * shell/ev-window.c: (ev_window_setup_recent), 
5795         (ev_window_get_recent_file_label):
5796
5797         Escape underscores in filenames of recent file items.
5798
5799 2006-09-24  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5800
5801         * configure.ac:
5802         
5803         Bumped poppler requirements, really 0.5.3 is very 
5804         buggy, now we require 0.5.4.
5805
5806 2006-09-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5807
5808         * djvu/Makefile.am:
5809         * djvu/djvu-document.c: (G_DEFINE_TYPE_WITH_CODE),
5810         (djvu_document_find_iface_init), (djvu_document_links_get_links),
5811         (djvu_document_document_links_iface_init):
5812         * djvu/djvu-links.c: (number_from_miniexp), (string_from_miniexp),
5813         (number_from_string_10), (get_djvu_link_dest),
5814         (get_djvu_link_action), (build_tree), (get_djvu_hyperlink_area),
5815         (get_djvu_hyperlink_mapping), (djvu_links_has_document_links),
5816         (djvu_links_get_links), (djvu_links_find_link_dest),
5817         (djvu_links_get_links_model):
5818         * djvu/djvu-links.h:
5819         
5820         Add support for links and bookmarks in djvu documents. Thanks
5821         to Pauli Virtanen <pauli.virtanen@iki.fi> for the wonderful
5822         patch.
5823
5824 2006-09-14  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5825
5826         * shell/ev-application.c: (ev_application_open_uri_at_dest):
5827         
5828         Reopen should reload document. Fixes 
5829         bug 327951.
5830
5831 2006-09-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5832
5833         * configure.ac:
5834         * data/Makefile.am:
5835         * data/evince-16.png:
5836         * data/evince-22.png:
5837         * data/evince.png:
5838         * data/evince.svg:
5839         * data/icons/16x16/Makefile.am:
5840         * data/icons/16x16/evince.png:
5841         * data/icons/22x22/Makefile.am:
5842         * data/icons/22x22/evince.png:
5843         * data/icons/48x48/Makefile.am:
5844         * data/icons/48x48/evince.png:
5845         * data/icons/Makefile.am:
5846         * data/icons/scalable/Makefile.am:
5847         * data/icons/scalable/evince.svg:
5848         
5849         Install icons with correct names. Fixes
5850         bug #354429.
5851
5852 2006-09-07  Carlos Garcia Campos  <carlosgc@gnome.org>
5853
5854         * shell/ev-view.c: (ev_view_button_release_event):
5855
5856         Don't open links with middle mouse button. Fixes bug #353649
5857
5858 2006-09-04  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5859
5860         * NEWS:
5861         * configure.ac:
5862         
5863         Update for release 0.6.0
5864
5865 2006-08-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5866
5867         * shell/ev-window.c: (ev_window_xfer_job_cb), (do_action_named):
5868         Implement Close named action. Patch by Carlos Garcia Campos.
5869
5870 2006-08-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5871
5872         * shell/ev-pixbuf-cache.c: (copy_job_to_job_info):
5873         
5874         Don't clear link mapping on copy_job_to_job_info. Fixes
5875         bug 346168.
5876
5877 2006-08-21  Carlos Garcia Campos  <carlosgc@gnome.org>
5878
5879         * shell/main.c: (main):
5880
5881         Revert my previous commit, gnome_program_init owns the option context.
5882         Fix another memory leak in main. Both caught by Christian Persch. 
5883
5884 2006-08-21  Carlos Garcia Campos  <carlosgc@gnome.org>
5885
5886         * shell/main.c: (main):
5887
5888         Fix memory leak.
5889
5890 2006-08-21  Carlos Garcia Campos  <carlosgc@gnome.org>
5891
5892         * backend/ev-document-factory.c: (ev_document_factory_get_document):
5893
5894         Fix crash when opening a pdf with password protection. 
5895
5896 2006-08-19  Carlos Garcia Campos  <carlosgc@gnome.org>
5897
5898         * pdf/ev-poppler.cc: (pdf_document_search_free):
5899
5900         Fix memory leak. 
5901
5902 2006-08-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5903
5904         * backend/ev-document-factory.c:
5905         (ev_document_factory_get_document):
5906         * tiff/tiff-document.c: (tiff_document_finalize):
5907         
5908         More correct handling of document loading. Fixes
5909         bug #349043.
5910
5911 2006-08-14  Carlos Garcia Campos  <carlosgc@gnome.org>
5912
5913         * backend/ev-attachment.c: (ev_attachment_save):
5914
5915         Remove GNOME_VFS_OPEN_TRUNCATE flag which is only available with
5916         gnome-vfs >= 2.9.3 and it's not really needed. Fixes bug #351493
5917
5918 2006-08-15  Julien Rebetez  <julienr@cvs.gnome.org>
5919         
5920         * shell/ev-window.c: (ev_window_cmd_recent_file_activate):
5921         Fixed a compilation error if HAVE_GTK_RECENT isn't defined.
5922
5923 2006-08-14  Carlos Garcia Campos  <carlosgc@gnome.org>
5924
5925         * shell/ev-sidebar-thumbnails.c:
5926
5927         Do not render thumbnails unless thumbnails page is active in the
5928         sidebar.
5929
5930 2006-08-14  Christian Persch  <chpe@cvs.gnome.org>
5931
5932         * shell/ev-properties-dialog.c:
5933
5934         Fix dialogue spacing. Bug #351370.
5935
5936 2006-08-13  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
5937
5938         * configure.ac:
5939
5940         Use lowercase gettext catalog file names (evince.mo
5941         instead of Evince.mo)
5942
5943 2006-08-13  Carlos Garcia Campos  <carlosgc@gnome.org>
5944
5945         * shell/ev-sidebar-attachments.c:
5946
5947         GtkIconTheme is now screen safe too. Fixes bug #350878
5948
5949 2006-08-11  Carlos Garcia Campos  <carlosgc@gnome.org>
5950
5951         * shell/ev-window.c:
5952
5953         GtkRecent manager is now screen safe. Fixes bug #350145
5954
5955 2006-08-11  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5956
5957         * shell/ev-sidebar.c: (ev_sidebar_init):
5958         
5959         Make sidebar close icon smaller. Fix for bug 350177.
5960         See also bugs 350176 and 165770.
5961
5962 2006-08-10  Carlos Garcia Campos  <carlosgc@gnome.org>
5963
5964         * shell/ev-view.c: (goto_fith_dest), (goto_fit_dest), (goto_xyz_dest):
5965
5966         Ignore zoom for xyz destinations when it's <= 1, keeping user
5967         preferences instead. Set correct sizing-mode for fith and fitv
5968         destinations rather than EV_SIZING_FREE. Fixes bug #349433
5969
5970 2006-08-08  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5971
5972         * NEWS:
5973         * configure.ac:
5974         
5975         Update for release 0.5.5
5976
5977 2006-08-07  Radoslav Dorcik <dixiecko@gmail.com>
5978         
5979         * shell/ev-window.c: (ev_window_cmd_escape)
5980
5981         Escape unfocus page entry. Fixes bug #345809.
5982
5983 2006-08-06  Carlos Garcia Campos  <carlosgc@gnome.org>
5984
5985         * pdf/ev-poppler.cc: (ev_link_dest_from_dest), (ev_link_from_action),
5986         (build_tree), (pdf_document_links_get_links),
5987         (pdf_document_links_find_link_dest):
5988         * shell/ev-view.c: (goto_fitr_dest), (goto_fith_dest),
5989         (goto_xyz_dest):
5990
5991         Convert from PDF style coordinates to X style coordinates in the
5992         backend rather than in the view. Fixes bug #338440
5993
5994 2006-08-06  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
5995
5996         * shell/ev-window.c:
5997         
5998         Remove Ctrl+Shift+T shortcut for toolbars. See
5999         the bug #350098.
6000
6001 2006-08-05  Carlos Garcia Campos  <carlosgc@gnome.org>
6002
6003         * configure.ac:
6004
6005         Use [] in AC_DEFINE for GtkRecent. Probably build was failing because
6006         of this. 
6007
6008 2006-08-05  Carlos Garcia Campos  <carlosgc@gnome.org>
6009
6010         * configure.ac:
6011         * cut-n-paste/Makefile.am:
6012         * data/evince-ui.xml:
6013         * shell/Makefile.am:
6014         * shell/ev-application.[ch]:
6015         * shell/ev-window.c:
6016
6017         Use GtkRecent instead of EggRecent when it's available. Fixes bug
6018         #349273
6019
6020 2006-08-04  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
6021
6022         * shell/eggfindbar.c: (egg_find_bar_init): Fixed typo in
6023         findbar code: s/help/search/
6024
6025 2006-08-04  Ricardo Markiewicz  <rmarkie@fi.uba.ar>
6026
6027         * shell/ev-window.c: (setup_document_from_metadata),
6028         (setup_chrome_from_metadata), (setup_sidebar_from_metadata),
6029         (setup_view_from_metadata):
6030         
6031         Fix memory leaks.
6032
6033 2006-07-31  Christian Persch  <chpe@cvs.gnome.org>
6034
6035         * autogen.sh, configure.ac: 
6036         
6037         Update automake usage. See bug 349292.
6038
6039 2006-07-30  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6040
6041         * shell/eggfindbar.c: (egg_find_bar_class_init),
6042         (entry_activate_callback), (egg_find_bar_init),
6043         (egg_find_bar_set_status_text):
6044         * shell/eggfindbar.h:
6045         
6046         Unify Evince findbar with Epiphany. Nice patch
6047         from Fabricio Silva <silva@crans.org> and
6048         Frederic Peters <fpeters@entrouvert.com>. See
6049         bug #339966 for details.
6050
6051 2006-07-27  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6052
6053         * data/evince.desktop.in.in:
6054         
6055         Correct information for bugzilla. Thanks to
6056         Olaf Vitters, see bug #348855.
6057
6058 2006-07-26  Carlos Garcia Campos  <carlosgc@gnome.org>
6059
6060         * shell/ev-jobs.[ch]:
6061         * shell/ev-sidebar-links.c:
6062         * shell/ev-window.[ch]:
6063
6064         GtkPrintJob doesn't support print ranges or current page, so we export
6065         to a ps file now when printing ranges or current page.
6066
6067 2006-07-26  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6068
6069         * pdf/ev-poppler.cc:
6070         * shell/ev-window.c: (do_action_named):
6071
6072         We should be more clear about bugzilla. See the
6073         poppler bug #7623.
6074
6075 2006-07-23  Carlos Garcia Campos  <carlosgc@gnome.org>
6076
6077         * configure.ac:
6078         * shell/Makefile.am:
6079         * shell/ev-job-queue.c:
6080         * shell/ev-jobs.[ch]:
6081         * shell/ev-sidebar-links.c:
6082         * shell/ev-window.[ch]:
6083         
6084         Use GtkPrint instead of GnomePrint when it's available. Fixes bug
6085         #348422
6086
6087 2006-07-17  Carlos Garcia Campos  <carlosgc@gnome.org>
6088
6089         * data/evince-toolbar.xml: Add preview toolbar (hidden by default)
6090         * shell/ev-application-service.xml:
6091         * shell/ev-application.[ch]:
6092         * shell/ev-jobs.[ch]:
6093         * shell/ev-window.[ch]: (ev_window_run_preview):
6094         * shell/main.c: 
6095
6096         Add preview mode to use evince as a printing previewer. It also adds
6097         other command line options for fullscreen and presentation modes.
6098         Fixes bugs #347822, #317031
6099
6100 2006-07-11  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6101
6102         * NEWS:
6103         * configure.ac:
6104         
6105         Update for release 0.5.4
6106
6107 2006-07-11  Bastien Nocera <hadess@hadess.net>
6108
6109         * Makefile.am:
6110         * backend/Makefile.am:
6111         * backend/ev-document-factory.c: (ev_document_factory_add_filters):
6112         * backend/ev-document-factory.h:
6113         * configure.ac:
6114         * impress/.cvsignore:
6115         * impress/Makefile.am:
6116         * impress/common.h:
6117         * impress/document.c: (_imp_load_xml), (imp_open), (imp_nr_pages),
6118         (imp_get_page), (imp_next_page), (imp_prev_page),
6119         (imp_get_page_no), (imp_get_page_name), (imp_get_xml), (imp_close):
6120         * impress/f_oasis.c: (render_object), (render_page),
6121         (get_geometry), (_imp_oasis_load):
6122         * impress/f_oo13.c: (render_object), (render_page), (get_geometry),
6123         (_imp_oo13_load):
6124         * impress/iksemel.c: (iks_malloc), (iks_free), (iks_set_mem_funcs),
6125         (iks_strdup), (iks_strcat), (iks_strcmp), (iks_strcasecmp),
6126         (iks_strncmp), (iks_strncasecmp), (iks_strlen), (iks_escape),
6127         (iks_unescape), (find_space), (iks_stack_new), (iks_stack_alloc),
6128         (iks_stack_strdup), (iks_stack_strcat), (iks_stack_stat),
6129         (iks_stack_delete), (iks_sax_new), (iks_sax_extend),
6130         (iks_parser_stack), (iks_user_data), (iks_nr_bytes),
6131         (iks_nr_lines), (stack_init), (stack_expand), (sax_core),
6132         (iks_parse), (iks_parser_reset), (iks_parser_delete), (iks_new),
6133         (iks_new_within), (iks_insert), (iks_insert_cdata),
6134         (iks_insert_attrib), (iks_insert_node), (iks_hide), (iks_delete),
6135         (iks_next), (iks_next_tag), (iks_prev), (iks_prev_tag),
6136         (iks_parent), (iks_root), (iks_child), (iks_first_tag),
6137         (iks_attrib), (iks_find), (iks_find_cdata), (iks_find_attrib),
6138         (iks_find_with_attrib), (iks_stack), (iks_type), (iks_name),
6139         (iks_cdata), (iks_cdata_size), (iks_has_children),
6140         (iks_has_attribs), (escape_size), (my_strcat), (escape),
6141         (iks_string), (iks_copy_within), (iks_copy), (tagHook),
6142         (cdataHook), (deleteHook), (iks_dom_new), (iks_set_size_hint),
6143         (iks_tree), (iks_load), (iks_save):
6144         * impress/iksemel.h:
6145         * impress/imposter.h:
6146         * impress/impress-document.c: (G_DEFINE_TYPE_WITH_CODE),
6147         (imp_render_draw_bezier_real), (imp_render_get_size),
6148         (imp_render_set_fg_color), (imp_render_draw_line),
6149         (imp_render_draw_rect), (imp_render_draw_polygon),
6150         (imp_render_draw_arc), (imp_render_draw_bezier),
6151         (imp_render_open_image), (imp_render_get_image_size),
6152         (imp_render_scale_image), (imp_render_draw_image),
6153         (imp_render_close_image), (imp_render_markup),
6154         (imp_render_get_text_size), (imp_render_draw_text),
6155         (impress_document_load), (impress_document_save),
6156         (impress_document_get_n_pages), (impress_document_get_page_size),
6157         (imp_render_get_from_drawable), (impress_document_render_pixbuf),
6158         (impress_document_finalize), (impress_document_class_init),
6159         (impress_document_can_get_text), (impress_document_get_info),
6160         (impress_document_document_iface_init),
6161         (impress_document_thumbnails_get_thumbnail),
6162         (impress_document_thumbnails_get_dimensions),
6163         (impress_document_document_thumbnails_iface_init),
6164         (impress_document_init):
6165         * impress/impress-document.h:
6166         * impress/internal.h:
6167         * impress/r_back.c: (_imp_fill_back):
6168         * impress/r_draw.c: (_imp_draw_rect), (_imp_draw_line_end),
6169         (_imp_draw_image), (_imp_tile_image):
6170         * impress/r_geometry.c: (r_parse_color), (r_get_color), (fg_color),
6171         (r_get_x), (r_get_y), (r_get_angle), (r_get_viewbox), (r_polygon),
6172         (r_polyline):
6173         * impress/r_gradient.c: (poly_rotate), (r_draw_gradient_simple),
6174         (r_draw_gradient_complex), (r_draw_gradient):
6175         * impress/r_style.c: (get_style), (r_get_style), (get_style_x),
6176         (r_get_bullet):
6177         * impress/r_text.c: (add_line), (add_span), (calc_sizes),
6178         (calc_pos), (_imp_draw_layout), (text_span), (text_p), (text_list),
6179         (r_text):
6180         * impress/render.c: (imp_create_context), (imp_context_set_page),
6181         (imp_context_set_step), (imp_render), (imp_delete_context):
6182         * impress/render.h:
6183         * impress/zip.c: (zip_error), (find_cd), (get_long), (get_word),
6184         (list_files), (zip_open), (zip_close), (find_file), (seek_file),
6185         (zip_load_xml), (zip_get_size), (zip_load):
6186         * impress/zip.h:
6187         * shell/ev-utils.c:
6188         
6189         New backend to support impress slides. Fixes bug #30867.
6190
6191 2006-07-10  Ghee Teo  <ghee.teo@sun.com>
6192
6193         * shell/ev-utils.c: (using_postscript_printer):
6194         
6195         Fixes crash when print using PAPI backend,
6196         bug #345012.
6197
6198 2006-06-09  Pat Rondon  <pmr@patrondon.org>
6199
6200         * shell/ev-jobs.c: (ev_job_xfer_run):
6201         * shell/ev-window.c: (password_dialog_response),
6202         (ev_window_popup_password_dialog), (ev_window_xfer_job_cb),
6203         (ev_window_dispose):
6204         Fixes bug #344160: if the xfer job doesn't complete
6205         because a password is required, reload the existing
6206         instance instead of creating a new one.
6207
6208 2006-06-01  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6209
6210         * shell/main.c: (main): Call gdk_threads_init. Thus
6211         we'll avoid errors in auth dialog. Fix for the bug
6212         #343347.
6213
6214 2006-06-01  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
6215
6216         * configure.ac: Advertise pixbuf support, fix
6217         for the bug 343317.
6218
6219 2006-05-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6220
6221         * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_refresh),
6222         (ev_sidebar_thumbnails_set_document):
6223         
6224         Update sidebar thumbnails after reloading.
6225
6226 2006-05-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6227
6228         * shell/ev-jobs.c: (ev_job_xfer_dispose), (ev_job_xfer_new):
6229         * shell/ev-jobs.h:
6230         * shell/ev-window.c: (ev_window_xfer_job_cb), (ev_window_open_uri),
6231         (ev_window_cmd_view_reload), (ev_window_init):
6232         
6233         Don't crash on reload. Fix for the bug #343167.
6234
6235 2006-05-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6236
6237         * shell/ev-jobs.c: (ev_job_render_run):
6238         
6239         Check for document links.
6240
6241 2006-05-27  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6242
6243         * backend/ev-attachment.c: (ev_attachment_save),
6244         (ev_attachment_launch_app), (ev_attachment_open):
6245         * backend/ev-document-factory.c: (get_document_from_uri):
6246         * cut-n-paste/recent-files/egg-recent-view-uimanager.c:
6247         (egg_recent_view_uimanager_set_list):
6248         * ps/ps-document.c: (check_filecompressed), (document_load),
6249         (ps_document_load):
6250         * shell/ev-metadata-manager.c: (load_values):
6251         * shell/ev-password.c: (ev_password_dialog_set_property):
6252         * shell/ev-view.c: (tip_from_link):
6253         * shell/ev-window.c: (file_save_dialog_response_cb),
6254         (ev_window_print_dialog_response_cb):
6255         
6256         Use consistent quoting style. Fix for the bug #320285.
6257
6258 2006-05-27  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6259
6260         * shell/ev-jobs.c: (ev_job_xfer_run):
6261         * shell/main.c: (load_files):
6262                 
6263         Open links with anchors. Fix for the bug #339836.
6264
6265 2006-05-27  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6266
6267         * backend/ev-link-dest.c: (ev_link_dest_type_get_type),
6268         (ev_link_dest_get_page_label), (ev_link_dest_get_property),
6269         (ev_link_dest_set_property), (ev_link_dest_finalize),
6270         (ev_link_dest_class_init), (ev_link_dest_new_named),
6271         (ev_link_dest_new_page_label):
6272         * backend/ev-link-dest.h:
6273         * shell/ev-application.c: (ev_application_open_uri):
6274         * shell/ev-view.c: (goto_dest):
6275         * shell/ev-window.c:
6276         * shell/ev-window.h:
6277         
6278         Fix page-label command line option. Bug #342070.
6279
6280 2006-05-27  Ricardo Markiewicz  <rmarkie@fi.uba.ar>
6281
6282         * shell/ev-view.c: (ev_view_expose_event), (draw_one_page):
6283         
6284         Don't show highlight rects if page can't be showed. Fix for 
6285         the bug #342076
6286
6287 2006-05-27  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6288
6289         * shell/ev-window.c: (setup_sidebar_from_metadata),
6290         (ev_window_sidebar_visibility_changed_cb), (ev_window_init):
6291         
6292         Setup sidebar from metadata even if there is no document
6293         loaded. Fix for the bug #342807.
6294
6295 2006-05-26  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6296
6297         * cut-n-paste/toolbar-editor/Makefile.am:
6298         * cut-n-paste/toolbar-editor/egg-editable-toolbar.c:
6299         (get_dock_position), (get_toolbar_position), (get_toolbar_nth),
6300         (find_action), (drag_data_delete_cb), (drag_begin_cb),
6301         (drag_end_cb), (drag_data_get_cb), (move_item_cb),
6302         (remove_item_cb), (remove_toolbar_cb), (popup_context_deactivate),
6303         (popup_context_menu_cb), (button_press_event_cb),
6304         (configure_item_sensitivity), (configure_item_cursor),
6305         (configure_item_tooltip), (connect_widget_signals),
6306         (action_sensitive_cb), (create_item_from_action),
6307         (create_item_from_position), (toolbar_drag_data_received_cb),
6308         (toolbar_drag_drop_cb), (toolbar_drag_motion_cb),
6309         (toolbar_drag_leave_cb), (configure_drag_dest),
6310         (toggled_visibility_cb), (toolbar_visibility_refresh),
6311         (create_dock), (toolbar_changed_cb), (unparent_fixed),
6312         (update_fixed), (toolbar_added_cb), (toolbar_removed_cb),
6313         (item_added_cb), (item_removed_cb), (egg_editable_toolbar_build),
6314         (egg_editable_toolbar_set_model), (egg_editable_toolbar_init),
6315         (egg_editable_toolbar_dispose),
6316         (egg_editable_toolbar_set_ui_manager),
6317         (egg_editable_toolbar_get_selected),
6318         (egg_editable_toolbar_set_selected), (set_edit_mode),
6319         (egg_editable_toolbar_set_property),
6320         (egg_editable_toolbar_get_property),
6321         (egg_editable_toolbar_class_init), (egg_editable_toolbar_new),
6322         (egg_editable_toolbar_new_with_model),
6323         (egg_editable_toolbar_get_edit_mode),
6324         (egg_editable_toolbar_set_edit_mode),
6325         (egg_editable_toolbar_add_visibility), (egg_editable_toolbar_show),
6326         (egg_editable_toolbar_hide), (egg_editable_toolbar_set_fixed):
6327         * cut-n-paste/toolbar-editor/egg-editable-toolbar.h:
6328         * cut-n-paste/toolbar-editor/egg-toolbar-editor.c: (compare_items),
6329         (item_added_or_removed_cb), (toolbar_removed_cb),
6330         (egg_toolbar_editor_set_model), (egg_toolbar_editor_class_init),
6331         (egg_toolbar_editor_finalize), (drag_begin_cb), (drag_end_cb),
6332         (drag_data_get_cb), (set_drag_cursor), (editor_create_item),
6333         (editor_create_item_from_name), (append_table),
6334         (update_editor_sheet), (egg_toolbar_editor_init):
6335         * cut-n-paste/toolbar-editor/egg-toolbar-editor.h:
6336         * cut-n-paste/toolbar-editor/egg-toolbars-model.c:
6337         (egg_toolbars_model_to_xml), (egg_toolbars_model_save_toolbars),
6338         (is_unique), (toolbar_node_new), (item_node_new), (item_node_free),
6339         (toolbar_node_free), (egg_toolbars_model_get_flags),
6340         (egg_toolbars_model_set_flags), (egg_toolbars_model_get_data),
6341         (egg_toolbars_model_get_name), (impl_add_item),
6342         (egg_toolbars_model_add_item), (egg_toolbars_model_add_toolbar),
6343         (parse_data_list), (parse_item_list), (parse_toolbars),
6344         (egg_toolbars_model_load_toolbars), (parse_available_list),
6345         (parse_names), (egg_toolbars_model_load_names),
6346         (egg_toolbars_model_class_init), (egg_toolbars_model_init),
6347         (egg_toolbars_model_finalize), (egg_toolbars_model_remove_toolbar),
6348         (egg_toolbars_model_remove_item), (egg_toolbars_model_move_item),
6349         (egg_toolbars_model_delete_item), (egg_toolbars_model_n_items),
6350         (egg_toolbars_model_item_nth), (egg_toolbars_model_n_toolbars),
6351         (egg_toolbars_model_toolbar_nth), (egg_toolbars_model_get_types),
6352         (egg_toolbars_model_set_types), (fill_avail_array),
6353         (egg_toolbars_model_get_name_avail),
6354         (egg_toolbars_model_get_name_flags),
6355         (egg_toolbars_model_set_name_flags):
6356         * cut-n-paste/toolbar-editor/egg-toolbars-model.h:
6357         * cut-n-paste/toolbar-editor/eggintl.h:
6358         * cut-n-paste/toolbar-editor/eggtreemultidnd.c:
6359         (egg_tree_multi_drag_source_get_type),
6360         (egg_tree_multi_drag_source_row_draggable),
6361         (egg_tree_multi_drag_source_drag_data_delete),
6362         (egg_tree_multi_drag_source_drag_data_get), (stop_drag_check),
6363         (egg_tree_multi_drag_button_release_event), (selection_foreach),
6364         (path_list_free), (set_context_data), (get_context_data),
6365         (get_info), (egg_tree_multi_drag_drag_data_get),
6366         (egg_tree_multi_drag_motion_event),
6367         (egg_tree_multi_drag_button_press_event),
6368         (egg_tree_multi_drag_add_drag_support):
6369         * cut-n-paste/toolbar-editor/eggtreemultidnd.h:
6370         * shell/ev-application.c: (ev_application_init),
6371         (ev_application_save_toolbars_model):
6372         * shell/ev-window.c: (ev_window_create_fullscreen_popup),
6373         (ev_window_cmd_edit_toolbar), (ev_window_init):
6374         
6375         Sync toolbareditor with epiphany and libegg
6376
6377 2006-05-23  Carlos Garcia Campos  <carlosgc@gnome.org>
6378
6379         * configure.ac: 
6380
6381         Depend on poppler 0.5.2
6382
6383 2006-05-22  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6384
6385         * shell/ev-jobs.c: (ev_job_render_run):
6386         
6387         Check if document supports links iterface.
6388
6389 2006-05-16  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6390
6391         * NEWS:
6392         * configure.ac:
6393         
6394         Update for release 0.5.3
6395
6396 2006-05-13  Michael Plump  <plumpy@skylab.org>
6397
6398         * configure.ac:
6399         * shell/Makefile.am:
6400         * shell/main.c: (main):
6401         
6402         Port to GOption command line parsing. Fix for the 
6403         bug #327518
6404
6405 2006-05-13  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6406
6407         * shell/ev-window.c: (ev_window_cmd_help_about):
6408         
6409         Do not wrap license. Fix for the bug #309460.
6410
6411 2006-05-13  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6412
6413         * configure.ac:
6414         * properties/ev-properties-main.c: (ev_properties_get_pages):
6415         * shell/ev-application.c: (ev_application_open_window),
6416         (ev_application_open_uri_at_dest):
6417         * shell/ev-sidebar-attachments.c: (ev_sidebar_attachments_init):
6418         * shell/ev-sidebar-thumbnails.c: (adjustment_changed_cb),
6419         (ev_sidebar_thumbnails_use_icon_view), (page_changed_cb):
6420         * shell/ev-utils.c: (save_print_config_to_file):
6421         * shell/ev-window.c: (ev_window_cmd_save_as),
6422         (ev_attachment_popup_cmd_save_attachment_as):
6423         * shell/main.c: (load_files_remote):
6424         
6425         Bump requirements to gtk 2.8 and drop all ifdefs used.
6426
6427 2006-05-11  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6428
6429         * shell/ev-sidebar-attachments.c: (ev_sidebar_attachments_init):
6430         * shell/ev-window.c: (ev_window_init):
6431         
6432         Show attachments page.
6433
6434 2006-05-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6435
6436         * po/POTFILES.in:
6437         * shell/ev-attachment-bar.c:
6438         * shell/ev-attachment-bar.h:
6439         * shell/ev-sidebar-attachments.c:
6440         (ev_sidebar_attachments_icon_cache_add),
6441         (icon_theme_get_pixbuf_from_mime_type),
6442         (ev_sidebar_attachments_icon_cache_get), (icon_cache_update_icon),
6443         (ev_sidebar_attachments_icon_cache_refresh),
6444         (ev_sidebar_attachments_get_attachment_at_pos),
6445         (ev_sidebar_attachments_popup_menu_show),
6446         (ev_sidebar_attachments_popup_menu),
6447         (ev_sidebar_attachments_button_press),
6448         (ev_sidebar_attachments_update_icons),
6449         (ev_sidebar_attachments_drag_data_get),
6450         (ev_sidebar_attachments_get_property),
6451         (ev_sidebar_attachments_destroy),
6452         (ev_sidebar_attachments_class_init), (ev_sidebar_attachments_init),
6453         (ev_sidebar_attachments_new),
6454         (ev_sidebar_attachments_set_document),
6455         (ev_sidebar_attachments_support_document),
6456         (ev_sidebar_attachments_get_label),
6457         (ev_sidebar_attachments_page_iface_init):
6458         * shell/ev-sidebar-attachments.h:
6459         * shell/ev-window.c: (update_chrome_visibility),
6460         (setup_sidebar_from_metadata), (ev_window_setup_document),
6461         (ev_window_sidebar_current_page_changed_cb),
6462         (attachment_bar_menu_popup_cb), (ev_window_init):
6463         
6464         Move attachments bar to sidebar.
6465
6466 2006-05-09  Carlos Garcia Campos  <carlosgc@gnome.org>
6467
6468         * pdf/ev-poppler.cc:
6469         * shell/ev-application.[ch]:
6470         * shell/main.c:
6471
6472         Fix some memory leaks.
6473
6474 2006-05-09  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
6475
6476         * shell/ev-properties-dialog.c: (ev_properties_dialog_init):
6477
6478         Change the properties dialog response to
6479         GTK_RESPONSE_CANCEL instead of GTK_RESPONSE_CLOSE. This
6480         will make the dialog go away when the user presses
6481         enter. With gtk+ >= 2.9 this will happen anyway, but for
6482         older gtk+ versions only GTK_RESPONSE_CANCEL is bound to
6483         escape by default. Fixes bug #340539. See also bug
6484         #101293 for the gtk+ part.
6485
6486 2006-05-08  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
6487
6488         * shell/ev-view.c (tip_from_action_named): Replace some strings
6489         that were wrong. Closes #340970.
6490
6491 2006-05-08  Carlos Garcia Campos  <carlosgc@gnome.org>
6492
6493         * shell/ev-window.c: (ev_window_sidebar_visibility_changed_cb):
6494
6495         Update sidebar chrome flag when sidebar visibility changes. Fixes bug
6496         #341049
6497
6498 2006-05-05  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6499
6500         * djvu/Makefile.am:
6501         * dvi/Makefile.am:
6502         * dvi/mdvi-lib/Makefile.am:
6503         * properties/Makefile.am:
6504         * ps/Makefile.am:
6505         * shell/Makefile.am:
6506         * thumbnailer/Makefile.am:
6507         
6508         Due to broken libtool that is unable to track dependencies
6509         of noinst libraries we are forced to explicitely point
6510         libraries for binary. Fix for the bug #333334.
6511
6512 2006-05-05  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6513
6514         * data/evince.desktop.in.in:
6515         * shell/ev-view.c: (view_update_range_and_current_page),
6516         (ev_view_next_page), (ev_view_previous_page):
6517         * shell/ev-window.c: (update_chrome_visibility),
6518         (setup_sidebar_from_metadata), (ev_window_setup_document),
6519         (ev_window_update_fullscreen_popup), (fullscreen_timeout_cb),
6520         (fullscreen_set_timeout), (fullscreen_clear_timeout),
6521         (fullscreen_motion_notify_cb), (ev_window_run_fullscreen),
6522         (ev_window_stop_fullscreen), (ev_window_run_presentation),
6523         (ev_window_stop_presentation), (ev_window_focus_in_event),
6524         (ev_window_focus_out_event), (ev_window_view_sidebar_cb),
6525         (ev_window_init):
6526         * thumbnailer/Makefile.am:
6527         
6528         Update fullscreen and presentation timeout handling. Hide
6529         cursor in presentation after timeout. Fix for the bugs
6530         #136359 and #336981.
6531
6532 2006-05-03  Carlos Garcia Campos  <carlosgc@gnome.org>
6533
6534         * backend/ev-link-action.[ch]:
6535         * pdf/ev-poppler.cc: (ev_link_from_action):
6536         * shell/ev-view-private.h:
6537         * shell/ev-view.c: (ev_view_handle_link), (tip_from_action_named):
6538         * shell/ev-window.c: (do_action_named), (view_external_link_cb):
6539
6540         Add support for Named Action links
6541
6542 2006-05-02  Carlos Garcia Campos  <carlosgc@gnome.org>
6543
6544         * backend/Makefile.am:
6545         * backend/ev-document-links.[ch]:
6546         * backend/ev-document.[ch]:
6547         * backend/ev-link-action.[ch]:
6548         * backend/ev-link-dest.[ch]:
6549         * backend/ev-link.[ch]:
6550         * pdf/ev-poppler.cc: (pdf_document_find_link_dest),
6551         (ev_link_dest_from_dest), (ev_link_from_action), (build_tree):
6552         * shell/ev-page-action.c: (build_new_tree_cb):
6553         * shell/ev-sidebar-links.c: (get_page_from_dest), (print_section_cb),
6554         (links_page_num_func), (update_page_callback):
6555         * shell/ev-view.[ch]: (ev_view_goto_dest), (ev_view_handle_link),
6556         (tip_from_link):
6557         * shell/ev-jobs.c:
6558         * shell/ev-window.[ch]: (ev_window_open_uri),
6559         (sidebar_links_link_activated_cb), (ev_view_popup_cmd_open_link):
6560         * shell/ev-application.[ch]: (ev_application_open_window),
6561         (ev_application_open_uri):
6562
6563         Rework links system, it adds support for remote links now and it makes
6564         easier to add new kinds of actions and destinations. Fixes bug #317292
6565
6566 2006-05-02  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6567
6568         * data/Makefile.am:
6569         * data/evince.png:
6570         * data/evince-16.png:
6571         * data/evince-22.png:
6572         * data/evince.svg:
6573         * shell/main.c: (main):
6574         
6575         Evince use it's own icon. Fix for the bug #313392.
6576
6577         * shell/ev-window.c: (fullscreen_timeout_cb),
6578         (fullscreen_set_timeout), (fullscreen_clear_timeout),
6579         (ev_window_cmd_help_about), (ev_window_dispose):
6580         
6581         Simplify fullscreen timeout code.
6582
6583 2006-04-29  Carlos Garcia Campos  <carlosgc@gnome.org>
6584
6585         * backend/ev-attachment.c: 
6586         * shell/ev-attachment-bar.c:
6587         * shell/ev-window.c:
6588
6589         Allow multiple selection of attachments
6590
6591 2006-04-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6592
6593         * shell/ev-view.c: (view_update_range_and_current_page),
6594         (ev_view_scroll):
6595         
6596         Fix for the bug #312573 – Optimal selection of current 
6597         page among visible pages.
6598
6599 2006-04-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6600
6601         * configure.ac:
6602         * djvu/Makefile.am:
6603         * djvu/djvu-text.h:
6604         
6605         Update to djvulibre-3.5.17, now it uses pkg-config. Fix
6606         for the bug 339868.
6607
6608 2006-04-22  Kjartan Maraas  <kmaraas@gnome.org>
6609
6610         * configure.ac: Fix the LINGUAS stuff here too so it builds.
6611
6612 2006-04-21  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
6613
6614         * shell/ev-window.c: Add ellipsis to the Find... menu item, as
6615         dictated by the GNOME HIG. Fixes bug #339235.
6616
6617 2006-04-20  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
6618
6619         * data/evince-ui.xml:
6620         * shell/ev-view.c: (ev_view_can_find_previous):
6621         * shell/ev-view.h:
6622         * shell/ev-window.c: (ev_window_update_actions),
6623         (ev_window_cmd_edit_find_previous):
6624
6625         Add support for "Find Previous" as dictated by the GNOME HIG. A
6626         menu item is added and some glue code to make it all work is added
6627         to various files.
6628
6629 2006-04-09  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
6630
6631         * configure.ac: Award myself the "useless use of cat" award.
6632
6633 2006-04-09  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
6634
6635         * po/LINGUAS: New file listing all supported languages.
6636
6637         * configure.in: Use po/LINGUAS instead of including all languages
6638         directly in this file. See the wiki for more information:
6639         http://live.gnome.org/GnomeGoals/PoLinguas
6640
6641 2006-04-06  Carlos Garcia Campos  <carlosgc@gnome.org>
6642
6643         * backend/ev-document-factory.c:
6644
6645         Do not load the document twice when there isn't errors
6646
6647 2006-04-03  Carlos Garcia Campos  <carlosgc@gnome.org>
6648
6649         * backend/ev-attachment.c: 
6650
6651         Fix a crash when there isn't a default application to open an
6652         attachment
6653
6654 2006-04-03  Carlos Garcia Campos  <carlosgc@gnome.org>
6655
6656         * backend/ev-attachment.[ch]:
6657         * shell/ev-attachment-bar.[ch]:
6658
6659         Added missing files. 
6660
6661 2006-04-03  Carlos Garcia Campos  <carlosgc@gnome.org>
6662
6663         * backend/Makefile.am:
6664         * data/evince-ui.xml:
6665         * backend/ev-attachment.[ch]:
6666         * backend/ev-document.[ch]: (ev_document_has_attachments),
6667         (ev_document_get_attachments):
6668         * pdf/ev-poppler.cc: (pdf_document_has_attachments),
6669         (attachment_save_to_buffer), (pdf_document_get_attachments),
6670         (pdf_document_document_iface_init):
6671         * shell/Makefile.am:
6672         * shell/ev-attachment-bar.[ch]:
6673         * shell/ev-window.c:
6674
6675         Add support for PDF attachments. Fixes bug #325143
6676
6677 2006-04-03  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6678
6679         * backend/ev-document-factory.c: (get_document_from_uri),
6680         (ev_document_factory_get_document):
6681         * backend/ev-document-factory.h:
6682         * properties/ev-properties-main.c: (ev_properties_get_pages):
6683         * shell/Makefile.am:
6684         * shell/ev-job-queue.c: (handle_job), (search_for_jobs_unlocked),
6685         (no_jobs_available_unlocked), (ev_job_queue_init), (find_queue),
6686         (ev_job_queue_remove_job):
6687         * shell/ev-job-queue.h:
6688         * shell/ev-job-xfer.c:
6689         * shell/ev-job-xfer.h:
6690         * shell/ev-jobs.c: (ev_job_fonts_init), (ev_job_fonts_class_init),
6691         (ev_job_fonts_new), (ev_job_fonts_run), (ev_job_xfer_init),
6692         (ev_job_xfer_dispose), (ev_job_xfer_class_init), (ev_job_xfer_new),
6693         (ev_job_xfer_run):
6694         * shell/ev-jobs.h:
6695         * shell/ev-window.c: (ev_window_is_empty),
6696         (password_dialog_response), (ev_window_clear_xfer_job),
6697         (ev_window_xfer_job_cb), (ev_window_open_uri),
6698         (ev_window_cmd_focus_page_selector),
6699         (ev_window_cmd_scroll_forward), (ev_window_cmd_scroll_backward),
6700         (ev_window_cmd_continuous), (ev_window_cmd_dual),
6701         (ev_window_cmd_view_best_fit), (ev_window_cmd_view_page_width),
6702         (ev_window_dispose):
6703         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
6704         
6705         * Cleanup mime type detection on document load. Fix for the
6706         bug #336448.
6707
6708 2006-04-02  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6709
6710         * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_dispose):
6711         
6712         Fix crash on exit, described in the bug #336825.
6713
6714 2006-03-31  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6715
6716         * backend/ev-document-factory.c:
6717         (ev_document_factory_get_from_mime),
6718         (ev_document_factory_get_all_mime_types), (get_document_from_uri),
6719         (ev_document_factory_get_document),
6720         (file_filter_add_mime_list_and_free),
6721         (ev_document_factory_add_filters):
6722         * backend/ev-document-factory.h:
6723         * properties/ev-properties-main.c: (ev_properties_get_pages):
6724         * shell/Makefile.am:
6725         * shell/ev-application.c:
6726         * shell/ev-job-xfer.c: (ev_job_xfer_run):
6727         * shell/ev-window.c: (ev_window_cmd_file_open),
6728         (ev_window_cmd_save_as):
6729         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
6730         
6731         Rework factory functions so they are placed now in a single 
6732         file ev-document-factory.c
6733
6734 2006-03-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6735
6736         * shell/ev-window.c: (update_chrome_visibility):
6737         
6738         Fix for the bug 166566 - don't show menubar in fullscreen
6739         mode.
6740
6741 2006-03-22  Tommi Vainikainen  <thv@iki.fi>
6742
6743         * configure.ac (ALL_LINGUAS): Added Dzongkha (dz).
6744
6745 2006-03-21  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6746
6747         * shell/ev-view.c: (ev_view_expose_event):
6748         
6749         More correctly draw loading text when document
6750         is empty.
6751
6752 2006-03-21  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6753
6754         * shell/ev-view.c: (ev_view_scroll):
6755         
6756         Fix for the bug #334854, page down and page up switch
6757         pages in presentation mode.
6758
6759 2006-03-21  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6760
6761         * shell/ev-window.c: (ev_window_set_action_sensitive),
6762         (ev_window_setup_action_sensitivity), (ev_window_update_actions),
6763         (ev_window_set_view_accels_sensitivity),
6764         (update_chrome_visibility), (ev_window_cmd_focus_page_selector),
6765         (ev_window_cmd_continuous), (ev_window_cmd_dual),
6766         (ev_window_cmd_view_best_fit), (ev_window_cmd_view_page_width),
6767         (find_changed_cb), (page_changed_cb), (ev_window_setup_document),
6768         (ev_window_cmd_edit_find), (ev_window_set_page_mode),
6769         (ev_window_cmd_edit_toolbar_cb), (ev_window_zoom_changed_cb),
6770         (ev_window_has_selection_changed_cb), (find_bar_search_changed_cb),
6771         (view_actions_focus_in_cb), (ev_window_init):
6772         
6773         Fix for the bug #333902, now it's possible to search
6774         words with slash.
6775
6776 2006-03-16  Jérémy Ar Floc'h <jérémy.lefloch@gmail.com>
6777
6778         * configure.ac: Added Breton translation.
6779         * po/br.po: Added Breton translation.
6780
6781 2006-03-14  Carlos Garcia Campos  <carlosgc@gnome.org>
6782
6783         * shell/ev-window-title (ev_window_title_update):
6784
6785         Fix memory leak in window title. Fixes bug #333944
6786
6787 2006-03-14  Carlos Garcia Campos  <carlosgc@gnome.org>
6788
6789         * shell/ev-metadata-manager.c (parseItem):
6790
6791         Fix memory leaks. Fixes bug #333945
6792
6793 2006-03-13  Nickolay V. Shmyrev <nshmyrev@yandex.ru>
6794         
6795         * NEWS, configure.ac, TODO:
6796         
6797         Update for release 0.5.2.
6798
6799 2006-03-05  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6800
6801         * shell/ev-view.c: (view_update_range_and_current_page),
6802         (page_changed_cb):
6803         
6804         Don't jump on scrolling, fix for the bug #333127.
6805
6806 2006-03-01  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6807
6808         * shell/ev-view.c: (ev_view_next_page), (ev_view_previous_page):
6809         
6810         Scroll by one page in presentation mode. Fix for the bug
6811         #332993.
6812
6813 2006-03-01  Vladimer SIchinava <vlsichinava@gmail.com>
6814
6815         * configure.ac: Added ka (Georgian) to ALL_LINGUAS line.
6816
6817 2006-02-28  Clytie Siddall <clytie@riverland.net.au>
6818
6819         * configure.ac  Added lv in ALL_LINGUAS line.
6820
6821 2006-02-27  Nickolay V. Shmyrev <nshmyrev@yandex.ru>
6822         
6823         * NEWS, configure.ac:
6824         
6825         Update for release 0.5.1
6826
6827 2006-02-24  Ricardo Markiewicz  <rmarkie@fi.uba.ar>
6828
6829         * backend/ev-document-misc.c: (ev_document_misc_paint_one_page):
6830         * backend/ev-document-misc.h:
6831         * shell/ev-view.c: (draw_one_page):
6832         
6833          Clairfy what page the toolbar page number applies to. Fix
6834          for the bug #328102.
6835
6836 2006-02-24  Stanislav Slusny <slusnys@gmail.com>
6837
6838         * shell/ev-view-private.h:
6839         * shell/ev-view.c: (ev_view_scroll), (ev_view_scroll_event),
6840         (ev_view_init), (find_changed_cb), (ev_view_find_previous),
6841         (ev_view_search_changed):
6842         * shell/ev-view.h:
6843         * shell/ev-window.c: (find_bar_search_changed_cb):
6844         
6845         Dont't jump to find result if window was scrolled during search.
6846         Fix for the bug #313266.
6847
6848 2006-02-21  Stanislav Slusny <slusnys@gmail.com>
6849
6850         * shell/eggfindbar.c: (egg_find_bar_class_init):
6851         * shell/eggfindbar.h:
6852         * shell/ev-view-accessible.c: (ev_view_accessible_idle_do_action):
6853         * shell/ev-view-private.h:
6854         * shell/ev-view.c: (add_scroll_binding_keypad), (ev_view_scroll),
6855         (ev_view_class_init), (ev_sizing_mode_get_type),
6856         (ev_scroll_type_get_type):
6857         * shell/ev-view.h:
6858         * shell/ev-window.c: (ev_window_cmd_scroll_forward),
6859         (ev_window_cmd_scroll_backward), (find_bar_scroll),
6860         (ev_window_init):
6861         
6862         Fix for the bug 319133 - Find entry should allow text scroll.
6863
6864 2006-02-20  Antoine Dopffer <antoine.dopffer@free.fr>
6865
6866         * shell/ev-view-private.h:
6867         * shell/ev-view.c: (view_update_range_and_current_page),
6868         (highlight_find_results), (find_changed_cb), (page_changed_cb),
6869         (ev_view_set_document), (update_find_status_message),
6870         (jump_to_find_result), (jump_to_find_page), (ev_view_find_next),
6871         (ev_view_find_previous):
6872         
6873         Fix for the bug #319137. Search now takes account for scrolling.
6874
6875 2006-02-19  Michael Hofmann <mh21@piware.de>
6876
6877         * configure.ac:
6878         * djvu/Makefile.am:
6879         * djvu/djvu-document-private.h:
6880         * djvu/djvu-document.c: (G_DEFINE_TYPE_WITH_CODE),
6881         (djvu_handle_events), (djvu_document_load), (djvu_document_save),
6882         (djvu_document_get_page_size), (djvu_document_render_pixbuf),
6883         (djvu_document_can_get_text), (djvu_document_get_text),
6884         (djvu_document_document_iface_init),
6885         (djvu_document_thumbnails_get_thumbnail),
6886         (djvu_document_find_begin), (djvu_document_find_get_n_results),
6887         (djvu_document_find_get_result),
6888         (djvu_document_find_page_has_results),
6889         (djvu_document_find_get_progress), (djvu_document_find_cancel),
6890         (djvu_document_find_iface_init):
6891         * djvu/djvu-text-page.c: (djvu_text_page_selection_process),
6892         (djvu_text_page_selection), (djvu_text_page_limits_process),
6893         (djvu_text_page_limits), (djvu_text_page_copy),
6894         (djvu_text_page_position), (djvu_text_page_union),
6895         (djvu_text_page_sexpr_process), (djvu_text_page_sexpr),
6896         (djvu_text_page_box), (djvu_text_page_append_text),
6897         (djvu_text_page_search), (djvu_text_page_prepare_search),
6898         (djvu_text_page_new), (djvu_text_page_free):
6899         * djvu/djvu-text-page.h:
6900         * djvu/djvu-text.c: (djvu_text_idle_callback), (djvu_text_new),
6901         (djvu_text_copy), (djvu_text_free), (djvu_text_get_text),
6902         (djvu_text_n_results), (djvu_text_has_results),
6903         (djvu_text_get_result), (djvu_text_get_progress):
6904         * djvu/djvu-text.h:
6905         
6906         Text search in djvu. Fix for the bug #303415.
6907
6908 2006-02-18  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6909
6910         * configure.ac:
6911         * shell/ev-window.c: (ev_window_cmd_save_as):
6912         
6913         Ask filechooser to confirm overwrite. Fix for the bug #328266.
6914         Thanks to Gary Coady <gary@lyranthe.org>
6915
6916 2006-02-18  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6917
6918         * shell/ev-print-job.c: (idle_print_handler):
6919         
6920         Inverse order printing, bug #320919.
6921
6922 2006-02-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6923
6924         * data/evince-toolbar.xml:
6925         * shell/ev-window.c:
6926         
6927         Allow to add sidebar checkbutton on toolbar. Fix
6928         for the bug #144577.
6929
6930 2006-02-16  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6931
6932         * ps/ps-document.c: (push_pixbuf), (setup_pixmap):
6933         
6934         Add checks that have sense for empty ps document.
6935
6936 2006-02-15  Luca Ferretti <elle.uca@libero.it>
6937
6938         * configure.ac: Include PS in mime types list. 
6939
6940 2006-02-13  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6941
6942         * configure.ac:
6943         * ps/gsdefaults.c: (gtk_gs_defaults_get_paper_sizes):
6944         * ps/gsdefaults.h:
6945         * ps/ps-document.c: (start_interpreter), (ps_document_load):
6946         
6947         Runtime check for gs interpreter. Fix for the bug #320868.
6948         Thanks to Antoine Dopffer antoine.dopffer@free.fr
6949
6950 2006-02-12  Carlos Garcia Campos  <carlosgc@gnome.org>
6951
6952         * shell/ev-application.c: 
6953
6954         Use DBUS_NAME_FLAG_DO_NOT_QUEUE flag in RequestName method when
6955         dbus>=0.60, so that the request is not queued. 
6956
6957 2006-02-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6958
6959         * configure.ac:
6960         * shell/Makefile.am:
6961         * shell/ev-sidebar-links.c: (print_section_cb):
6962         * shell/ev-utils.c:
6963         * shell/ev-utils.h:
6964         * shell/ev-window.c: (update_action_sensitivity),
6965         (ev_window_close_dialogs), (ev_window_print):
6966         * shell/ev-window.h:
6967         
6968         Make printing support optional. Patch from Eduardo de Barros Lima
6969         <eduardo.lima@indt.org.br> for the bug #330546.
6970
6971 2006-02-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6972
6973         * shell/ev-view-private.h:
6974         * shell/ev-view.c: (ev_view_expose_event), (ev_view_set_loading),
6975         (ev_view_set_document):
6976         * shell/ev-view.h:
6977         * shell/ev-window.c: (ev_window_load_job_cb),
6978         (ev_window_xfer_job_cb), (ev_window_open_uri), (ev_window_dispose),
6979         (ev_window_init):
6980
6981         Draw Loading message during xfer job. Fix for the bug #329495.
6982
6983 2006-02-03  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6984
6985         * comics/comics-document.c: (comics_regex_quote),
6986         (comics_document_load), (extract_argv):
6987         
6988         Correcly quote regexp before passing it to unzip.
6989
6990 2006-02-01  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
6991
6992         * shell/ev-page-cache.c: (build_height_to_page),
6993         (ev_page_cache_new), (ev_page_cache_get_max_label_chars),
6994         (ev_page_cache_get_dual_even_left):
6995         * shell/ev-page-cache.h:
6996         * shell/ev-view.c: (view_update_range_and_current_page),
6997         (get_page_y_offset), (get_page_extents):
6998         
6999         Place even pages to the left if document has less then
7000         two pages. Fix for the bug #328856.
7001
7002 2006-01-31  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7003
7004         * thumbnailer/evince-thumbnailer-comics.schemas.in:
7005         
7006         Correct comics scheme. This make evince create thumbnails
7007         for comic books. Fix for the bug 329088.
7008
7009 2006-01-31  Christopher Aillon  <caillon@redhat.com>
7010
7011         * data/evince-password.glade: Don't explicitly set
7012         invisible_char to the current default value in case
7013         the default changes; let GTK+ do its magic.
7014
7015 2006-01-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7016
7017         * shell/ev-job-xfer.c: (ev_job_xfer_run): Append
7018         real filename to tmp filename since often document
7019         type is determined by extension.
7020
7021 2006-01-24  Ricardo Markiewicz  <rmarkie@fi.uba.ar>
7022
7023         * shell/ev-view.c: (add_scroll_binding_keypad),
7024         (ev_view_binding_activated), (ev_view_class_init):
7025         
7026         Add keybindings for percision-scrolling of display area. 
7027         Fix for the bug #314072.
7028
7029 2006-01-21  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7030
7031         * data/evince.desktop.in.in:
7032         
7033         Add GTK to the list of categories. Fix for the bug #328034.
7034
7035 2006-01-21  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7036
7037         * shell/ev-application.c: (ev_application_shutdown),
7038         (ev_application_set_chooser_uri), (ev_application_get_chooser_uri):
7039         * shell/ev-application.h:
7040         * shell/ev-window.c: (file_open_dialog_response_cb),
7041         (ev_window_cmd_file_open):
7042         
7043         Save last uri in file chooser dialog. Fix for the bug #327950.
7044
7045 2006-01-20  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7046
7047         * NEWS:
7048         * README:
7049         
7050         Final update for release 0.5.0
7051         
7052         * shell/Makefile.am:
7053         
7054         Remove disable deprecated until we'll require libgnome-2.13.7
7055         and port to GOption argument parsing. See bug 327518.
7056
7057 2006-01-19  Jani Monoses <jani.monoses@gmail.com>
7058
7059         * comics/comics-document.c: (comics_document_save):
7060         * djvu/djvu-document.c: (djvu_document_save):
7061         * dvi/dvi-document.c: (dvi_document_save):
7062         * lib/ev-file-helpers.c: (ev_tmp_filename), (ev_xfer_uri_simple):
7063         * lib/ev-file-helpers.h:
7064         * pixbuf/pixbuf-document.c: (pixbuf_document_save):
7065         * tiff/tiff-document.c: (tiff_document_save):
7066         
7067         Use common save function for backends.
7068
7069 2006-01-18  Jani Monoses <jani.monoses@gmail.com>
7070
7071         * backend/ev-document-types.c:
7072         
7073         Fix crash on saving pixbuf.
7074
7075 2006-01-18  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7076
7077         * cut-n-paste/recent-files/egg-recent-item.c:
7078         (get_uri_shortname_for_display), (egg_recent_item_get_short_name):
7079         * cut-n-paste/recent-files/egg-recent-model.c: (parse_info_init),
7080         (parse_info_free), (valid_element), (start_element_handler),
7081         (end_element_handler), (text_handler), (egg_recent_model_filter),
7082         (egg_recent_model_monitor_cb), (egg_recent_model_poll_timeout),
7083         (egg_recent_model_monitor), (egg_recent_model_read),
7084         (egg_recent_model_open_file), (egg_recent_model_lock_file),
7085         (egg_recent_model_unlock_file), (egg_recent_model_finalize),
7086         (egg_recent_model_set_property), (egg_recent_model_class_init),
7087         (egg_recent_model_init), (egg_recent_model_add_full),
7088         (egg_recent_model_delete), (egg_recent_model_get_list),
7089         (egg_recent_model_clear), (egg_recent_model_clear_mime_filter),
7090         (egg_recent_model_set_filter_mime_types),
7091         (egg_recent_model_clear_group_filter),
7092         (egg_recent_model_set_filter_groups),
7093         (egg_recent_model_clear_scheme_filter),
7094         (egg_recent_model_set_filter_uri_schemes),
7095         (egg_recent_model_remove_expired):
7096         * cut-n-paste/recent-files/egg-recent-util.c:
7097         (egg_recent_util_get_icon):
7098         * cut-n-paste/recent-files/egg-recent-util.h:
7099         * cut-n-paste/recent-files/egg-recent-view-uimanager.c:
7100         (connect_proxy_cb), (egg_recent_view_uimanager_set_list),
7101         (egg_recent_view_uimanager_set_empty_list), (model_changed_cb),
7102         (egg_recent_view_uimanager_set_property),
7103         (egg_recent_view_uimanager_get_property),
7104         (egg_recent_view_uimanager_class_init),
7105         (egg_recent_view_uimanager_init),
7106         (egg_recent_view_uimanager_set_label_width),
7107         (egg_recent_view_uimanager_get_label_width):
7108         * cut-n-paste/recent-files/egg-recent-view-uimanager.h:
7109         * cut-n-paste/toolbar-editor/egg-editable-toolbar.c:
7110         * cut-n-paste/toolbar-editor/egg-editable-toolbar.h:
7111         * cut-n-paste/toolbar-editor/egg-toolbar-editor.c:
7112         * cut-n-paste/toolbar-editor/egg-toolbars-model.c:
7113         * cut-n-paste/toolbar-editor/egg-toolbars-model.h:
7114         
7115         Update from libegg.
7116
7117 2006-01-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7118
7119         * shell/ev-page-cache.c: (build_height_to_page),
7120         (ev_page_cache_get_height_to_page):
7121         * shell/ev-page-cache.h:
7122         * shell/ev-view.c: (view_update_range_and_current_page),
7123         (get_page_y_offset), (get_page_extents), (ev_view_next_page),
7124         (ev_view_previous_page):
7125         
7126         Dual mode places even pages to the left. Fix for the bug #309393.
7127
7128         * shell/ev-view.h:
7129         * shell/ev-window.c: (update_action_sensitivity),
7130         (setup_view_from_metadata), (view_menu_popup_cb):
7131         
7132         Don't restore presentation in empty windows, more intelligent
7133         next page behaviour in dual mode.
7134
7135         * shell/ev-pixbuf-cache.c: (check_job_size_and_unref),
7136         (ev_pixbuf_cache_clear_job_sizes):
7137         
7138         Cleanup job callback on removal. Fix for the bug #325886.
7139
7140 2006-01-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7141
7142         * ps/ps.c: (psscan):
7143         
7144         Commit workaround Mozilla problem. Fix for the bug #325919
7145         
7146         * shell/ev-metadata-manager.c: (parse_value), (parseItem),
7147         (save_item):
7148         
7149         Fix for year 2038 problem.
7150
7151 2006-01-06  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7152
7153         * shell/ev-window.c: (setup_document_from_metadata),
7154         (ev_window_cmd_view_reload):
7155
7156         Clamp page recieved from metadata in valid values. Fix
7157         for the bug #325986.
7158
7159 2006-01-06  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7160
7161         * MAINTAINERS: 
7162         Add MAINTAINERS as requested on desktop-devel-list.
7163
7164 2006-01-06  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7165
7166         * backend/ev-document-factory.c: (gdk_pixbuf_mime_type_list),
7167         (mime_type_supported_by_gdk_pixbuf),
7168         (ev_document_factory_get_mime_types),
7169         (ev_document_factory_get_all_mime_types):
7170         
7171         Don't add pixbuf mime types if pixbuf backend is disabled.
7172         
7173         * shell/ev-application.c: (ev_application_get_uri_window):
7174         
7175         Fix for the bug 325815 - unhandled MIME type message doesn't 
7176         appear a second time. 
7177         
7178         * shell/ev-document-types.c: (ev_document_types_add_filters):
7179         * shell/ev-window.c: (page_changed_cb), (ev_window_setup_document),
7180         (password_dialog_response), (ev_window_popup_password_dialog),
7181         (ev_window_load_job_cb), (ev_window_sidebar_position_change_cb),
7182         (ev_window_run_fullscreen), (ev_window_stop_fullscreen),
7183         (ev_window_run_presentation), (ev_window_stop_presentation),
7184         (save_sizing_mode), (ev_window_zoom_changed_cb),
7185         (ev_window_continuous_changed_cb), (ev_window_rotation_changed_cb),
7186         (ev_window_dual_mode_changed_cb),
7187         (ev_window_sidebar_current_page_changed_cb),
7188         (ev_window_sidebar_visibility_changed_cb), (ev_window_dispose),
7189         (window_state_event_cb), (window_configure_event_cb):
7190         
7191         Cleanup additional uris holded by EvWindow.
7192
7193 2006-01-06  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7194
7195         * shell/ev-view.c: (ev_view_scroll), (ev_view_previous_page),
7196         (ev_view_can_previous_page), (ev_view_can_next_page):
7197         * shell/ev-view.h:
7198         * shell/ev-window.c: (update_action_sensitivity):
7199         
7200         Two page scrolling with Space and PageUp in dual mode. Second fix 
7201         for the bug #316608.
7202
7203 2006-01-05  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7204
7205         * shell/ev-view.c: (scroll_to_current_page):
7206         
7207         Correctly clamp adjustment value. Fix for the bug
7208         #325808.
7209
7210 2006-01-04  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7211
7212         * shell/ev-sidebar-links.c: (print_section_cb):
7213         * shell/ev-window.c: (ev_window_get_uri),
7214         (ev_window_close_dialogs), (ev_window_open_uri), (ev_window_print),
7215         (ev_window_print_dialog_response_cb), (ev_window_print_range),
7216         (ev_window_dispose):
7217         
7218         Make print dialog non-modal. Fix for the bug #325622.
7219
7220 2006-01-04  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7221
7222         * shell/ev-metadata-manager.c:
7223         * shell/ev-utils.c: (using_pdf_printer),
7224         (using_postscript_printer), (load_print_config_from_file),
7225         (save_print_config_to_file):
7226         * shell/ev-utils.h:
7227         * shell/ev-window.c: (update_sizing_buttons), (page_changed_cb),
7228         (update_sidebar_visibility), (setup_sidebar_from_metadata),
7229         (setup_view_from_metadata), (ev_window_setup_document),
7230         (ev_window_load_job_cb), (ev_window_sidebar_position_change_cb),
7231         (ev_window_run_fullscreen), (ev_window_stop_fullscreen),
7232         (ev_window_run_presentation), (ev_window_stop_presentation),
7233         (save_sizing_mode), (ev_window_zoom_changed_cb),
7234         (ev_window_continuous_changed_cb), (ev_window_rotation_changed_cb),
7235         (ev_window_dual_mode_changed_cb),
7236         (ev_window_sidebar_current_page_changed_cb),
7237         (ev_window_sidebar_visibility_changed_cb), (ev_window_dispose),
7238         (window_state_event_cb), (window_configure_event_cb),
7239         (ev_window_init):
7240         
7241         Setting saving behaviour fixes.
7242
7243 2005-12-30  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7244
7245         * configure.ac:
7246         
7247         Make antialiasing gs options better and allow
7248         to change them during configure. Fix for the 
7249         bug #319049.
7250
7251 2005-12-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7252
7253         * shell/ev-window.c: (setup_view_from_metadata):
7254         
7255         Remember if last window was maximized. Fix for the
7256         bug #323797.
7257
7258 2005-12-28  Abel Cheung  <maddog@linuxhall.org>
7259
7260         * configure.ac: Added "zh_HK" to ALL_LINGUAS.
7261
7262 2005-12-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7263
7264         * backend/ev-link.c: (ev_link_get_page), (ev_link_init):
7265         * shell/ev-page-action.c: (build_new_tree_cb):
7266         * shell/ev-sidebar-links.c: (links_page_num_func),
7267         (update_page_callback_foreach), (update_page_callback):
7268         * shell/ev-view.c: (scroll_to_current_page):
7269         
7270         Fix for the bug #325067 with more intelligent selection
7271         of current link in sidebar. Make sidebar handle links
7272         of FITR-like type more correctly.
7273
7274         * dvi/pixbuf-device.c: (dvi_pixbuf_draw_rule),
7275         (dvi_pixbuf_put_pixel):
7276         
7277         Fix memory consumtion with disabled alpha channel.
7278
7279 2005-12-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7280
7281         * data/evince-ui.xml:
7282         * shell/ev-window.c: (view_menu_popup_cb),
7283         (ev_popup_cmd_open_link), (ev_window_init):
7284         
7285         Update context menu for internal links. Fix for the bug
7286         #325066.
7287
7288 2005-12-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7289
7290         * shell/ev-view.c: (ev_view_popup_menu), (ev_view_class_init):
7291         
7292         Bind context menu to keyboard also. Fix for the bug
7293         #325065.
7294
7295 2005-12-27  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7296
7297         * shell/ev-view.c: (selection_scroll_timeout_cb):
7298         
7299         Horizontal scroll on selection also.
7300
7301 2005-12-26  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7302
7303         * shell/ev-metadata-manager.c: (parse_value):
7304         * shell/ev-view.c: (goto_xyz_link):
7305         
7306         Correct zoom setup and metadata save broken in 
7307         some locales.
7308
7309 2005-12-26  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7310
7311         * shell/ev-view-private.h:
7312         * shell/ev-view.c: (scroll_to_current_page),
7313         (view_set_adjustment_values), (goto_fitr_link), (goto_fitv_link),
7314         (goto_fith_link), (goto_fit_link), (goto_xyz_link),
7315         (page_changed_cb), (ev_view_set_continuous),
7316         (ev_view_set_dual_page), (ev_view_set_presentation):
7317         
7318         Delay scroll until allocation to correctly position page. Fix
7319         for the bug #317334.
7320
7321 2005-12-25  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7322
7323         * NEWS:
7324         * configure.ac:
7325         
7326         Update NEWS and require poppler 0.5.0.
7327
7328 2005-12-25  Carlos Garcia Campos  <carlosgc@gnome.org>
7329         
7330         * data/evince-ui.xml:
7331         * shell/ev-view-private.h:
7332         * shell/ev-view.c: (ev_view_get_link_at_location),
7333         (handle_link_over_xy), (ev_view_button_press_event),
7334         (ev_view_button_release_event), (ev_view_class_init):
7335         * shell/ev-window.c: (view_menu_popup_cb), (ev_window_dispose),
7336         (ev_popup_cmd_open_link), (ev_popup_cmd_copy_link_address),
7337         (ev_window_init):
7338         
7339         Implement right-click context menu.
7340
7341 2005-12-25  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7342
7343         * djvu/djvu-document.c: (djvu_document_thumbnails_get_thumbnail):
7344         * dvi/pixbuf-device.c: (dvi_pixbuf_create_image),
7345         (mdvi_pixbuf_device_render):
7346         * pdf/ev-poppler.cc:
7347
7348         Don't generate thumbnails with alpha. See bug #324077.
7349         Thanks to Jeroen Zwartepoorte <jeroen.zwartepoorte@gmail.com>.
7350
7351 2005-12-25  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7352
7353         * shell/ev-window.c: (setup_chrome_from_metadata):
7354         
7355         Fix typo that was hiding toolbar.
7356
7357 2005-12-25  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7358
7359         * shell/ev-view-private.h:
7360         * shell/ev-view.c: (ev_view_realize), (selection_update_idle_cb),
7361         (selection_scroll_timeout_cb), (ev_view_motion_notify_event),
7362         (ev_view_button_release_event), (ev_view_destroy):
7363         
7364         Small cleanup and autoscrolling during selection. Thanks to 
7365         Ricardo Markiewicz  <rmarkie@fi.uba.ar>.
7366
7367 2005-12-22  Jani Monoses <jani.monoses@gmail.com>
7368
7369         * configure.ac:
7370         
7371         Correctly check for comics option.
7372
7373 2005-12-21  Eduardo Lima <eduardo.lima@indt.org.br>
7374         * Makefile.am:
7375         * configure.ac:
7376         * backend/Makefile.am:
7377         * backend/ev-document-factory.c:
7378         * shell/ev-document-types.c:
7379
7380         Included option in configure to make ps backend 
7381         compilation optional with --disable-ps.
7382
7383 2005-12-20  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7384
7385         * backend/ev-document-factory.c:
7386         * comics/Makefile.am:
7387         * comics/comics-document.c: (comics_document_load):
7388         * comics/ev-cbr-mime.xml:
7389         * configure.ac:
7390         
7391         Comics mime types are added to shared-mime-info CVS. Now
7392         we don't need to install our own mime types.
7393
7394 2005-12-20  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7395
7396         * shell/ev-window.c:
7397         
7398         Add shortcut for "save a copy" menu entry. Fix for
7399         the bug #324582.
7400
7401 2005-12-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7402
7403         * shell/ev-pixbuf-cache.c: (dispose_cache_job_info),
7404         (job_finished_cb), (new_selection_pixbuf_needed),
7405         (ev_pixbuf_cache_get_selection_pixbuf), (update_job_selection),
7406         (clear_job_selection), (ev_pixbuf_cache_set_selection_list):
7407         
7408         Rework selection job info logic and fix critical warning.
7409
7410 2005-12-17  Abel Cheung  <maddog@linuxhall.org>
7411
7412         * configure.ac: Added "cy" "fa" "mk" "vi" to ALL_LINGUAS.
7413
7414 2005-11-27  Jaap A. Haitsma <jaap@haitsma.org>
7415
7416         * data/evince-ui.xml:
7417         * shell/ev-window.c: (ev_window_set_view_accels_sensitivity):
7418         
7419         Enter as shortcut key for next page. Fix for the bug
7420         #321394.
7421
7422 2005-11-18  Ales Nyakhaychyk  <nab@mail.by>
7423
7424         * configure.ac: Added "be" (Belarusian) to ALL_LINGUAS.
7425
7426 2005-11-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7427
7428         * shell/ev-pixbuf-cache.c: (dispose_cache_job_info),
7429         (job_finished_cb), (copy_job_to_job_info), (add_job_if_needed),
7430         (new_selection_pixbuf_needed),
7431         (ev_pixbuf_cache_get_selection_pixbuf), (update_job_selection),
7432         (clear_job_selection):
7433         
7434         Too early for 0.5. Pixbuf cache code cleaned a bit.
7435
7436 2005-11-14  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7437
7438         * NEWS:
7439         * configure.ac:
7440         
7441         Release 0.5.0 preparation
7442
7443 2005-11-14  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7444
7445         * comics/Makefile.am:
7446         * configure.ac:
7447         * shell/ev-document-types.c: (ev_document_types_add_filters):
7448         
7449         More advanced handling of custom mime type installation.
7450
7451 2005-11-14  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7452
7453         * data/evince.schemas.in:
7454         * shell/ev-metadata-manager.c: (value_free),
7455         (ev_metadata_manager_get_last), (ev_metadata_manager_set_last),
7456         (ev_metadata_manager_get), (ev_metadata_manager_set):
7457         * shell/ev-metadata-manager.h:
7458         * shell/ev-window.c: (update_chrome_flag),
7459         (ev_window_cmd_focus_page_selector), (update_sidebar_visibility),
7460         (setup_document_from_metadata), (setup_chrome_from_metadata),
7461         (setup_sidebar_from_metadata), (setup_view_from_metadata),
7462         (ev_window_cmd_edit_find), (ev_window_cmd_escape),
7463         (ev_window_view_toolbar_cb),
7464         (ev_window_sidebar_visibility_changed_cb), (find_bar_close_cb),
7465         (view_actions_focus_in_cb), (ev_window_init), (ev_window_new):
7466         
7467         Save last document settings and reuse them for new documents.
7468
7469 2005-11-14  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7470
7471         * Makefile.am:
7472         * backend/Makefile.am:
7473         * backend/ev-document-factory.c:
7474         * backend/ev-document-factory.h:
7475         * comics/Makefile.am:
7476         * comics/comics-document.c: (G_DEFINE_TYPE_WITH_CODE),
7477         (comics_document_load), (comics_document_save),
7478         (comics_document_get_n_pages), (comics_document_get_page_size),
7479         (get_page_size_area_prepared_cb), (comics_document_render_pixbuf)       (render_pixbuf_size_prepared_cb), (comics_document_finalize),
7480         (comics_document_class_init), (comics_document_can_get_text),
7481         (comics_document_get_info), (comics_document_document_iface_init),
7482         (comics_document_init), (get_supported_image_extensions),
7483         (comics_document_thumbnails_get_geometry),
7484         (comics_document_thumbnails_get_thumbnail),
7485         (comics_document_thumbnails_get_dimensions),
7486         (comics_document_document_thumbnails_iface_init), (extract_argv):
7487         * comics/comics-document.h:
7488         * comics/ev-cbr-mime.xml:
7489         * configure.ac:
7490         * po/POTFILES.in:
7491         * shell/ev-application.c: (ev_application_register_service):
7492         * shell/ev-document-types.c: (ev_document_types_add_filters):
7493         * thumbnailer/Makefile.am:
7494         * thumbnailer/evince-thumbnailer-comics.schemas.in:
7495         
7496         New CBR/CBZ backend for comic books.
7497
7498 2005-11-10  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7499
7500         * shell/main.c: (load_files_remote):
7501
7502         Thanks to Robert McQueen <robot101@debian.org>. Dbus
7503         warning on startup of second instance is fixed. It
7504         is bug #320353.
7505
7506 2005-10-30  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7507
7508         * shell/ev-window.c: (ev_window_finalize):
7509         
7510         Fix double free that cause crash.
7511
7512 2005-10-29  Bastien Nocera <hadess@hadess.net>
7513
7514         * tiff/tiff-document.c: (tiff_document_load):
7515         
7516         Fix memory leak.
7517
7518 2005-10-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7519
7520         * po/POTFILES.in:
7521         * shell/Makefile.am:
7522         * shell/ev-view-accessible.c: (ev_view_accessible_get_priv),
7523         (ev_view_accessible_free_priv), (ev_view_accessible_class_init),
7524         (ev_view_accessible_get_text),
7525         (ev_view_accessible_get_character_at_offset),
7526         (ev_view_accessible_get_text_before_offset),
7527         (ev_view_accessible_get_text_at_offset),
7528         (ev_view_accessible_get_text_after_offset),
7529         (ev_view_accessible_get_character_count),
7530         (ev_view_accessible_get_caret_offset),
7531         (ev_view_accessible_set_caret_offset),
7532         (ev_view_accessible_get_run_attributes),
7533         (ev_view_accessible_get_default_attributes),
7534         (ev_view_accessible_get_character_extents),
7535         (ev_view_accessible_get_offset_at_point),
7536         (ev_view_accessible_get_n_selections),
7537         (ev_view_accessible_get_selection),
7538         (ev_view_accessible_add_selection),
7539         (ev_view_accessible_remove_selection),
7540         (ev_view_accessible_set_selection),
7541         (ev_view_accessible_text_iface_init),
7542         (ev_view_accessible_idle_do_action),
7543         (ev_view_accessible_action_do_action),
7544         (ev_view_accessible_action_get_n_actions),
7545         (ev_view_accessible_action_get_description),
7546         (ev_view_accessible_action_get_name),
7547         (ev_view_accessible_action_set_description),
7548         (ev_view_accessible_action_iface_init),
7549         (ev_view_accessible_get_type), (ev_view_accessible_new),
7550         (ev_view_accessible_factory_get_accessible_type),
7551         (ev_view_accessible_factory_create_accessible),
7552         (ev_view_accessible_factory_class_init),
7553         (ev_view_accessible_factory_get_type):
7554         * shell/ev-view-accessible.h:
7555         * shell/ev-view-private.h:
7556         * shell/ev-view.c: (ev_view_get_accessible), (ev_view_class_init):
7557         * shell/ev-view.h:
7558         
7559         Initial accessibility support.
7560
7561 2005-10-27  Erdal Ronahi  <erdal.ronahi@gmail.com>
7562
7563         * configure.ac: Added ku (Kurdish) to ALL_LINGUAS
7564
7565 2005-10-26  Hubert Figuiere <hfiguiere@teaser.fr>
7566
7567         * shell/ev-print-job.c: (idle_print_handler):
7568         
7569         Fix for bug Bug 318916: Printing multiple pages.
7570
7571 2005-10-20  Runa Bhattacharjee  <runa@bengalinux.org>
7572
7573         * configure.ac: Added "bn" (Bengali) to ALL_LINGUAS.
7574
7575 2005-10-18  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7576
7577         * pdf/ev-poppler.cc:
7578         
7579         Thumnail dimensions unified with other backends.
7580         
7581         * shell/ev-window-title.c: (ev_window_title_update):
7582         
7583         Fix warning.
7584
7585 2005-10-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7586
7587         * data/ev-stock-zoom-fit-width.png:
7588         
7589         Remove unused file.
7590
7591 2005-10-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7592
7593         * configure.ac:
7594         * djvu/djvu-document.c: (djvu_document_load), (djvu_document_save),
7595         (djvu_document_finalize):
7596         * dvi/dvi-document.c: (dvi_document_load), (dvi_document_save),
7597         (dvi_document_finalize):
7598         * pixbuf/pixbuf-document.c: (pixbuf_document_load),
7599         (pixbuf_document_save), (pixbuf_document_finalize):
7600         * tiff/tiff-document.c: (tiff_document_load), (tiff_document_save),
7601         (tiff_document_finalize):
7602         
7603         Save a copy implemented for various backends.
7604
7605 2005-10-17  Daniel Gryniewicz <dang@gentoo.org>
7606
7607         * configure.ac:
7608         
7609         Don't link with ltiff if tiff is disabled.
7610
7611 2005-10-14  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7612
7613         * pdf/GDKSplashOutputDev.cc:
7614         * pdf/GDKSplashOutputDev.h:
7615         * pdf/Thumb.cc:
7616         * pdf/Thumb.h:
7617         * pdf/pdf-document.cc:
7618         * pdf/pdf-document.h:
7619         * pdf/test-gdk-output-dev.cc:
7620         
7621         Remove old unused files.
7622
7623 2005-10-12  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7624
7625         * shell/ev-window.c: (ev_window_setup_document):
7626         
7627         Fixed warnings on reload and probably crash reason.
7628
7629 2005-10-12  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7630
7631         * properties/ev-properties-view.c:
7632         (ev_properties_view_format_date):
7633         
7634         Check if date is invalid. Fix for bug 318134.
7635
7636 2005-10-02  Wouter Bolsterlee <uws+gnome@xs4all.nl>
7637
7638         * shell/ev-window-title.c:
7639         
7640         Add .indd files (Adobe Indesign) to the list of "bad
7641         extensions".
7642
7643 2005-10-02  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7644
7645         * data/evince-ui.xml:
7646         * shell/ev-window.c: (ev_window_set_view_accels_sensitivity):
7647         
7648         Add <ctrl>KP_Add and <ctrl>KP_Substract bindings.
7649
7650 2005-09-27  Christian Persch  <chpe@cvs.gnome.org>
7651
7652         * shell/ev-window.c: (launch_link), (launch_external_uri),
7653         (view_external_link_cb):
7654
7655         URL-escape link before passing it to gnome_vfs_url_show.
7656
7657 2005-09-27  Carlos Garcia Campos  <carlosgc@gnome.org>
7658
7659         * shell/ev-view.[ch], shell/ev-window.c: Disable copy action when
7660         there isn't text selected.
7661
7662 2005-09-27  Marco Pesenti Gritti  <mpg@redhat.com>
7663
7664         * shell/ev-view.c: (handle_link_over_xy):
7665
7666         Check tooltip is valid utf8 before showing it
7667
7668 2005-09-27  Carlos Garcia Campos  <carlosgc@gnome.org>
7669
7670         * shell/ev-view.c: Allow drag and drop of text. Fixes #316772
7671
7672 2005-09-27  Christian Persch  <chpe@cvs.gnome.org>
7673
7674         * shell/ev-window-title.c: (ev_window_title_update):
7675
7676         Guard against using g_strstrip on NULL. Fixes bug #317291.
7677
7678 2005-09-26  Marco Pesenti Gritti  <mpg@redhat.com>
7679
7680         * pdf/ev-poppler.cc:
7681
7682         Show title even for unknown links
7683
7684 2005-09-26  Marco Pesenti Gritti  <mpg@redhat.com>
7685
7686         * shell/ev-window-title.c: (ev_window_title_update):
7687
7688         Strip the title string
7689
7690 2005-09-26  Marco Pesenti Gritti  <mpg@redhat.com>
7691
7692         * shell/ev-window-title.c:
7693
7694         Add .rtf to the bad extensions list
7695
7696 2005-09-26  Marco Pesenti Gritti  <mpg@redhat.com>
7697
7698         * shell/ev-view.c: (doc_point_to_view_point), (goto_fitr_link),
7699         (goto_fitv_link), (goto_fith_link), (goto_xyz_link):
7700
7701         Ignore link coordinates if they are outside page bounds
7702
7703 2005-09-26  Marco Pesenti Gritti  <mpg@redhat.com>
7704
7705         * backend/ev-link.c: (ev_link_type_get_type),
7706         (ev_link_get_filename), (ev_link_get_params),
7707         (ev_link_get_property), (ev_link_set_property),
7708         (ev_window_dispose), (ev_link_class_init), (ev_link_new_launch):
7709         * backend/ev-link.h:
7710         * pdf/ev-poppler.cc:
7711         * shell/ev-view.c: (ev_view_goto_link), (ev_view_class_init):
7712         * shell/ev-window.c: (launch_link), (view_external_link_cb),
7713         (ev_window_init):
7714
7715         Implement launch links. Delegate external link opening to
7716         the window.
7717
7718 2005-09-24  Marco Pesenti Gritti  <mpg@redhat.com>
7719
7720         * backend/ev-link.c: (ev_link_type_get_type), (ev_link_get_bottom),
7721         (ev_link_get_right), (ev_link_get_property),
7722         (ev_link_set_property), (ev_link_class_init),
7723         (ev_link_new_page_fitv), (ev_link_new_page_fitr):
7724         * backend/ev-link.h:
7725         * pdf/ev-poppler.cc:
7726         * shell/ev-view.c: (goto_fitr_link), (ev_view_goto_link):
7727
7728         Implement fitr links
7729
7730 2005-09-24  Marco Pesenti Gritti  <mpg@redhat.com>
7731
7732         * shell/ev-view.c: (ev_view_get_width), (ev_view_get_height),
7733         (goto_fitv_link), (goto_fith_link), (goto_fit_link),
7734         (ev_view_goto_link), (ev_view_size_request_continuous_dual_page),
7735         (ev_view_size_request_continuous),
7736         (ev_view_size_request_dual_page),
7737         (ev_view_size_request_single_page), (ev_view_size_allocate),
7738         (ev_view_zoom_for_size_continuous_and_dual_page),
7739         (ev_view_zoom_for_size_continuous),
7740         (ev_view_zoom_for_size_dual_page),
7741         (ev_view_zoom_for_size_single_page), (ev_view_set_zoom_for_size),
7742         (ev_sizing_mode_get_type):
7743         * shell/ev-view.h:
7744         * shell/ev-window.c: (ev_window_sizing_mode_changed_cb):
7745
7746         Do not use modes for link, we need to calculate size ad hoc.
7747         Still not perfect because of the usual scrollbar issues grrr.
7748
7749 2005-09-24  Marco Pesenti Gritti  <mpg@redhat.com>
7750
7751         * backend/ev-link.c: (ev_link_type_get_type),
7752         (ev_link_new_page_fith), (ev_link_new_page_fitv):
7753         * backend/ev-link.h:
7754         * pdf/ev-poppler.cc:
7755         * shell/ev-view.c: (goto_fitv_link), (goto_fith_link),
7756         (ev_view_goto_link), (ev_view_size_request_continuous_dual_page),
7757         (ev_view_size_request_continuous),
7758         (ev_view_size_request_dual_page),
7759         (ev_view_size_request_single_page), (ev_view_size_allocate),
7760         (zoom_for_size_fit_height),
7761         (ev_view_zoom_for_size_continuous_and_dual_page),
7762         (ev_view_zoom_for_size_continuous),
7763         (ev_view_zoom_for_size_dual_page),
7764         (ev_view_zoom_for_size_single_page), (ev_view_set_zoom_for_size),
7765         (ev_sizing_mode_get_type):
7766         * shell/ev-view.h:
7767         * shell/ev-window.c: (ev_window_sizing_mode_changed_cb):
7768
7769         Implement FIT_HEIGHT mode (only for links).
7770         Implement FITH links
7771
7772 2005-09-24  Marco Pesenti Gritti  <mpg@redhat.com>
7773
7774         * shell/ev-window-title.c: (get_filename_from_uri),
7775         (ev_window_title_sanitize_extension), (ev_window_title_update),
7776         (ev_window_title_set_document), (ev_window_title_set_uri),
7777         (ev_window_title_free):
7778         * shell/ev-window-title.h:
7779         * shell/ev-window.c: (ev_window_setup_document),
7780         (ev_window_popup_password_dialog):
7781
7782         Refactor window title building while fixing it for
7783         password documents.
7784
7785 2005-09-24  Marco Pesenti Gritti  <mpg@redhat.com>
7786
7787         * pdf/ev-poppler.cc:
7788
7789         Escape link title before setting it in the model
7790
7791 2005-09-23  Marco Pesenti Gritti  <mpg@redhat.com>
7792
7793         * shell/ev-application.c: (removed_from_session), (save_session),
7794         (init_session), (ev_application_get_empty_window),
7795         (ev_application_init), (ev_application_get_windows):
7796         * shell/ev-application.h:
7797         * shell/ev-window.c: (ev_window_finalize):
7798
7799         Add a function to retrieve window list and share it where
7800         necessary.
7801         Implement session handling, works pretty well thanks to the
7802         metadata system.
7803
7804 2005-09-22  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7805
7806         * shell/ev-password.c: (ev_password_item_created_callback),
7807         (ev_password_dialog_save_password):
7808         
7809         Fix for bug 316972. Use async gnome-keyring API.
7810
7811 2005-09-22  Christian Persch  <chpe@cvs.gnome.org>
7812
7813         * shell/ev-view.c: (ev_view_scroll_event), (ev_view_class_init):
7814         Remove unused unrealize handler. Add scroll handling to
7815         ev_view_scroll_event for presentation mode (bug #316708),
7816         and fix the event state checks there.
7817
7818 2005-09-22  Marco Pesenti Gritti  <mpg@redhat.com>
7819
7820         * shell/ev-page-action.c: (page_changed_cb):
7821
7822         "marco, maybe we should be crazy and jump right to 6! :)"
7823
7824         Bryan Clark, Sep 2005
7825
7826 2005-09-22  Marco Pesenti Gritti  <mpg@redhat.com>
7827
7828         * ps/ps-document.c: (save_document), (ps_document_save),
7829         (ps_document_ps_export_begin), (ps_document_ps_export_do_page),
7830         (ps_document_ps_export_end):
7831
7832         Fix unstructured documents save and print
7833
7834 2005-09-22  Marco Pesenti Gritti  <mpg@redhat.com>
7835
7836         * shell/ev-application.c: (ev_application_open_uri):
7837
7838         Fix window size persistance
7839
7840 2005-09-22  Marco Pesenti Gritti  <mpg@redhat.com>
7841
7842         * shell/ev-view.c: (ev_view_button_release_event):
7843
7844         Based on a patch from carlosgc@gnome.org. Mouse buttons
7845         switch pages in presentation mode.
7846
7847 2005-09-19  Marco Pesenti Gritti  <mpg@redhat.com>
7848
7849         * shell/ev-page-cache.c: (ev_page_cache_get_size):
7850
7851         Dont cast to int before scaling
7852
7853 2005-09-19  Marco Pesenti Gritti  <mpg@redhat.com>
7854
7855         * backend/ev-link.c: (ev_link_type_get_type),
7856         (ev_link_new_page_xyz), (ev_link_new_page_fit),
7857         (ev_link_new_page_fith):
7858         * backend/ev-link.h:
7859         * pdf/ev-poppler.cc:
7860         * shell/ev-view.c: (goto_fith_link), (ev_view_goto_link):
7861
7862         Implement FIT and FITH links
7863
7864 2005-09-19  Marco Pesenti Gritti  <mpg@redhat.com>
7865
7866         * pdf/ev-poppler.cc:
7867
7868         Return 0 results when search is not in progress.
7869
7870         * shell/ev-window.c: (ev_window_cmd_go_previous_page),
7871         (ev_window_cmd_go_next_page), (find_bar_search_changed_cb):
7872
7873         Update menu sensitivity when cancelling search
7874
7875 2005-09-19  Marco Pesenti Gritti  <mpg@redhat.com>
7876
7877         * shell/ev-view.c: (ev_view_can_find_next):
7878
7879         Take all pages in consideration, not just current one
7880
7881 2005-09-19  Marco Pesenti Gritti  <mpg@redhat.com>
7882
7883         * shell/ev-page-cache.c:
7884         * shell/ev-page-cache.h:
7885         * shell/ev-view.c: (ev_view_binding_activated),
7886         (ev_view_next_page), (ev_view_previous_page),
7887         (ev_sizing_mode_get_type):
7888         * shell/ev-view.h:
7889         * shell/ev-window.c: (ev_window_cmd_go_previous_page),
7890         (ev_window_cmd_go_next_page):
7891
7892         Move page next/previous functions from page chace to
7893         view and change it to move by 2 page steps in dual mode.
7894
7895 2005-09-19  Marco Pesenti Gritti  <mpg@redhat.com>
7896
7897         * shell/ev-window.c: (update_sidebar_visibility),
7898         (setup_sidebar_from_metadata), (ev_window_setup_document),
7899         (setup_view_from_metadata):
7900
7901         Show the index by default when there is one     
7902
7903 2005-09-19  Marco Pesenti Gritti  <mpg@redhat.com>
7904
7905         * shell/ev-window-title.c: (ev_window_title_set_document):
7906
7907         Missing null check
7908
7909 2005-09-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7910
7911         * shell/ev-view.c: (view_update_range_and_current_page):
7912         
7913         Allow display of last odd page in dual view. Fix for 316347.
7914
7915 2005-09-17  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
7916
7917         * shell/ev-window.c: (ev_window_cmd_edit_toolbar):
7918         
7919         Make close button default. Fix for 316383.
7920
7921 2005-09-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7922
7923         * shell/ev-properties-dialog.c: (ev_properties_dialog_init):
7924         
7925         Mark close button as default. Fix for 316381.
7926
7927 2005-09-16  Marco Pesenti Gritti  <mpg@redhat.com>
7928
7929         * backend/ev-link.c: (ev_link_class_init):
7930
7931         Allow negative doubles in left/top properties
7932
7933 2005-09-16  Marco Pesenti Gritti  <mpg@redhat.com>
7934
7935         * shell/ev-window.c:
7936
7937         Remove a bunch of strings that was used only
7938         by the statusbar.
7939
7940 2005-09-16  Marco Pesenti Gritti  <mpg@redhat.com>
7941
7942         * shell/ev-window-title.c: (get_filename_from_uri),
7943         (ev_window_title_set_document):
7944
7945         When title has a confusing extension, show also
7946         the document filename inside ()
7947
7948 2005-09-16  Marco Pesenti Gritti  <mpg@redhat.com>
7949
7950         * shell/Makefile.am:
7951         * shell/ev-window-title.c: (ev_window_title_new),
7952         (ev_window_title_update), (ev_window_title_set_type),
7953         (ev_window_title_set_document), (ev_window_title_free):
7954         * shell/ev-window-title.h:
7955         * shell/ev-window.c: (ev_window_setup_document),
7956         (password_dialog_response), (ev_window_popup_password_dialog),
7957         (ev_window_dispose), (ev_window_init):
7958
7959         Factor out and cleanup window title code
7960
7961 2005-09-16  Marco Pesenti Gritti  <mpg@redhat.com>
7962
7963         * shell/ev-window.c: (unable_to_load_dialog_response_cb),
7964         (unable_to_load):
7965
7966         Make dialog transient so it doesnt block other windows
7967
7968 2005-09-13  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7969
7970         * pdf/ev-poppler.cc:
7971         
7972         Fix pdf thumbnails rendering.
7973
7974 2005-09-13  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
7975
7976         * shell/ev-window.c: (fullscreen_set_timeout):
7977         
7978         Increase timeout to hide full screen popup. Bug 
7979         316123. 
7980
7981 2005-09-13  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7982
7983         * data/evince.schemas.in:
7984         * shell/ev-window.c: (update_action_sensitivity):
7985
7986         Allow the user to override document restrictions. Fix for bug
7987         305818.
7988
7989 2005-09-13  Christian Persch  <chpe@cvs.gnome.org>
7990
7991         * shell/ev-window.c: (ev_window_update_fullscreen_popup),
7992         (ev_window_create_fullscreen_popup), (ev_window_screen_changed),
7993         (ev_window_class_init): Fix multihead behaviour of fullscreen
7994         toolbar popup. Fixes bug #315451.
7995
7996 2005-09-13  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
7997
7998         * configure.ac:
7999         * data/evince-password.glade:
8000         * shell/ev-password.c: (ev_password_dialog_set_property),
8001         (ev_password_dialog_finalize), (ev_password_dialog_class_init),
8002         (ev_password_dialog_init), (ev_password_set_bad_password_label),
8003         (ev_password_dialog_entry_changed_cb),
8004         (ev_password_dialog_entry_activated_cb),
8005         (ev_password_dialog_save_password), (ev_password_keyring_found_cb),
8006         (ev_password_search_in_keyring), (ev_password_dialog_get_password),
8007         (ev_password_dialog_set_bad_pass):
8008         * shell/ev-password.h:
8009         * shell/ev-window.c: (password_dialog_response),
8010         (ev_window_popup_password_dialog):
8011         
8012         Support for gnome-keyring for encrypted PDF's.
8013
8014 2005-09-11  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8015
8016         * shell/ev-view.c: (handle_link_over_xy), (ev_view_realize),
8017         (ev_view_motion_notify_event), (ev_view_leave_notify_event),
8018         (ev_view_enter_notify_event), (ev_view_class_init):
8019         
8020         More precise handling of enter_notify/leave_notify events
8021         in EvView. Fix for bug 315470.
8022
8023 2005-09-08  Christopher Aillon  <caillon@redhat.com>
8024
8025         * shell/ev-window.c: (fullscreen_timeout_cb),
8026         (fullscreen_set_timeout), (fullscreen_clear_timeout),
8027         (ev_window_dispose):
8028
8029         leak fix: unref fullscreen_timeout_source before clearing it
8030
8031 2005-09-08  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8032
8033         * configure.ac, dvi/mdvi/Makefile.am: 
8034         
8035         Use lt1 instead lt1lib. Thanks to yselkowitz@users.sourceforge.net
8036
8037 2005-09-08  Marco Pesenti Gritti  <mpg@redhat.com>
8038
8039         * backend/ev-link.c: (ev_link_new_page_xyz):
8040         * pdf/ev-poppler.cc:
8041         * shell/ev-view.c: (goto_xyz_link), (ev_view_goto_link):
8042
8043         Fix some bugs with xyz links, respect zoom
8044
8045 2005-09-08  Marco Pesenti Gritti  <mpg@redhat.com>
8046
8047         * shell/ev-window.c: (page_changed_cb),
8048         (setup_document_from_metadata), (update_sidebar_visibility),
8049         (setup_view_from_metadata), (ev_window_run_fullscreen),
8050         (ev_window_stop_fullscreen), (ev_window_run_presentation),
8051         (ev_window_stop_presentation), (ev_window_continuous_changed_cb),
8052         (ev_window_dual_mode_changed_cb),
8053         (ev_window_sidebar_current_page_changed_cb):
8054
8055         null check uri before setting and getting metadata
8056
8057 2005-09-08  Marco Pesenti Gritti  <mpg@redhat.com>
8058
8059         * dvi/Makefile.am:
8060         * properties/Makefile.am:
8061         * shell/Makefile.am:
8062         * thumbnailer/Makefile.am:
8063
8064         Some build fixes for cygwin. Patch by yselkowitz@users.sourceforge.net
8065
8066 2005-09-08  Marco Pesenti Gritti  <mpg@redhat.com>
8067
8068         * shell/ev-sidebar-links.c: (ev_sidebar_links_class_init),
8069         (selection_changed_callback):
8070         * shell/ev-sidebar-links.h:
8071
8072         Add a signal for link activation.
8073
8074         * shell/ev-view.c: (ev_view_goto_link),
8075         (ev_view_button_release_event):
8076         * shell/ev-view.h:
8077         * shell/ev-window.c: (sidebar_links_link_activated_cb),
8078         (ev_window_init):
8079
8080         Implement the signal so that we can handle all link types.
8081
8082         * shell/ev-page-cache.c:
8083
8084         Remove unused set_link function
8085
8086 2005-09-08  Marco Pesenti Gritti  <mpg@redhat.com>
8087
8088         * lib/ev-tooltip.c: (ev_tooltip_set_position):
8089
8090         Add some space from the cursor, hardcoded but I couldnt
8091         find a better way.
8092
8093 2005-09-07  Marco Pesenti Gritti  <mpg@redhat.com>
8094
8095         * lib/ev-tooltip.c:
8096
8097         Use mozilla style vs gtk style, way better for links.
8098
8099         * shell/ev-view.c: (ev_view_motion_notify_event),
8100         (ev_view_destroy), (ev_view_init):
8101
8102         Deactive tooltip when the link hovered is changed.
8103
8104 2005-09-07  Marco Pesenti Gritti  <mpg@redhat.com>
8105
8106         * backend/ev-document.h:
8107         * backend/ev-link.c: (ev_link_type_get_type), (ev_link_get_top),
8108         (ev_link_get_left), (ev_link_get_zoom), (ev_link_get_property),
8109         (ev_link_set_property), (ev_window_dispose), (ev_link_class_init),
8110         (ev_link_new_page), (ev_link_new_page_xyz):
8111         * backend/ev-link.h:
8112         * pdf/ev-poppler.cc:
8113         * shell/ev-view.c: (doc_point_to_view_point), (scroll_to_xyz_link),
8114         (go_to_link), (tip_from_link):
8115
8116         Implement xyz links, still not functional. Links are a total
8117         mess, will need to refactor and bugfix a lot :(
8118
8119 2005-09-05  Alessio Frusciante  <algol@firenze.linux.it>
8120
8121         * configure.ac: Added "it" (Italian) to ALL_LINGUAS.
8122
8123 2005-09-05  Marco Pesenti Gritti <mpg@redhat.com>
8124
8125         * data/evince-ui.xml:
8126         * data/evince.schemas.in:
8127         * shell/Makefile.am:
8128         * shell/ev-window.c: (update_chrome_visibility),
8129         (password_dialog_response), (ev_window_load_job_cb),
8130         (ev_window_xfer_job_cb), (ev_window_open_uri),
8131         (ev_window_class_init), (set_chrome_actions), (load_chrome),
8132         (ev_window_init):
8133
8134         Remove the statusbar. This regress loading feedback, need to
8135         check with Bryan what we want to do there...
8136
8137 2005-09-05  Marco Pesenti Gritti  <mpg@redhat.com>
8138
8139         * lib/ev-tooltip.c: (ev_tooltip_init):
8140
8141         Fix tooltip border and size handling
8142
8143 2005-09-05  Marco Pesenti Gritti  <mpg@redhat.com>
8144
8145         * lib/ev-tooltip.c: (ev_tooltip_dispose), (ev_tooltip_class_init),
8146         (ev_tooltip_set_position), (ev_tooltip_recently_shown),
8147         (ev_tooltip_timeout), (ev_tooltip_activate),
8148         (ev_tooltip_deactivate):
8149         * lib/ev-tooltip.h:
8150         * shell/ev-view.c: (ev_view_motion_notify_event):
8151
8152         Delay popup showing. Mirror gtk logic/times.
8153
8154 2005-09-03  Marco Pesenti Gritti  <mpg@redhat.com>
8155
8156         * lib/Makefile.am:
8157         * lib/ev-tooltip.c: (ev_tooltip_expose_event),
8158         (ev_tooltip_class_init), (ev_tooltip_init), (ev_tooltip_new),
8159         (ev_tooltip_set_text), (ev_tooltip_set_position):
8160         * lib/ev-tooltip.h:
8161
8162         Simple widget to show tooltips at a custom position
8163
8164         * shell/ev-view.c: (tip_from_link), (ev_view_motion_notify_event),
8165         (ev_view_destroy):
8166
8167         Use it for links. First go, needs work
8168
8169 2005-08-17  Dennis Cranston  <dennis_cranston@yahoo.com>
8170
8171         * shell/ev-window.c: (ev_window_cmd_edit_toolbar): A couple small 
8172         HIG fixes.  Use title capitalization for window title. Use 12 
8173         pixels of space between the dialog's vbox and action area.
8174
8175 2005-09-02  Marco Pesenti Gritti  <mpg@redhat.com>
8176
8177         * shell/ev-window.c: (file_open_dialog_response_cb),
8178         (ev_window_cmd_file_open), (file_save_dialog_response_cb),
8179         (ev_window_cmd_save_as):
8180
8181         Make file pickers not modal and refactor code some
8182
8183 2005-09-02  Marco Pesenti Gritti  <mpg@redhat.com>
8184
8185         * shell/ev-sidebar.h:
8186         * shell/ev-sidebar.c: (ev_sidebar_set_property),
8187         (ev_sidebar_get_current_page), (ev_sidebar_get_property),
8188         (ev_sidebar_class_init), (ev_sidebar_select_page),
8189         (ev_sidebar_menu_item_activate_cb), (ev_sidebar_new),
8190         (ev_sidebar_set_page):
8191
8192         Add a current page property and allow to get/set it
8193
8194         * shell/ev-window.c: (setup_view_from_metadata),
8195         (ev_window_sidebar_current_page_changed_cb), (ev_window_init):
8196
8197         Persist current sidebar page per document
8198
8199 2005-09-02  Marco Pesenti Gritti  <mpg@redhat.com>
8200
8201         * data/evince.schemas.in:
8202         * shell/ev-window.c: (update_chrome_visibility),
8203         (setup_document_from_metadata), (update_sidebar_visibility),
8204         (setup_view_from_metadata), (ev_window_sidebar_position_change_cb),
8205         (ev_window_run_fullscreen), (ev_window_stop_fullscreen),
8206         (ev_window_run_presentation), (ev_window_stop_presentation),
8207         (ev_window_view_sidebar_cb),
8208         (ev_window_sidebar_visibility_changed_cb), (set_chrome_actions),
8209         (load_chrome), (ev_window_init):
8210
8211         Persist size/visibility of sidebar per document
8212
8213 Fri Sep  2 00:59:55 2005  Jonathan Blandford  <jrb@redhat.com>
8214
8215         * shell/ev-view.c (draw_loading_text): Draw loading text.
8216
8217 2005-09-02  Dan Damian  <dand@gnome.ro>
8218
8219         * configure.in: Added "ro" to ALL_LINGUAS.
8220
8221 2005-09-01  Marco Pesenti Gritti  <mpg@redhat.com>
8222
8223         * shell/ev-view.c: (clear_caches):
8224
8225         ev_page_cache_get doesnt return a reference,
8226         dont try to unref it.
8227
8228 2005-09-01  Marco Pesenti Gritti  <mpg@redhat.com>
8229
8230         * shell/main.c: (load_files_remote):
8231
8232         Fix timestamp parameter with dbus <= 0.33
8233
8234 2005-08-31  Marco Pesenti Gritti  <mpg@redhat.com>
8235
8236         * data/evince.schemas.in:
8237
8238         Add missing full stop
8239
8240 2005-08-31  Hiroyuki Ikezoe  <poincare@ikezoe.net>
8241
8242         * shell/ev-pixbuf-cache.c: (dispose_cache_job_info):
8243         * shell/ev-window.c: (ev_window_print_range), (ev_window_dispose):
8244
8245         Plug some memory leaks
8246
8247 2005-08-29  Christian Persch  <chpe@cvs.gnome.org>
8248
8249         * configure.ac:
8250         * lib/ev-debug.c: (trap_handler):
8251
8252         Check for execinfo.h and use it only if it exists.
8253         Ported from Epiphany (bug #314776).
8254
8255 2005-08-29  Duarte Loreto <happyguy_pt@hotmail.com>
8256
8257         * configure.ac: Added Portuguese (pt) to ALL_LINGUAS.
8258
8259 2005-08-27  Mohammad DAMT  <mdamt@gnome.org>
8260
8261         * configure.ac: Added Indonesian "id" to ALL_LINGUAS
8262         * po/id.po      : Added Indonesian translation
8263
8264 Fri Aug 26 00:45:09 2005  Jonathan Blandford  <jrb@redhat.com>
8265
8266         * shell/main.c:
8267         * shell/ev-application.c: Last minute GTK-2.6 fixes.
8268         * NEWS: Release 0.4.0
8269
8270 Thu Aug 25 23:40:23 2005  Jonathan Blandford  <jrb@redhat.com>
8271
8272         * configure.ac: catch another gtk+-2.8ism
8273         * shell/main.c: Make work with gtk+-2.6
8274
8275 2005-08-25  Ryan Lortie  <desrt@desrt.ca>
8276
8277         * shell/ev-application-service.xml: Add 'timestamp' argument to
8278           ev_application_open_window and ev_application_open_uri methods.
8279
8280         * shell/ev-application.h: Add 'timestamp' argument to
8281           ev_application_open_window, ev_application_open_uri,
8282           and ev_application_open_uri_list functions.
8283
8284         * shell/ev-application.c (ev_application_open_window,
8285           ev_application_open_uri, ev_application_open_uri_list): Change
8286           functions that show/present windows to use a timestamp if one
8287           is passed in.
8288
8289         * shell/ev-window.c (ev_window_cmd_file_open,
8290           ev_window_cmd_recent_file_activate, drag_data_received_cb):
8291         * shell/main.c (load_files): Modify calls to ev_application to
8292           include GDK_CURRENT_TIME as timestamp.
8293
8294         * shell/main.c (load_files_remote): Obtain timestamp for client
8295           instance from GDK and pass to server instance so new windows are
8296           focused properly.  Fix dbus_g_proxy_call() calls by including second
8297           G_TYPE_INVALID.
8298           
8299         Closes bug #314475.
8300
8301 Thu Aug 25 22:13:08 2005  Jonathan Blandford  <jrb@redhat.com>
8302
8303         * shell/ev-window.c (ev_window_finalize): Check for
8304         avail. EvWindows when quiting to handle the finalize better,
8305         #314497
8306
8307 2005-08-26  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8308         
8309         * properties/ev-properties-view.c: 
8310         
8311         Set textdomain to libglade. Fixes translation problem in property page.
8312
8313 2005-08-26  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8314
8315         * djvu/djvu-document.c: (djvu_document_thumbnails_get_thumbnail):
8316         * dvi/Makefile.am:
8317         * dvi/dvi-document.c: (dvi_document_thumbnails_get_thumbnail):
8318         * dvi/mdvi-lib/Makefile.am:
8319         
8320         Fix rotation of thumbnails, ported to new API. Moved library
8321         dependencies earlier, probably it will fix linkage problem.
8322
8323 Thu Aug 25 02:32:32 2005  Jonathan Blandford  <jrb@redhat.com>
8324
8325         * backend/ev-document-misc.c:
8326         (ev_document_misc_get_thumbnail_frame):
8327         * backend/ev-document-misc.h:
8328         * configure.ac:
8329         * pdf/ev-poppler.cc:
8330         * shell/Makefile.am:
8331         * shell/ev-sidebar-thumbnails.c: (add_range),
8332         (ev_sidebar_thumbnails_set_loading_icon),
8333         (ev_sidebar_thumbnails_refresh),
8334         (ev_sidebar_thumbnails_set_document):
8335         * shell/ev-sidebar-thumbnails.h:
8336         * shell/ev-view.c: (ev_view_motion_notify_event),
8337         (ev_view_set_property), (ev_view_get_property),
8338         (ev_view_class_init), (ev_view_set_rotation):
8339         * shell/ev-window.c: (ev_window_cmd_edit_rotate_left),
8340         (ev_window_cmd_edit_rotate_right), (ev_window_rotation_changed_cb),
8341         (ev_window_init):
8342         * tiff/tiff-document.c: (tiff_document_thumbnails_get_thumbnail):
8343         Redo rotation (again).  prepare for 0.4.0
8344
8345 2005-08-24  Kristian Høgsberg  <krh@redhat.com>
8346
8347         * configure.ac: Bump poppler requirement to 0.4.1.
8348
8349         * pdf/ev-poppler.cc (pdf_selection_render_selection): Add rotation
8350         argument to poppler_page_render_selection() call.
8351
8352 2005-08-24  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8353
8354         * djvu/djvu-document.c: (djvu_document_render_pixbuf),
8355         (djvu_document_thumbnails_get_thumbnail):
8356         * dvi/dvi-document.c: (dvi_document_render_pixbuf),
8357         (dvi_document_thumbnails_get_thumbnail):
8358         * pixbuf/pixbuf-document.c: (pixbuf_document_render_pixbuf),
8359         (pixbuf_document_thumbnails_get_thumbnail):
8360         * tiff/tiff-document.c: (tiff_document_render_pixbuf):
8361         
8362         Update rotation direction of backends to fit with pdf and ps.
8363
8364 2005-08-24  Marco Pesenti Gritti  <mpg@redhat.com>
8365
8366         * backend/ev-async-renderer.c: (ev_async_renderer_render_pixbuf):
8367         * backend/ev-async-renderer.h:
8368         * ps/ps-document.c: (ps_document_init), (setup_pixmap),
8369         (setup_page), (ps_document_get_page_size),
8370         (ps_async_renderer_render_pixbuf):
8371         * ps/ps-document.h:
8372         * shell/ev-jobs.c: (ev_job_render_run):
8373
8374         Fix orientation in the postscript document
8375
8376 2005-08-23  Marco Pesenti Gritti  <mpg@redhat.com>
8377
8378         * pdf/ev-poppler.cc:
8379         * ps/ps-document.c: (push_pixbuf), (ps_document_widget_event):
8380         * shell/ev-view.c: (highlight_find_results):
8381
8382         Adapt to the new poppler rotation API. Fix text maps on landscape
8383         documents.
8384
8385 Sat Aug 20 17:13:48 2005  Jonathan Blandford  <jrb@redhat.com>
8386
8387         * shell/ev-view.c (compute_new_selection_text): get the correct
8388         region when selecting in modes other than continuous.
8389
8390 Sat Aug 20 13:10:01 2005  Jonathan Blandford  <jrb@redhat.com>
8391
8392         * shell/main.c (main): remove redundant g_warnings.
8393
8394 2005-08-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8395
8396         * shell/Makefile.am: Don't include autogenerated
8397         file ev-application-service.h into distribution, since
8398         it causes dbus crash. Fix for bugs 313724 and 313443. 
8399
8400 2005-08-18  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8401
8402         * configure.ac: Fix sed expression for FreeBSD. Thanks
8403         to Joe Marcus Clark <marcus@freebsd.org>
8404         
8405         * shell/eggfindbar.c: (entry_activate_callback),
8406         (entry_changed_callback), (egg_find_bar_init),
8407         (egg_find_bar_set_search_string):
8408         
8409         Made findbar buttons unsensitive if there is no text in
8410         entry. Fix for the bug 313285.
8411
8412 2005-08-17  Carlos Garcia Campos  <carlosgc@gnome.org>
8413
8414         * ps/ps-document.c: Use g_filename_display_name for displaying
8415         filenames and revert string freeze breackage
8416
8417 2005-08-17  Marco Pesenti Gritti  <mpg@redhat.com>
8418
8419         * NEWS:
8420         * configure.ac:
8421
8422         Update for 0.3.4
8423
8424         * shell/Makefile.am:
8425
8426         Add ev-application-service.xml to extra dist
8427
8428         * shell/ev-view.c: (find_page_at_location):
8429
8430         Remove unused function (fix warning)
8431
8432 2005-08-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8433
8434         * dvi/mdvi-lib/t1.c: (t1_reset_resolution), (t1_really_load_font),
8435         (t1_load_font), (t1_glyph_bitmap), (t1_font_remove):
8436         
8437         Fix warnings and compilation with t1lib-5.0 and newer. Fix for 
8438         bug 313623.
8439
8440 2005-08-16  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8441
8442         * shell/ev-utils.c: (set_umask_permissions), (write_to_temp_file):
8443         * shell/ev-window.c:
8444         Fix build warnings
8445
8446 2005-08-16  Carlos Garcia Campos  <carlosgc@gnome.org>
8447
8448         * configure.ac: Update script to get dbus version.
8449         Fix for the bug #313443.
8450
8451 2005-08-16  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8452
8453         * shell/ev-window.c: (ev_window_cmd_escape):
8454         
8455         Return focus back to view on escape. Fix for bug 313295.
8456
8457 2005-08-16  Nickolay V. Shmyrev <nshmyrev@yandex.ru>
8458
8459         * shell/ev-window.c: (update_window_title),
8460         (ev_window_popup_password_dialog), (ev_window_load_job_cb),
8461         (ev_window_cmd_save_as):
8462         
8463         Correct conversion from uri to displayable string. Fix for
8464         bug 313296.
8465
8466 2005-08-16  Carlos Garcia Campos  <carlosgc@gnome.org>
8467
8468         * ps/ps-document.c: convert filename to utf8 when there is an error
8469         loading document. Fixes #309915
8470
8471 2005-08-16  Marco Pesenti Gritti  <mpg@redhat.com>
8472
8473         * configure.ac:
8474
8475         We depend on poppler 0.4.0
8476
8477 Mon Aug 15 21:53:05 2005  Jonathan Blandford  <jrb@redhat.com>
8478
8479         * configure.ac:
8480         * NEWS: Release 0.3.3.
8481         * thumbnailer/evince-thumbnailer.c: Remove pdf icon.
8482
8483 2005-08-14  Dennis Cranston  <dennis_cranston@yahoo.com>
8484
8485         * shell/ev-window.c: (ev_window_cmd_file_open): HIG fixes:  
8486         add a couple missing mnemonics to menu items, use title 
8487         capitalization for menu items and window titles, and add 
8488         ellipsis to open menu item.     
8489
8490 Mon Aug 15 00:40:21 2005  Jonathan Blandford  <jrb@redhat.com>
8491
8492         * pdf/ev-poppler.cc:
8493         * shell/ev-metadata-manager.c: (ev_metadata_manager_init):
8494         * shell/ev-view.c: (ev_view_rotate_left), (ev_view_set_rotation),
8495         (ev_view_get_rotation):
8496         * shell/ev-view.h:
8497         * shell/ev-window.c: (setup_view_from_metadata),
8498         (save_rotation_to_file), (ev_window_cmd_edit_rotate_left),
8499         (ev_window_cmd_edit_rotate_right): Fix rotation.  Save it to
8500         disk.
8501
8502 2005-08-14  Baris Cicek <baris@teamforce.name.tr>
8503
8504         * configure.ac: Added tr to ALL_LINGUAS
8505
8506 2005-08-12  Nickolay V. Shmyrev <nshmyrev@yandex.ru>
8507
8508         * shell/ev-view.c: Fix for bug Bug 311838. Search backward
8509         requires several clicks to find word. Thanks to 
8510         Colin Slater <kiltedtaco@gmail.com>.
8511
8512 2005-08-11  Bryan Clark  <clarkbw@cvs.gnome.org>
8513
8514         * data/evince.desktop.in.in: Hide menu entry and
8515         rename it to "Document Viewer". Fix for bug 
8516         #312399.
8517
8518 2005-08-11  Crispin Flowerday  <gnome@flowerday.cx>
8519
8520         * shell/ev-page-action.c (ev_page_action_class_init): 
8521
8522         Point to the correct function in constructor of the
8523         activate_label signal
8524
8525 Tue Aug  9 02:17:13 2005  Jonathan Blandford  <jrb@redhat.com>
8526
8527         * shell/ev-jobs.c: (ev_job_render_new), (ev_job_render_run):
8528         * shell/ev-jobs.h: Make thread safe.
8529
8530 2005-08-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8531
8532         * shell/ev-view.c: (view_update_range_and_current_page):
8533         Don't update page range if we are scrolling to some document
8534         point.
8535
8536 2005-08-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8537
8538         * shell/ev-view.c: (get_page_extents): reverse rotation/scale
8539         when getting max_page_width, fix drawing in dual mode.
8540
8541 Sun Aug  7 02:06:08 2005  Jonathan Blandford  <jrb@redhat.com>
8542
8543         * shell/ev-view.c (ev_view_select_all): reverse rotation/page when
8544         getting the area for select_all.
8545
8546 2005-08-06  Kristian Høgsberg  <krh@redhat.com>
8547
8548         * backend/ev-selection.c: (ev_selection_render_selection):
8549         * backend/ev-selection.h:
8550         * pdf/ev-poppler.cc:
8551         * shell/ev-jobs.c: (ev_job_render_new):
8552         * shell/ev-jobs.h:
8553         * shell/ev-pixbuf-cache.c: (get_selection_colors),
8554         (add_job_if_needed), (ev_pixbuf_cache_get_selection_pixbuf):
8555         * shell/ev-view.c: (ev_view_focus_in), (ev_view_focus_out),
8556         (ev_view_class_init):
8557
8558         Change selection color on focus in and focus out events.  Also,
8559         poppler now uses GdkColor for specifying the selection colors, so
8560         drop some awkward conversion code.
8561
8562 2005-08-06  Yair Hershkovitz  <yairhr@gmail.com>
8563
8564         * configure.ac: Added Hebrew translation
8565
8566 Sat Aug  6 01:12:44 2005  Jonathan Blandford  <jrb@redhat.com>
8567
8568         * NOTES:
8569         * backend/ev-selection.c: (ev_selection_render_selection):
8570         * backend/ev-selection.h:
8571         * pdf/ev-poppler.cc:
8572         * shell/ev-jobs.c: (ev_job_render_dispose), (ev_job_render_new),
8573         (ev_job_render_run):
8574         * shell/ev-jobs.h:
8575         * shell/ev-pixbuf-cache.c: (dispose_cache_job_info),
8576         (ev_pixbuf_cache_new), (job_finished_cb), (add_job_if_needed),
8577         (convert_gdk_color_to_uint), (ev_pixbuf_cache_get_text_mapping),
8578         (ev_pixbuf_cache_style_changed),
8579         (ev_pixbuf_cache_get_selection_pixbuf),
8580         (ev_pixbuf_cache_set_selection_list),
8581         (ev_pixbuf_cache_get_selection_list):
8582         * shell/ev-pixbuf-cache.h:
8583         * shell/ev-utils.c: (ev_print_region_contents):
8584         * shell/ev-utils.h:
8585         * shell/ev-view.c: (ev_view_queue_draw_page),
8586         (selection_update_idle_cb), (ev_view_motion_notify_event),
8587         (ev_view_style_set), (draw_one_page), (ev_view_class_init),
8588         (setup_caches), (ev_view_find_next), (merge_selection_region),
8589         (selection_free):
8590         * shell/ev-window.c: (ev_window_update_fullscreen_popup):
8591
8592         Clean up selection to be much smoother!
8593
8594 2005-08-05  Kristian Høgsberg  <krh@redhat.com>
8595
8596         * pdf/ev-poppler.cc (pdf_selection_render_selection): Pass colors
8597         to poppler_page_render_selection().
8598
8599 2005-08-05  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8600
8601         * ps/ps-document.c: (save_page_list): Use
8602         unzipped document when printing. Thanks to 
8603         Colin Slater <kiltedtaco@gmail.com>. Fix for bug
8604         311016.
8605
8606 2005-08-03  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8607
8608         * shell/ev-window.c: (update_action_sensitivity):
8609         
8610         Disable print and save respect to lockdown gconf keys. Fix
8611         for 312342.
8612
8613 2005-08-03  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8614
8615         * configure.ac:
8616         * shell/ev-utils.c: (rename_file), (set_umask_permissions),
8617         (write_to_temp_file), (ev_file_set_contents):
8618         * shell/ev-utils.h:
8619         * shell/ev-window.c: (save_print_config_to_file):
8620         
8621         Copy-paste g_file_set_contents to keep compatibility with gtk 2.6
8622         Fix for bug 312238
8623
8624 2005-07-31  Christian Persch  <chpe@cvs.gnome.org>
8625
8626         * shell/ev-window.c: (load_print_config_from_file),
8627         (save_print_config_to_file), (ev_window_print_range):
8628
8629         Persist the print settings. Fixes bug #311578.
8630
8631 2005-07-31  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8632
8633         * djvu/djvu-document.c: (djvu_document_get_page_size),
8634         (djvu_document_render_pixbuf), (djvu_document_document_iface_init),
8635         (djvu_document_thumbnails_get_thumbnail):
8636         * dvi/dvi-document.c: (dvi_document_get_page_size),
8637         (dvi_document_render_pixbuf), (dvi_document_document_iface_init),
8638         (dvi_document_thumbnails_get_dimensions),
8639         (dvi_document_thumbnails_get_thumbnail):
8640         * pixbuf/pixbuf-document.c: (pixbuf_document_get_page_size),
8641         (pixbuf_document_render_pixbuf),
8642         (pixbuf_document_document_iface_init),
8643         (pixbuf_document_thumbnails_get_thumbnail):
8644         
8645         Update backends to make them build with new rotation system.
8646
8647 2005-07-31  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8648
8649         * help/C/figures/evince_start_window.png:
8650         
8651         Update documentation image from Luca Ferretti <elle.uca@libero.it>
8652
8653 Sat Jul 30 19:09:34 2005  Jonathan Blandford  <jrb@redhat.com>
8654
8655         * shell/ev-pixbuf-cache.c: (ev_pixbuf_cache_clear):
8656         * shell/ev-pixbuf-cache.h:
8657         * shell/ev-sidebar-thumbnails.c:
8658         (ev_sidebar_thumbnails_get_property), (add_range),
8659         (adjustment_changed_cb):
8660         * shell/ev-view.c: (ev_view_set_rotation): Fix rotation and the
8661         pixbuf cache.  Make thumbnailing work again.  Also, fix bug where
8662         we were thumbnailing the entire docment on startup, slowing us
8663         down hugely. 
8664
8665 Fri Jul 29 23:14:28 2005  Jonathan Blandford  <jrb@redhat.com>
8666
8667         * shell/ev-page-cache.c: (ev_page_cache_new):
8668         * shell/ev-window.c: (update_action_sensitivity): Handle n_pages
8669         == 0, fixes #310306.
8670
8671 2005-07-29  Marco Pesenti Gritti  <mpg@redhat.com>
8672
8673         * shell/ev-view.c: (doc_rect_to_view_rect), (ev_view_rotate_right),
8674         (ev_view_rotate_left):
8675
8676         Account rotation in doc_rect_to_view_rect.
8677         Ensure rotation doesnt go out of bounds.
8678
8679 2005-07-29  Marco Pesenti Gritti  <mpg@redhat.com>
8680
8681         * shell/ev-page-cache.c: (ev_page_cache_get_size):
8682
8683         Correct and cleanup w/h swapping
8684
8685 2005-07-29  Marco Pesenti Gritti  <mpg@redhat.com>
8686
8687         * backend/ev-document-thumbnails.c:
8688         (ev_document_thumbnails_get_thumbnail):
8689         * backend/ev-document-thumbnails.h:
8690         * backend/ev-document.c:
8691         * backend/ev-document.h:
8692         * backend/ev-render-context.c: (ev_render_context_new),
8693         (ev_render_context_set_rotation):
8694         * backend/ev-render-context.h:
8695         * pdf/ev-poppler.cc:
8696         * ps/ps-document.c: (ps_document_document_iface_init):
8697         * shell/ev-jobs.c: (ev_job_thumbnail_new), (ev_job_thumbnail_run):
8698         * shell/ev-jobs.h:
8699         * shell/ev-page-cache.c: (build_height_to_page),
8700         (ev_page_cache_new), (ev_page_cache_get_size),
8701         (ev_page_cache_get_max_width), (ev_page_cache_get_max_height),
8702         (ev_page_cache_get_height_to_page):
8703         * shell/ev-page-cache.h:
8704         * shell/ev-pixbuf-cache.c: (check_job_size_and_unref),
8705         (add_job_if_needed), (ev_pixbuf_cache_add_jobs_if_needed),
8706         (ev_pixbuf_cache_set_page_range), (new_selection_pixbuf_needed),
8707         (ev_pixbuf_cache_get_selection_pixbuf):
8708         * shell/ev-pixbuf-cache.h:
8709         * shell/ev-print-job.c: (idle_print_handler):
8710         * shell/ev-sidebar-thumbnails.c: (add_range):
8711         * shell/ev-view.c: (view_update_range_and_current_page),
8712         (get_page_y_offset), (get_page_extents),
8713         (ev_view_size_request_continuous_dual_page),
8714         (ev_view_size_request_continuous),
8715         (ev_view_size_request_dual_page),
8716         (ev_view_size_request_single_page), (draw_one_page),
8717         (ev_view_set_rotation), (ev_view_rotate_right),
8718         (ev_view_rotate_left), (ev_view_zoom_for_size_presentation),
8719         (ev_view_zoom_for_size_continuous_and_dual_page),
8720         (ev_view_zoom_for_size_continuous),
8721         (ev_view_zoom_for_size_dual_page),
8722         (ev_view_zoom_for_size_single_page), (compute_new_selection_text),
8723         (ev_view_select_all):
8724         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
8725         * tiff/tiff-document.c: (tiff_document_render_pixbuf),
8726         (tiff_document_document_iface_init),
8727         (tiff_document_thumbnails_get_thumbnail):
8728
8729         Use rotation rather than orientation. It's easier and enough
8730         for our needs.
8731
8732 2005-07-29  Marco Pesenti Gritti  <mpg@redhat.com>
8733
8734         * shell/ev-page-cache.c: (build_height_to_page),
8735         (ev_page_cache_new), (ev_page_cache_get_size),
8736         (ev_page_cache_get_max_width), (ev_page_cache_get_max_height),
8737         (ev_page_cache_get_height_to_page):
8738         * shell/ev-page-cache.h:
8739         * shell/ev-view.c: (get_page_y_offset), (get_page_extents),
8740         (ev_view_size_request_continuous_dual_page),
8741         (ev_view_size_request_continuous),
8742         (ev_view_zoom_for_size_continuous_and_dual_page),
8743         (ev_view_zoom_for_size_continuous):
8744
8745         Make the page cache aware of page orientation.
8746
8747 2005-07-29  Marco Pesenti Gritti  <mpg@redhat.com>
8748
8749         * backend/ev-document-thumbnails.c:
8750         (ev_document_thumbnails_get_thumbnail):
8751         * backend/ev-document-thumbnails.h:
8752         * backend/ev-document.c:
8753         * backend/ev-document.h:
8754         * backend/ev-ps-exporter.c: (ev_ps_exporter_do_page):
8755         * backend/ev-ps-exporter.h:
8756         * pdf/ev-poppler.cc:
8757         * ps/ps-document.c: (ps_document_document_iface_init),
8758         (ps_document_ps_export_do_page):
8759         * shell/ev-jobs.c: (ev_job_thumbnail_new), (ev_job_thumbnail_run):
8760         * shell/ev-jobs.h:
8761         * shell/ev-page-cache.c: (ev_page_cache_get_size),
8762         (ev_page_cache_get):
8763         * shell/ev-page-cache.h:
8764         * shell/ev-pixbuf-cache.c: (check_job_size_and_unref),
8765         (add_job_if_needed), (ev_pixbuf_cache_add_jobs_if_needed),
8766         (ev_pixbuf_cache_set_page_range), (new_selection_pixbuf_needed):
8767         * shell/ev-pixbuf-cache.h:
8768         * shell/ev-print-job.c: (idle_print_handler):
8769         * shell/ev-sidebar-thumbnails.c: (add_range):
8770         * shell/ev-view.c: (view_update_range_and_current_page),
8771         (get_page_extents), (ev_view_size_request_dual_page),
8772         (ev_view_size_request_single_page), (draw_one_page),
8773         (clear_caches), (ev_view_set_orientation), (ev_view_rotate_right),
8774         (ev_view_rotate_left), (ev_view_zoom_for_size_presentation),
8775         (ev_view_zoom_for_size_dual_page),
8776         (ev_view_zoom_for_size_single_page), (compute_new_selection_text),
8777         (ev_view_select_all):
8778         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
8779         * tiff/tiff-document.c: (tiff_document_get_page_size),
8780         (tiff_document_get_orientation), (rotate_pixbuf),
8781         (tiff_document_render_pixbuf), (tiff_document_document_iface_init),
8782         (tiff_document_thumbnails_get_thumbnail),
8783         (tiff_document_ps_export_do_page), (tiff_document_init):
8784
8785         Really make use of the orientation bit of the render context.
8786         Use the render context in a few more places in the backend API.
8787         This regress orientation, but now it's done right. Will try to
8788         fix it up asap...
8789
8790 2005-07-29  Marco Pesenti Gritti  <mpg@redhat.com>
8791
8792         * shell/ev-view.c: (ensure_rectangle_is_visible):
8793
8794         Patch by Nickolay V. Shmyrev to fix find flickering
8795
8796 2005-07-27  Martin Kretzschmar  <martink@gnome.org>
8797
8798         * backend/ev-ps-exporter.h: add paper_width, paper_height, and
8799         duplex parameters to ::begin.
8800
8801         * tiff/tiff-document.c (tiff_document_ps_export_begin): 
8802         * shell/ev-print-job.c (idle_print_handler): 
8803         * ps/ps-document.c (ps_document_ps_export_begin): 
8804         * pdf/ev-poppler.cc (pdf_document_ps_exporter_begin): 
8805         * backend/ev-ps-exporter.c (ev_ps_exporter_begin): update
8806         implementations. Poppler backend needs poppler cvs. Rest has
8807         unchanged behavior.
8808
8809 2005-07-25  Martin Kretzschmar  <martink@gnome.org>
8810
8811         * shell/ev-window.c (using_pdf_printer): new function.
8812         (ev_window_print_range): print a less techy message if someone
8813         tries to print to PDF.
8814
8815 2005-07-25  Martin Kretzschmar  <martink@gnome.org>
8816
8817         * pdf/ev-poppler.cc (font_type_to_string): Remove trailing space
8818         from "unknown font" string. Bug #311431
8819
8820 2005-07-24  Martin Kretzschmar  <martink@gnome.org>
8821
8822         * help/es/.cvsignore, help/sr/.cvsignore: ignore xmlpo output.
8823
8824 2005-07-24  Martin Kretzschmar  <martink@gnome.org>
8825
8826         Bug #311280
8827         
8828         * pdf/ev-poppler.cc (font_type_to_string): new, returns user readable
8829         name for PopplerFontTypes
8830         (pdf_document_fonts_fill_model): add font type to the detail column
8831
8832         * backend/ev-document-fonts.h: added
8833         EV_DOCUMENT_FONTS_COLUMN_DETAILS.
8834
8835         * shell/ev-properties-fonts.c (font_cell_data_func): glue together
8836         font name and font details, add a little markup.
8837         (ev_properties_fonts_init): use the new cell data func, specify ypad
8838         property for the cell renderer.
8839         (ev_properties_fonts_set_document): add the details column.
8840
8841 2005-07-24  Artur Flinta  <aflinta@cvs.gnome.org>
8842
8843         * configure.ac: Added "pl" to ALL_LINGUAS.
8844
8845 2005-07-24  Danilo Šegan  <danilo@gnome.org>
8846
8847         * configure.ac: Added "sr" and "sr@Latn" to ALL_LINGUAS.
8848
8849 2005-07-23  Tommi Vainikainen  <thv@iki.fi>
8850
8851         * help/ChangeLog: Started this for translations of manual.
8852         * configure.ac, autogen.sh, .cvsignore: Migrated to
8853         gnome-doc-utils. Patch in bug #311222.
8854
8855 2005-07-22  Martin Kretzschmar  <martink@gnome.org>
8856
8857         * backend/ev-document-factory.c (mime_type_supported_by_gdk_pixbuf): 
8858         #ifdef this away to fix an unused-function warning.
8859
8860 2005-07-22  Ignacio Casal Quinteiro  <nacho.resa@gmail.com>
8861
8862         * configure.ac: Added 'gl' to ALL_LINGUAS.
8863
8864 2005-07-22  Pawan Chitrakar  <pawan@nplinux.org>
8865
8866         * configure.ac: Added ne in ALL_LINGUAS
8867         
8868 2005-07-22  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8869
8870         * shell/ev-view.c: (ev_view_leave_notify_event):
8871         
8872         Clear status message when pointer leaves view. Fix for bug
8873         #310818 
8874
8875 2005-07-20 Ankit Patel <ankit644@yahoo.com>
8876
8877         * configure.ac: Gujarati (gu) added to ALL_LINGUAS
8878
8879 2005-07-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8880
8881         * shell/ev-view.c: (ev_view_leave_notify_event),
8882         (ev_view_class_init):
8883         
8884         Set cursor to normal then leaving view.
8885
8886 2005-07-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
8887
8888         * configure.ac:
8889         
8890         Fix required djvulibre version.
8891
8892 2005-07-15  Rajesh Ranjan <rajeshkajha@yahoo.com>
8893
8894         *configure.ac: Hindi (hi) language added
8895
8896 2005-07-15  Amanpreet Singh Brar <amanpreetalam@yahoo.com>
8897
8898         *configure.ac: Punjabi (pa) Language added
8899
8900 2005-07-12  Nickolay V. Shmyrev <nshmyrev@yandex.ru>
8901
8902         * data/evince-ui.xml, shell/ev-window.c:
8903         
8904         Add keypad accelerators for zooming. Fix for bug 308128.
8905
8906 2005-07-11  Marco Pesenti Gritti  <mpg@redhat.com>
8907
8908         * Makefile.am:
8909         * backend/Makefile.am:
8910         * backend/ev-document-factory.c: (ev_document_type_get_from_mime):
8911         * configure.ac:
8912         * shell/ev-document-types.c: (ev_document_types_add_filters):
8913
8914         Allow to enable/disable the pixbuf backend.
8915         Default to off for now. If we want it enabled we should
8916         really put mime types in the desktop, implement properties etc.
8917
8918         * properties/evince-properties.c:
8919
8920         Initialize error to NULL.
8921         Check error is not NULL before freeing.
8922
8923 2005-07-11  Marco Pesenti Gritti  <mpg@redhat.com>
8924
8925         * shell/ev-window.c:
8926
8927         Use F5 as presentation accell
8928
8929 2005-07-11  Marco Pesenti Gritti  <mpg@redhat.com>
8930
8931         * shell/ev-window.c: (update_chrome_visibility),
8932         (ev_window_create_fullscreen_popup), (ev_window_init):
8933
8934         Do not leak the fullscreen toolbar
8935
8936 2005-07-11  Marco Pesenti Gritti  <mpg@redhat.com>
8937
8938         * shell/ev-window.c: (view_actions_focus_in_cb),
8939         (view_actions_focus_out_cb):
8940
8941         These has a return value! Fix totally random focus
8942         issues we was seeing.
8943
8944 2005-07-11  Carlos Garcia Campos  <carlosgc@gnome.org>
8945
8946         * shell/main.c: (load_files_remote):
8947
8948         Allow open more than one file
8949
8950 2005-07-11  Marco Pesenti Gritti  <mpg@redhat.com>
8951
8952         * shell/main.c: (load_files_remote):
8953
8954         Fix for dbus 0.33. bug #309975
8955
8956 2005-07-08  Marco Pesenti Gritti  <mpg@redhat.com>
8957
8958         * properties/ev-properties-main.c: (ev_properties_get_pages):
8959
8960         Actually return NULL for types we dont support
8961
8962 2005-07-08  Christian Persch  <chpe@cvs.gnome.org>
8963
8964         * po/POTFILES.in:
8965
8966         Remove empty lines.
8967
8968 2005-07-08  Marco Pesenti Gritti  <marco@gnome.org>
8969
8970         * backend/ev-document-factory.c:
8971         (ev_document_factory_get_document):
8972
8973         Do not try to create the object if type
8974         is invalid.
8975
8976 2005-07-08  Marco Pesenti Gritti  <mpg@redhat.com>
8977
8978         * ps/ps-document.c: (ps_document_dispose),
8979         (ps_async_renderer_render_pixbuf):
8980         * ps/ps-document.h:
8981
8982         Do not leak the target window
8983
8984 2005-07-08  Marco Pesenti Gritti  <mpg@redhat.com>
8985
8986         * shell/ev-application.c: (ev_application_init):
8987
8988         Let tbe check file existence for us.
8989         Add a comment about eggrecent mime filter.
8990
8991 2005-07-08  Marco Pesenti Gritti  <mpg@redhat.com>
8992
8993         * data/evince-ui.xml:
8994         * shell/ev-application.c: (ev_application_shutdown),
8995         (ev_application_init), (ev_application_get_toolbars_model),
8996         (ev_application_get_recent_model),
8997         (ev_application_save_toolbars_model):
8998         * shell/ev-application.h:
8999         * shell/ev-window.c: (ev_window_add_recent),
9000         (ev_window_setup_recent), (ev_window_cmd_edit_toolbar_cb),
9001         (ev_window_cmd_edit_toolbar), (ev_window_dispose),
9002         (ev_window_init):
9003
9004         Use common toolbar and recent models for all windows.
9005         Patch by Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9006
9007 Thu Jul  7 23:10:01 2005  Jonathan Blandford  <jrb@redhat.com>
9008
9009         * configure.ac: add FRONTEND_CORE_LIBS to evince_save_LIBS so we
9010         successfully check for gtk_icon_view_get_visible_range.
9011
9012 2005-07-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9013
9014         * djvu/Makefile.am:
9015         * dvi/Makefile.am:
9016         
9017         Fix djvu and dvi backend build.
9018
9019 2005-07-07  Christian Persch  <chpe@cvs.gnome.org>
9020
9021         * cut-n-paste/toolbar-editor/egg-editable-toolbar.c: (new_pixbuf_from_widget),
9022         (new_separator_pixbuf):
9023
9024         Don't leak windows.
9025
9026 2005-07-07  Christian Persch  <chpe@cvs.gnome.org>
9027
9028         * shell/ev-window.c: (ev_window_cmd_edit_toolbar):
9029
9030         HIGification of toolbar editor dialogue.
9031
9032 2005-07-07  Marco Pesenti Gritti  <mpg@redhat.com>
9033
9034         * configure.ac:
9035         * shell/Makefile.am:
9036
9037         Ever build metadata manager since it's just
9038         disabled at runtime now.
9039
9040 2005-07-07  Marco Pesenti Gritti  <mpg@redhat.com>
9041
9042         * shell/ev-metadata-manager.c: (ev_metadata_manager_init),
9043         (ev_metadata_manager_get), (ev_metadata_manager_set):
9044         * shell/ev-metadata-manager.h:
9045
9046         Add an _init functions that enabled metadata management
9047         at runtime.
9048
9049         * shell/ev-window.c: (page_changed_cb),
9050         (setup_document_from_metadata), (ev_window_setup_document),
9051         (setup_view_from_metadata), (ev_window_open_uri),
9052         (ev_window_run_fullscreen), (ev_window_stop_fullscreen),
9053         (ev_window_run_presentation), (ev_window_stop_presentation),
9054         (save_sizing_mode), (ev_window_zoom_changed_cb),
9055         (ev_window_continuous_changed_cb),
9056         (ev_window_dual_mode_changed_cb), (window_state_event_cb),
9057         (window_configure_event_cb):
9058
9059         Remove all ugly metadata define since we deal with it
9060         at runtime now.
9061
9062         * shell/main.c: (load_files_remote), (main):
9063
9064         Add support for dbus cvs head. Hopefully didnt break one
9065         of the other versions now!
9066
9067         If we dont get a response from the dbus server just
9068         give up with it and not enable metadata.
9069
9070 2005-07-07  Marco Pesenti Gritti  <mpg@redhat.com>
9071
9072         * Makefile.am:
9073         * backend/Makefile.am:
9074         * configure.ac:
9075         * cut-n-paste/recent-files/Makefile.am:
9076         * cut-n-paste/toolbar-editor/Makefile.am:
9077         * cut-n-paste/zoom-control/Makefile.am:
9078         * lib/Makefile.am:
9079         * pdf/Makefile.am:
9080         * pixbuf/Makefile.am:
9081         * properties/Makefile.am:
9082         * ps/Makefile.am:
9083         * shell/Makefile.am:
9084         * thumbnailer/Makefile.am:
9085         * tiff/Makefile.am:
9086
9087         Make frontends depend on just libev.
9088         Rework and group CFLAGS/LIBS definitions.
9089         Cleanups.
9090
9091 2005-07-07  Marco Pesenti Gritti  <mpg@redhat.com>
9092
9093         * shell/ev-window:
9094
9095         do not unnecessarily save zoom
9096
9097         * configure.ac:
9098         * lib/ev-file-helpers.c: (ev_dot_dir):
9099         * shell/Makefile.am:
9100         * shell/dummy.cc:
9101
9102         Some cleanups
9103
9104 2005-07-07  Marco Pesenti Gritti  <mpg@redhat.com>
9105
9106         * configure.ac:
9107         
9108         Remove unnecessary dependencies
9109
9110 2005-07-07  Marco Pesenti Gritti  <mpg@redhat.com>
9111
9112         * properties/Makefile.am:
9113         * thumbnailer/Makefile.am:
9114         * tiff/Makefile.am:
9115
9116         Some more cleanups. Was really necessary
9117         but I probably introduced bugs, feel free
9118         to flame :)
9119
9120 2005-07-07  Marco Pesenti Gritti  <mpg@redhat.com>
9121
9122         * backend/Makefile.am:
9123         * configure.ac:
9124         * cut-n-paste/recent-files/Makefile.am:
9125         * cut-n-paste/toolbar-editor/Makefile.am:
9126         * cut-n-paste/zoom-control/Makefile.am:
9127         * lib/Makefile.am:
9128         * pdf/Makefile.am:
9129         * pixbuf/Makefile.am:
9130         * properties/Makefile.am:
9131         * ps/Makefile.am:
9132         * shell/Makefile.am:
9133         * thumbnailer/Makefile.am:
9134         * tiff/Makefile.am:
9135
9136         Use gnome-common macros when possible.
9137         Cleanup dependencies.
9138         Actually disable deprecated where possible.
9139
9140 2005-07-07  Marco Pesenti Gritti  <mpg@redhat.com>
9141
9142         * Makefile.am:
9143         * backend/Makefile.am:
9144         * properties/Makefile.am:
9145         * shell/Makefile.am:
9146         * thumbnailer/Makefile.am:
9147
9148         This should solve the circular dep without
9149         requiring dir reorg!
9150
9151         * shell/ev-window.c: (setup_view_from_metadata):
9152
9153         Never restore window size/position when the
9154         window is already visible.
9155
9156 2005-07-06  Christian Persch  <chpe@cvs.gnome.org>
9157
9158         * shell/ev-metadata-manager.c: (ev_metadata_manager_save):
9159
9160         Return a boolean from timeout func. Fix ported from gedit.
9161
9162 2005-07-07  Iñaki Larrañaga  <dooteo@euskalgnu.org>
9163
9164         * configure.ac: Added "eu" (Basque) to ALL_LINGUAS.
9165
9166 2005-07-06  Carlos Garcia Campos  <carlosgc@gnome.org>
9167
9168         * shell/ev-document-types.c: set "All Documents" as default filter in
9169         open dialog
9170
9171 2005-07-06  Martin Kretzschmar  <martink@gnome.org>
9172
9173         * shell/ev-metadata-manager.c (ev_metadata_manager_set_int)
9174         (ev_metadata_manager_set_double, ev_metadata_manager_set_string)
9175         (ev_metadata_manager_set_boolean): fix value/val thinko.
9176
9177 2005-07-06  Marco Pesenti Gritti  <mpg@redhat.com>
9178
9179         * shell/ev-window.c: (setup_view_from_metadata),
9180         (window_state_event_cb), (window_configure_event_cb),
9181         (ev_window_init):
9182
9183         Remember window position and maximized state
9184
9185 2005-07-06  Christian Persch  <chpe@cvs.gnome.org>
9186
9187         * configure.ac:
9188
9189         Fix DBUS configure checks.
9190
9191         * shell/ev-metadata-manager.c: (ev_metadata_manager_set_int),
9192         (ev_metadata_manager_set_double), (ev_metadata_manager_set_string),
9193         (ev_metadata_manager_set_boolean):
9194
9195         Plug mem leaks.
9196
9197         * shell/ev-window.c: (page_changed_cb), (ev_window_run_fullscreen),
9198         (ev_window_stop_fullscreen), (ev_window_run_presentation),
9199         (ev_window_stop_presentation), (ev_window_zoom_changed_cb),
9200         (ev_window_continuous_changed_cb),
9201         (ev_window_dual_mode_changed_cb), (ev_window_new):
9202
9203         Fix the build without DBUS.
9204
9205 2005-07-06  Marco Pesenti Gritti  <mpg@redhat.com>
9206
9207         * shell/ev-metadata-manager.c: (parse_value), (save_values),
9208         (ev_metadata_manager_set_int), (ev_metadata_manager_set_double),
9209         (ev_metadata_manager_set_string),
9210         (ev_metadata_manager_set_boolean):
9211         * shell/ev-metadata-manager.h:
9212
9213         Add support for some more types
9214
9215         * shell/ev-view.c: (scroll_to_current_page),
9216         (ev_view_get_continuous), (ev_view_set_continuous),
9217         (ev_view_get_dual_page):
9218         * shell/ev-view.h:
9219         * shell/ev-window.c: (page_changed_cb),
9220         (setup_document_from_metadata), (ev_window_setup_document),
9221         (setup_view_from_metadata), (ev_window_open_uri),
9222         (ev_window_run_fullscreen), (ev_window_stop_fullscreen),
9223         (ev_window_run_presentation), (ev_window_stop_presentation),
9224         (save_sizing_mode), (ev_window_sizing_mode_changed_cb),
9225         (ev_window_zoom_changed_cb), (ev_window_update_continuous_action),
9226         (ev_window_update_dual_page_action),
9227         (ev_window_continuous_changed_cb),
9228         (ev_window_dual_mode_changed_cb), (ev_window_init):
9229
9230         Remember a bunch of view/document properties. Prolly some
9231         are still missing but it's getting interesting.
9232
9233 2005-07-05  Martin Kretzschmar  <martink@gnome.org>
9234
9235         * configure.ac: check if dbus-binding-tool is installed. Not the
9236         case on current Ubuntu breezy, it seems.
9237
9238 2005-07-05  Luca Ferretti <elle.uca@libero.it>
9239
9240         * data/evince.desktop.in.in:
9241         
9242         Allow open uri lists and add TryExec field.
9243
9244 2005-07-05  Marco Pesenti Gritti  <mpg@redhat.com>
9245
9246         * configure.ac:
9247
9248         Enable dbus when available, do not require a configure
9249         option.
9250
9251 2005-07-05  Christian Persch  <chpe@cvs.gnome.org>
9252
9253         * configure.ac:
9254
9255         Use AM_CONDITIONAL unconditionally, fixes the build with DBUS
9256         disabled.
9257
9258 2005-07-05  Carlos Garcia Campos  <carlosgc@gnome.org>
9259         Marco Pesenti Gritti  <mpg@redhat.com>
9260
9261         * shell/Makefile.am: Add --prefix for dbus-binding-tool script
9262         
9263         * shell/ev-application.[ch], shell/ev-window.c: change dbus RPC 
9264         functions to the format required by dbus
9265
9266         * shell/main.c: use G_TYPE instead of DBUS_TYPE to fix compilation
9267         errors. Use the RPC parameters in the expected way
9268
9269 2005-07-05  Marco Pesenti Gritti  <mpg@redhat.com>
9270
9271         * Makefile.am:
9272         * properties/Makefile.am:
9273         * properties/ev-properties-main.c: (ev_properties_get_pages):
9274
9275         Support all mime types
9276
9277         * shell/Makefile.am:
9278         * thumbnailer/Makefile.am:
9279         * thumbnailer/evince-thumbnailer.c: (get_document_from_uri),
9280         (evince_thumbnail_pngenc_get):
9281
9282         Use the document factory
9283
9284 2005-07-05  Marco Pesenti Gritti  <mpg@redhat.com>
9285
9286         * backend/Makefile.am:
9287         * backend/ev-document-factory.c:
9288         (mime_type_supported_by_gdk_pixbuf),
9289         (ev_document_type_get_from_mime),
9290         (ev_document_factory_get_document),
9291         (ev_document_factory_get_backend),
9292         (ev_document_factory_get_mime_types),
9293         (ev_document_factory_get_all_mime_types):
9294         * backend/ev-document-factory.h:
9295         * shell/Makefile.am:
9296         * shell/ev-document-types.c: (get_document_from_uri),
9297         (ev_document_types_get_document),
9298         (file_filter_add_mime_list_and_free),
9299         (ev_document_types_add_filters):
9300         * shell/ev-document-types.h:
9301         * shell/ev-job-xfer.c: (ev_job_xfer_run):
9302         * shell/ev-properties-dialog.c:
9303         (ev_properties_dialog_set_document):
9304         * shell/ev-window.c: (ev_window_cmd_file_open),
9305         (ev_window_cmd_save_as):
9306         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
9307
9308         Rework document types managing to avoid code duplication
9309         and actually abstract from backend implementations.
9310         Also provide a minimal factory api that can be used by
9311         thumbnailer/properties.
9312
9313 2005-07-05  Christian Persch  <chpe@cvs.gnome.org>
9314
9315         * properties/ev-properties-view.c: (ev_properties_view_set_info):
9316         Plug a mem leak.
9317         * shell/ev-properties-dialog.c: (ev_properties_dialog_init):
9318         HIG spacings.
9319
9320 2005-07-04  Matthew S. Wilson  <msw@rpath.com>
9321
9322         * shell/ev-properties-dialog.c
9323         (ev_properties_dialog_set_document): only call
9324         ev_properties_fonts_set_document() if the document implements the
9325         fonts interface
9326
9327 2005-07-05  Marco Pesenti Gritti  <mpg@redhat.com>
9328
9329         * configure.ac:
9330         * properties/Makefile.am:
9331         * properties/ev-properties-view.c:
9332         (ev_properties_view_register_type):
9333         * properties/ev-properties-view.h:
9334         * properties/ev-properties-main.h:
9335
9336         Implement nautilus plugin for properties.
9337         Works only for pdf atm, I need to rework the
9338         document types stuff to get this to work
9339         for all backends...
9340
9341 2005-07-04  Martin Kretzschmar  <martink@gnome.org>
9342
9343         * shell/ev-properties-fonts.c (enum): kill redundant columns enum
9344         (ev_properties_fonts_set_document): use
9345         EV_DOCUMENT_FONTS_COLUMN_NUM_COLUMNS.
9346
9347 2005-07-04  Matthew S. Wilson  <msw@rpath.com>
9348
9349         * tiff/tiff2ps.c: remove TRUE and FALSE definitions, glib provides
9350         them
9351         (PlaceImage, tiff2ps_process_page): use
9352         g_ascii_dtostr to convert floats to strings in a locale-safe way.
9353
9354
9355 2005-07-04  Martin Kretzschmar  <martink@gnome.org>
9356
9357         * shell/main.c: include libgnomeui/gnome-authentication-manager.h
9358         (main): to call gnome_authentication_manager_init. Should fix
9359         Bug #308510
9360
9361         * configure.ac: that requires libgnomeui 2.6.0.
9362
9363 2005-07-04  Matthew S. Wilson  <msw@rpath.com>
9364
9365         * tiff/tiff-document.c (tiff_document_ps_export_begin) 
9366         (tiff_document_ps_export_do_page, tiff_document_ps_export_end):
9367         use the new tiff2ps interfaces
9368
9369         * tiff/tiff2ps.h (tiff2ps_context_new, tiff2ps_process_page) 
9370         (tiff2ps_context_finalize): implement new interfaces for tiff2ps
9371
9372         * tiff/tiff2ps.c: refactor tiff2ps code to use a context
9373         structure instead of global variables.  Remove use of static
9374         variables in functions.
9375
9376 2005-07-04  Carlos Garcia Campos <carlosgc@gnome.org>
9377
9378         * shell/ev-page-action.c: unref the completion after setting it to the
9379         entry
9380
9381 2005-07-04  Matthew S. Wilson  <msw@rpath.com>
9382
9383         * tiff/tiff2ps.c (generateEPSF): disable generating encapsulated
9384         postscript files
9385
9386 2005-07-04  Matthew S. Wilson  <msw@rpath.com>
9387
9388         * shell/ev-window.c (update_action_sensitivity): disable
9389         File->Print if the document does not implement the ps exporter
9390         interface
9391
9392 2005-07-04  Marco Pesenti Gritti  <mpg@redhat.com>
9393
9394         * Makefile.am:
9395         * configure.ac:
9396         * data/evince-properties.glade:
9397         * properties/.cvsignore:
9398         * properties/Makefile.am:
9399         * properties/ev-properties-view.c: (ev_properties_view_dispose),
9400         (ev_properties_view_class_init), (ev_properties_view_format_date),
9401         (make_valid_utf8), (set_property), (ev_properties_view_set_info),
9402         (ev_properties_view_init), (ev_properties_view_new):
9403         * properties/ev-properties-view.h:
9404         * shell/Makefile.am:
9405         * shell/ev-properties-dialog.c: (ev_properties_dialog_class_init),
9406         (ev_properties_dialog_init), (ev_properties_dialog_set_document),
9407         (ev_properties_dialog_new):
9408         * shell/ev-properties-dialog.h:
9409         * shell/ev-properties-fonts.c: (ev_properties_fonts_dispose),
9410         (ev_properties_fonts_class_init), (ev_properties_fonts_init),
9411         (update_progress_label), (job_fonts_finished_cb),
9412         (ev_properties_fonts_set_document), (ev_properties_fonts_new):
9413         * shell/ev-properties-fonts.h:
9414         * shell/ev-properties.c:
9415         * shell/ev-properties.h:
9416         * shell/ev-window.c: (ev_window_setup_document),
9417         (ev_window_cmd_file_properties):
9418
9419         Split the properties pages in two different objects, depend
9420         only on the backend where possible, use widgets instead
9421         of gobject for the glade part, reimplement the dialog
9422         itself with gtk.
9423         I need this to implement nautilus properties page.
9424
9425 2005-07-03  Matthew S. Wilson  <msw@rpath.com>
9426
9427         * tiff/tiff-document.c (tiff_document_ps_export_begin) 
9428         (tiff_document_ps_export_do_page, tiff_document_ps_export_end) 
9429         (tiff_document_document_ps_exporter_iface_init): implement the ps
9430         exporter interface for tiff documents
9431
9432         * tiff/tiff2ps.c: added a modified version of tiff2ps.c from
9433         libtiff to implement TIFF postscript export
9434
9435         * tiff/tiff2ps.h: added a header file for external tiff2ps
9436         functions.
9437
9438         * tiff/Makefile.am (libtiffdocument_la_SOURCES): add tiff2ps.c and
9439         tiff2ps.h
9440
9441 2005-07-03  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9442
9443         * shell/ev-view.c: (scroll_to_current_page),
9444         (ev_view_set_fullscreen), (ev_view_set_presentation):
9445         
9446         Scroll to current page when exit from presentation
9447
9448 2005-07-03  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9449
9450         * shell/ev-window.c: (update_document_mode),
9451         (ev_window_run_fullscreen), (ev_window_stop_fullscreen),
9452         (ev_window_cmd_view_fullscreen), (ev_window_stop_presentation),
9453         (ev_window_cmd_view_presentation), (ev_window_cmd_escape):
9454         
9455         Exit from fullscreen mode when switch to presentation. Fix for
9456         bug 309365
9457
9458 2005-07-02  Matthew S. Wilson  <msw@rpath.com>
9459
9460         * shell/ev-pixbuf-cache.c (ev_pixbuf_cache_get_selection_pixbuf):
9461         return NULL if the document does not implement the selection
9462         interface.
9463
9464 2005-07-02  Matthew S. Wilson  <msw@rpath.com>
9465
9466         * tiff/tiff-document.c (tiff_document_get_page_size): scale the
9467         reported height by using the resolution aspect ratio
9468         (tiff_document_render_pixbuf): scale the pixbuf using the
9469         resolution aspect ratio
9470
9471 2005-07-01  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9472
9473         * configure.ac:
9474         
9475         Require libgnomeprint >= 2.5.1. Thanks to Colin Slater 
9476         <kiltedaco@gmail.com>
9477         
9478         * djvu/djvu-document.c: (djvu_document_get_orientation),
9479         (djvu_document_set_orientation), (djvu_document_get_page_size),
9480         (rotate_pixbuf), (djvu_document_render_pixbuf),
9481         (djvu_document_document_iface_init):
9482         * dvi/dvi-document.c: (dvi_document_get_orientation),
9483         (dvi_document_set_orientation), (dvi_document_get_page_size),
9484         (rotate_pixbuf), (dvi_document_render_pixbuf),
9485         (dvi_document_document_iface_init):
9486         
9487         Dvi and djvu backends are ported to new API
9488
9489 Fri Jul  1 00:10:15 2005  Jonathan Blandford  <jrb@redhat.com>
9490
9491         * backend/ev-selection.c: (ev_selection_get_selection_region),
9492         (ev_selection_get_selection_map):
9493         * backend/ev-selection.h:
9494         * pdf/ev-poppler.cc:
9495         * shell/ev-jobs.c: (ev_job_render_new), (ev_job_render_run):
9496         * shell/ev-jobs.h:
9497         * shell/ev-pixbuf-cache.c: (dispose_cache_job_info),
9498         (job_finished_cb), (copy_job_to_job_info), (add_job_if_needed),
9499         (ev_pixbuf_cache_get_text_mapping):
9500         * shell/ev-pixbuf-cache.h:
9501         * shell/ev-view.c: (location_in_text),
9502         (ev_view_motion_notify_event), (ev_view_set_cursor): Add I-Beam
9503         support to EvView.  Now we can see where we can select!  Sweet!
9504
9505 2005-06-30  Kristian Høgsberg  <krh@redhat.com>
9506
9507         * shell/ev-view.c (ev_view_button_press_event): Fix
9508         event->y + view->scroll_x typo.
9509
9510 2005-06-30  Kristian Høgsberg  <krh@redhat.com>
9511
9512         * pdf/ev-poppler.cc: Adjust to poppler API changes; use a
9513         sub-GdkPixbuf instead of passing dest_x and dest_y.
9514         
9515         * shell/ev-view.c: (view_point_to_doc_point),
9516         (view_rect_to_doc_rect), (ev_view_button_press_event),
9517         (ev_view_motion_notify_event), (compute_new_selection_rect),
9518         (gdk_rectangle_point_in), (compute_new_selection_text),
9519         (compute_selections): Update selection code to keep the selection
9520         around as two points and not as a normalized rectangle, and fix
9521         page level selection in two-column mode.
9522
9523 2005-06-30  Alex Duggan  <aldug@astrolinux.com>
9524
9525         * shell/ev-window.c: (window_configure_event_cb): 
9526         
9527         Fix compilation
9528         
9529 2005-06-30  Marco Pesenti Gritti  <mpg@redhat.com>
9530
9531         * pdf/ev-poppler.cc:
9532
9533         Fix compilation
9534
9535 2005-06-30  Marco Pesenti Gritti  <mpg@redhat.com>
9536
9537         * shell/Makefile.am:
9538         * shell/ev-metadata-manager.c: (item_free),
9539         (ev_metadata_manager_init), (ev_metadata_manager_shutdown),
9540         (parse_value), (parseItem), (load_values),
9541         (ev_metadata_manager_get), (value_free), (ev_metadata_manager_set),
9542         (save_values), (save_item), (get_oldest), (resize_items),
9543         (ev_metadata_manager_save), (ev_metadata_manager_set_int):
9544         * shell/ev-metadata-manager.h:
9545
9546         Metadata manager from gedit but modified to use GValue, so that
9547         we dont need to keep converting from strings.
9548
9549         * configure.ac:
9550
9551         ENABLE_METADATA conditional, on when dbus is on
9552
9553         * shell/ev-application.c: (ev_application_open_uri):
9554
9555         Show the window after load so that we can initialize
9556         window size before it's showed.
9557
9558         * shell/ev-window.c: (ev_window_setup_from_metadata),
9559         (ev_window_open_uri), (window_configure_event_cb),
9560         (ev_window_init):
9561
9562         Save and load metadata information about window size.
9563         Not yet keeping states in account.
9564
9565         * shell/main.c: (main):
9566
9567         Shutdown metadata manager.
9568
9569 2005-06-24  Marco Pesenti Gritti  <mpg@redhat.com>
9570
9571         * shell/ev-application-service.xml:
9572         * configure.ac:
9573         * shell/Makefile.am:
9574         * shell/ev-application.c:
9575         * shell/ev-application.h:
9576         * shell/ev-window.c:
9577         * shell/ev-window.h:
9578         * shell/main.c:
9579
9580         Add an optional dbus interface (--enable-dbus).
9581         Rework application code, mainly to be easier to
9582         use "remotely".
9583         Do not open multiple windows with the same document,
9584         spatial evince!
9585
9586 Thu Jun 30 01:50:14 2005  Jonathan Blandford  <jrb@redhat.com>
9587
9588         * shell/ev-pixbuf-cache.c (clear_selection_if_needed): unref the
9589         pixbuf iff it exists.
9590
9591 Thu Jun 30 01:43:00 2005  Jonathan Blandford  <jrb@redhat.com>
9592
9593         * shell/*:
9594         * backend/ev-render-context.[ch]:
9595         * backend/ev-selection.[ch]:
9596
9597         Massive changes.  We now support text selection of pdfs, and not
9598         just rectangular selection.  This is pretty broken still, but I
9599         want to get something into CVS.
9600
9601 2005-06-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9602
9603         * pdf/ev-poppler.cc:
9604         
9605         Fix for Bug 309080: crash on window close.
9606         
9607         * shell/ev-page-action.c: (page_changed_cb):
9608         
9609         Fix for Bug 309168: Fix build with gcc 2.95. Thanks to
9610         jensgr@gmx.net (Jens Granseuer).
9611
9612 2005-06-25  Marcel Telka  <marcel@telka.sk>
9613
9614         * configure.in (ALL_LINGUAS): Added sk.
9615
9616 2005-06-24  Carlos Garcia Campos  <carlosgc@gnome.org>
9617
9618         * shell/ev-window.c: Make rotate menu entries unsensitive if there is
9619         not a document open
9620
9621 2005-06-24  Marco Pesenti Gritti  <mpg@redhat.com>
9622
9623         * NEWS:
9624         * configure.ac:
9625
9626         Release 0.3.2
9627
9628         * cut-n-paste/recent-files/Makefile.am:
9629
9630         Fix make distcheck
9631
9632 2005-06-24  Marco Pesenti Gritti  <mpg@redhat.com>
9633
9634         * pixbuf/pixbuf-document.c: (pixbuf_document_get_orientation),
9635         (pixbuf_document_set_orientation), (rotate_pixbuf),
9636         (pixbuf_document_get_page_size), (pixbuf_document_render_pixbuf),
9637         (pixbuf_document_document_iface_init), (pixbuf_document_init):
9638
9639         Implement rotation and cleanup the code a bit.
9640
9641         * tiff/tiff-document.c: (tiff_document_get_page_size),
9642         (tiff_document_get_orientation), (tiff_document_set_orientation),
9643         (rotate_pixbuf), (tiff_document_render_pixbuf),
9644         (tiff_document_document_iface_init), (tiff_document_init):
9645
9646         Implement rotation. Was the quicker solution for the release
9647         but we really need to share this code in the shell.
9648
9649 2005-06-24  Marco Pesenti Gritti  <mpg@redhat.com>
9650
9651         * pdf/ev-poppler.cc:
9652
9653         Enable rotation, require poppler cvs. Fix a leak.
9654
9655 2005-06-24  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9656
9657         * shell/ev-window.c: (update_action_sensitivity):
9658         
9659         Make properties unsensitive if document backend doesn't provide
9660         any info
9661
9662 2005-06-24  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9663
9664         * dvi/mdvi-lib/bitmap.c: (bitmap_alloc), (bitmap_alloc_raw),
9665         (bitmap_flip_horizontally), (bitmap_flip_vertically),
9666         (bitmap_flip_diagonally), (bitmap_rotate_clockwise),
9667         (bitmap_rotate_counter_clockwise), (bitmap_flip_rotate_clockwise),
9668         (bitmap_flip_rotate_counter_clockwise):
9669         * dvi/mdvi-lib/color.c: (mdvi_push_color), (get_color_table):
9670         * dvi/mdvi-lib/common.c: (read_string), (buff_free), (buff_add),
9671         (buff_gets):
9672         * dvi/mdvi-lib/common.h:
9673         * dvi/mdvi-lib/dvimisc.c: (mdvi_push_color):
9674         * dvi/mdvi-lib/dviread.c: (get_bytes), (dreset), (define_font),
9675         (opendvi), (mdvi_reload), (mdvi_init_context),
9676         (mdvi_destroy_context), (mdvi_dopage), (special):
9677         * dvi/mdvi-lib/font.c: (font_drop_one), (font_free_unused):
9678         * dvi/mdvi-lib/fontmap.c: (read_encoding), (destroy_encoding),
9679         (file_hash_free), (register_encoding), (parse_spec),
9680         (mdvi_load_fontmap), (free_ent), (mdvi_init_fontmaps),
9681         (mdvi_add_fontmap_file), (mdvi_ps_read_fontmap),
9682         (mdvi_ps_flush_fonts), (mdvi_ps_find_font), (mdvi_ps_get_metrics):
9683         * dvi/mdvi-lib/fontsrch.c: (mdvi_list_font_class),
9684         (mdvi_register_font_type), (mdvi_unregister_font_type),
9685         (lookup_font), (mdvi_add_font), (mdvi_font_retry):
9686         * dvi/mdvi-lib/gf.c: (gf_read_bitmap), (gf_load_font):
9687         * dvi/mdvi-lib/hash.c: (mdvi_hash_remove), (mdvi_hash_remove_ptr),
9688         (mdvi_hash_destroy_key), (mdvi_hash_reset):
9689         * dvi/mdvi-lib/pagesel.c: (mdvi_parse_range),
9690         (mdvi_parse_page_spec), (mdvi_free_page_spec), (main):
9691         * dvi/mdvi-lib/paper.c: (mdvi_free_paper_specs):
9692         * dvi/mdvi-lib/pk.c: (pk_lookup), (pk_lookupn), (pk_load_font):
9693         * dvi/mdvi-lib/sp-epsf.c: (epsf_special):
9694         * dvi/mdvi-lib/special.c: (mdvi_register_special),
9695         (mdvi_unregister_special), (mdvi_flush_specials):
9696         * dvi/mdvi-lib/t1.c: (t1_lookup_font), (t1_really_load_font),
9697         (t1_font_remove):
9698         * dvi/mdvi-lib/tfm.c: (get_tfm_chars):
9699         * dvi/mdvi-lib/tfmfile.c: (afm_load_file), (tfm_load_file),
9700         (ofm1_load_file), (ofm_load_file), (get_font_metrics),
9701         (free_font_metrics), (flush_font_metrics):
9702         * dvi/mdvi-lib/tt.c: (tt_really_load_font), (tt_get_bitmap),
9703         (tt_font_remove):
9704         * dvi/mdvi-lib/util.c: (mdvi_malloc), (mdvi_realloc),
9705         (mdvi_calloc), (mdvi_free), (mdvi_strdup), (mdvi_strncpy),
9706         (mdvi_strndup), (mdvi_memdup), (xstradd), (dstring_append),
9707         (dstring_insert), (dstring_new), (dstring_reset):
9708         * dvi/mdvi-lib/vf.c: (vf_load_font), (vf_free_macros):
9709         
9710         Rename xmalloc and xfree to mdvi_malloc and mdvi_free to
9711         avoid conflict with libtool on FC4
9712         
9713         * shell/ev-window.c: (ev_window_cmd_help_about):
9714         
9715         Update copyright year. Fix for bug 308828.
9716
9717 2005-06-23  Nikolay V. Shmyrev  <nshmyrev@yandex.ru>
9718
9719         * shell/ev-view.c: (add_scroll_binding_keypad),
9720         (ev_view_binding_activated), (ev_view_class_init),
9721         (on_adjustment_value_changed):
9722         
9723         Bug 170874: Arrow keys switch pages in presentation mode
9724
9725 2005-06-23  Nikolay V. Shmyrev  <nshmyrev@yandex.ru>
9726
9727         * shell/ev-window.c: (ev_window_sidebar_visibility_changed_cb):
9728         
9729         Fix for Bug 308265: Sidebar dissappears coming out of 
9730         Presentation mode
9731
9732 2005-06-23  Nikolay V. Shmyrev  <nshmyrev@yandex.ru>
9733
9734         * shell/ev-application.c: (ev_application_open):
9735         * shell/ev-document-types.c: (ev_document_types_add_filters),
9736         (ev_document_types_add_filters_for_type):
9737         * shell/ev-document-types.h:
9738         * shell/ev-window.c: (ev_window_cmd_save_as):
9739         
9740         Suggest basename as template when saving, provide filters
9741         for save dialog. It's bug 308402
9742
9743 2005-06-20  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9744
9745         * pdf/ev-poppler.cc:
9746         * shell/ev-sidebar-links.c: (job_finished_callback):
9747         * shell/ev-view.c: (update_find_status_message):
9748         
9749         Some leaks fixed
9750
9751 2005-06-19  Christian Persch  <chpe@cvs.gnome.org>
9752
9753         * cut-n-paste/recent-files/egg-recent-view-uimanager.c:
9754         (egg_recent_view_uimanager_set_list):
9755
9756         Fix buglet in !show_numbers case.
9757
9758 2005-06-19  Christian Persch  <chpe@cvs.gnome.org>
9759
9760         * cut-n-paste/recent-files/egg-recent-view-uimanager.c:
9761         (connect_proxy_cb), (egg_recent_view_uimanager_set_list):
9762
9763         Use pango ellipsisation.
9764
9765         * pdf/ev-poppler.cc:
9766
9767         Fix refcount leak, from nsh.
9768
9769 2005-06-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9770
9771         * cut-n-paste/recent-files/Makefile.am:
9772         * cut-n-paste/recent-files/egg-recent-view-gtk.c:
9773         * cut-n-paste/recent-files/egg-recent-view-gtk.h:
9774         
9775         Removed EggRecentViewGtk
9776         
9777         * cut-n-paste/recent-files/egg-recent-view-uimanager.c:
9778         * cut-n-paste/recent-files/egg-recent-view-uimanager.h:
9779         * shell/ev-window.c: (ev_window_cmd_recent_file_activate),
9780         (ev_window_setup_recent):
9781         
9782         Use ViewUIManager instead of ViewGtk. Less leaks, more compatibility
9783         with other projects
9784
9785 2005-06-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9786
9787         * cut-n-paste/recent-files/egg-recent-view-gtk.c:
9788         (egg_recent_view_gtk_finalize):
9789
9790         Fix memory leak
9791
9792         * cut-n-paste/toolbar-editor/Makefile.am:
9793         
9794         Fix location of cursor icon.
9795         
9796         * pdf/ev-poppler.cc:
9797         * shell/ev-page-action.c: (build_new_tree_cb), (match_selected_cb),
9798         (display_completion_text), (match_completion):
9799         * shell/ev-sidebar-links.c: (ev_sidebar_links_dispose),
9800         (selection_changed_callback), (create_loading_model),
9801         (print_section_cb), (links_page_num_func),
9802         (update_page_callback_foreach):
9803         * shell/ev-window.c: (ev_window_dispose):
9804         
9805         Small memory fixes. Links model now store objects instead
9806         of pointers to improve memory management. 
9807
9808 2005-06-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9809
9810         * shell/ev-window.c: (zoom_control_changed_cb):
9811         
9812         Fix update of zoom control (bug 308268).
9813
9814 Sat Jun 18 22:46:42 2005  Jonathan Blandford  <jrb@redhat.com>
9815
9816         * shell/ev-properties.c (set_property): escape the text correctly.
9817         Handles non-UTF-8 properties and escaped properties.  Also, sets
9818         the text to "<i>None</i>" if the property isn't set.
9819
9820         * data/evince-properties.glade: Change the label to be ellipsized,
9821         and give it a minimum size.
9822
9823 2005-06-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9824
9825         * lib/ev-file-helpers.c: (ev_file_helpers_shutdown):
9826         * shell/ev-sidebar-links.c: (create_loading_model):
9827         * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_dispose):
9828         * shell/ev-view.c: (ev_view_set_document):
9829         * shell/ev-window.c: (ev_window_dispose):
9830         
9831         Various small fixes, mostly memory leaks. Thanks to valgrind.
9832
9833 2005-06-19  Martin Kretzschmar  <martink@gnome.org>
9834
9835         * ps/ps-document.c: remove the locale.h include again ;-). And
9836         kill the (bogus) setlocale/savelocale business.
9837
9838 2005-06-19  Jaap A. Haitsma <jaap@haitsma.org>
9839
9840         * ps/ps-document.c:
9841         
9842         Include locale.h to fix build
9843         
9844         * shell/ev-sidebar.c:
9845         
9846         Remove unnecessary includes
9847
9848 2005-06-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9849
9850         * dvi/dvi-document.c: (dvi_document_load):
9851         * dvi/mdvi-lib/dviread.c: (mdvi_init_context):
9852         * po/POTFILES.in:
9853         
9854         Check for incorrect dvi files. Fix parsing dvi on AMD64
9855         platform. Thanks to tester@tester.ca (Olivier Crete).
9856
9857 2005-06-18  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9858
9859         * shell/ev-page-action.c: (match_selected_cb),
9860         (display_completion_text), (match_completion), (update_model):
9861         * shell/ev-sidebar-links.c: (ev_sidebar_links_dispose),
9862         (expand_open_links):
9863         * shell/ev-sidebar.c: (ev_sidebar_destroy),
9864         (ev_sidebar_menu_item_activate_cb), (ev_sidebar_add_page),
9865         (ev_sidebar_set_document):
9866         * shell/ev-window.c: (ev_window_xfer_job_cb),
9867         (sidebar_widget_model_set), (sidebar_page_main_widget_update_cb):
9868         
9869         Fixed lot's of memory leaks, for example, memory leak on reload, 
9870         described in bug 307793.
9871
9872 2005-06-18  Marco Pesenti Gritti  <mpg@redhat.com>
9873
9874         * pdf/ev-poppler.cc:
9875         * shell/ev-sidebar-thumbnails.c: (clear_range), (add_range),
9876         (update_visible_range), (adjustment_changed_cb),
9877         (ev_sidebar_thumbnails_fill_model),
9878         (ev_sidebar_thumbnails_refresh),
9879         (ev_sidebar_tree_selection_changed),
9880         (ev_sidebar_icon_selection_changed),
9881         (ev_sidebar_thumbnails_use_icon_view),
9882         (ev_sidebar_thumbnails_set_document):
9883         * shell/ev-sidebar-thumbnails.h:
9884         * shell/ev-window.c: (ev_window_cmd_edit_rotate_left),
9885         (ev_window_cmd_edit_rotate_right), (ev_window_init):
9886
9887         Refresh thumbnails when changing orientation. Not fully
9888         working yet becuase of a sidebar bug.
9889
9890         Set page orientation to poppler page everywhere. This sucks
9891         really need to fix poppler.
9892
9893 2005-06-18  Marco Pesenti Gritti  <mpg@redhat.com>
9894
9895         * cut-n-paste/recent-files/egg-recent-view-gtk.c:
9896         (egg_recent_view_gtk_new_menu_item),
9897         (egg_recent_view_gtk_set_property),
9898         (egg_recent_view_gtk_get_property),
9899         (egg_recent_view_gtk_class_init), (egg_recent_view_gtk_init),
9900         (egg_recent_view_gtk_set_tooltip_func),
9901         (egg_recent_view_gtk_set_label_width),
9902         (egg_recent_view_gtk_get_label_width):
9903         * cut-n-paste/recent-files/egg-recent-view-gtk.h:
9904
9905         Sync with libegg (ellipsize labels)
9906
9907 2005-06-18  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
9908
9909         * data/evince-ui.xml:
9910         * shell/ev-window.c: (ev_window_cmd_go_forward),
9911         (ev_window_cmd_go_backward):
9912         
9913         Shift + PageUp moves 10 Pages. Fix for 306125
9914
9915 2005-06-17  Marco Pesenti Gritti  <mpg@redhat.com>
9916
9917         * pdf/ev-poppler.cc:
9918
9919         Add a flag to check if orientation has been overriden
9920
9921 2005-06-17  Martin Kretzschmar  <martink@gnome.org>
9922
9923         * ps/ps.c (psscan, psfree): read "Creator:" comment, free creator
9924         field if necessary.
9925
9926         * ps/ps.h: add creator field to document.
9927
9928         * ps/ps-document.c (ps_document_get_info): set format to PostScript,
9929         set creator field.
9930
9931 2005-06-17  Marco Pesenti Gritti  <mpg@redhat.com>
9932
9933         * data/evince-properties.glade:
9934         * shell/ev-properties.c: (ev_properties_set_document):
9935
9936         s/PDF Version/Format
9937
9938 2005-06-17  Marco Pesenti Gritti  <mpg@redhat.com>
9939
9940         * shell/ev-properties.c: (ev_properties_set_document):
9941
9942         Remove unnecessary translations
9943
9944 2005-06-17  Marco Pesenti Gritti  <mpg@redhat.com>
9945
9946         * cut-n-paste/toolbar-editor/Makefile.am:
9947
9948         Correct library name    
9949
9950 2005-06-17  Marco Pesenti Gritti  <mpg@redhat.com>
9951
9952         * configure.ac:
9953         * cut-n-paste/recent-files/egg-recent-model.c:
9954         (egg_recent_model_write_raw), (egg_recent_model_lock_file),
9955         (egg_recent_model_unlock_file):
9956         * cut-n-paste/recent-files/egg-recent-util.c:
9957         (egg_recent_util_get_unique_id):
9958         * cut-n-paste/recent-files/update-from-egg.sh:
9959         * cut-n-paste/toolbar-editor/Makefile.am:
9960         * cut-n-paste/toolbar-editor/egg-editable-toolbar.c:
9961         * cut-n-paste/toolbar-editor/egg-editable-toolbar.h:
9962         * cut-n-paste/toolbar-editor/egg-toolbar-editor.c:
9963         * cut-n-paste/toolbar-editor/egg-toolbars-model.c:
9964         (egg_toolbars_model_get_type):
9965         * cut-n-paste/toolbar-editor/egg-toolbars-model.h:
9966
9967         Better makefile for toolbar editor and update everything
9968         to latest libegg.
9969
9970 2005-06-17  Marco Pesenti Gritti  <mpg@redhat.com>
9971
9972         * shell/ev-window.c: (update_document_mode):
9973
9974         Prefer presentation mode when the document
9975         require fullscreen.
9976
9977 2005-06-17  Marco Pesenti Gritti  <mpg@redhat.com>
9978
9979         * data/evince-ui.xml:
9980         * shell/ev-window.c:
9981
9982         Add control-equal for zooming
9983
9984 2005-06-17  Theppitak Karoonboonyanan  <thep@linux.thai.net>
9985
9986         * configure.ac: Added 'th' (Thai) to ALL_LINGUAS.
9987
9988 2005-06-16  Marco Pesenti Gritti  <mpg@redhat.com>
9989
9990         * backend/ev-document.c: (ev_document_get_orientation):
9991         * backend/ev-document.h:
9992         * pdf/ev-poppler.cc:
9993         * ps/ps-document.c: (ps_document_get_orientation),
9994         (ps_document_set_orientation), (ps_document_document_iface_init):
9995
9996         Add a get_orientation api. Improve set_orientation.
9997
9998         * data/evince-ui.xml:
9999         * shell/ev-view.c: (ev_view_set_orientation),
10000         (ev_view_rotate_right), (ev_view_rotate_left):
10001         * shell/ev-view.h:
10002         * shell/ev-window.c: (ev_window_cmd_edit_rotate_left),
10003         (ev_window_cmd_edit_rotate_right):
10004
10005         Better ui for changing document orientation
10006
10007 2005-06-16  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10008
10009         * shell/ev-sidebar-links.c: (ev_sidebar_links_get_property),
10010         (ev_sidebar_links_class_init), (ev_sidebar_links_get_label):
10011         * shell/ev-sidebar-links.h:
10012         * shell/ev-sidebar-page.c: (ev_sidebar_page_get_type),
10013         (ev_sidebar_page_iface_init):
10014         * shell/ev-sidebar-page.h:
10015         * shell/ev-sidebar-thumbnails.c:
10016         (ev_sidebar_thumbnails_get_property),
10017         (ev_sidebar_thumbnails_class_init),
10018         (ev_sidebar_thumbnails_set_document):
10019         * shell/ev-sidebar-thumbnails.h:
10020         * shell/ev-view.c: (ev_view_motion_notify_event):
10021         * shell/ev-window.c: (update_chrome_visibility),
10022         (ev_window_cmd_focus_page_selector),
10023         (ev_window_update_fullscreen_popup), (view_actions_focus_in_cb),
10024         (sidebar_page_main_widget_update_cb), (ev_window_init):
10025         
10026         Autoraise toolbar on GoToPage binding and fix bindings in
10027         EvSidebarThumbnails page.
10028
10029 2005-06-15  Christian Persch  <chpe@cvs.gnome.org>
10030
10031         * shell/ev-properties.c: (update_progress_label):
10032
10033         Hide the progress label when finished; bug #307697.
10034
10035 2005-06-15  Marco Pesenti Gritti <mpg@redhat.com>
10036
10037         * pdf/ev-poppler.cc:
10038
10039         Enable is_open for links, you will need poppler cvs
10040
10041         * shell/ev-properties.c: (job_fonts_finished_cb):
10042
10043         Get a lock on the document when filling the tree view
10044
10045 2005-06-15  Marco Pesenti Gritti <mpg@redhat.com>
10046
10047         * backend/ev-document-links.h:
10048         * pdf/ev-poppler.cc:
10049         * shell/ev-sidebar-links.c: (create_loading_model),
10050         (expand_open_links), (job_finished_callback):
10051
10052         Expand links when specified by the document.
10053         Depend on a poppler api (defined out for now)
10054
10055 2005-06-15  Marco Pesenti Gritti <mpg@redhat.com>
10056
10057         * shell/ev-properties.c: (ev_properties_dispose),
10058         (ev_properties_class_init), (dialog_destroy_cb),
10059         (ev_properties_init), (job_fonts_finished_cb), (setup_fonts_view),
10060         (ev_properties_set_document), (ev_properties_new),
10061         (ev_properties_show):
10062         * shell/ev-properties.h:
10063
10064         Make it an object, cleanup the code, api to show it as transient
10065         and to set the document.
10066
10067         * shell/ev-window.c: (ev_window_setup_document),
10068         (ev_window_cmd_file_properties):
10069
10070         Adapt to EvProperties changes, do not show multiple
10071         times, update it when document changes.
10072
10073 2005-06-14  Marco Pesenti Gritti <mpg@redhat.com>
10074
10075         * ps/gstypes.h:
10076         * ps/ps-document.c: (ps_document_init), (get_page_orientation),
10077         (ps_document_set_orientation), (ps_document_document_iface_init):
10078         * ps/ps-document.h:
10079
10080         Implement orientation here too
10081
10082         * shell/ev-properties.c: (ev_properties_new):
10083         * data/evince-properties.glade:
10084
10085         Hide the fonts page for backends that doesnt
10086         support it.     
10087
10088 2005-06-14  Marco Pesenti Gritti <mpg@redhat.com>
10089
10090         * backend/ev-document.c: (ev_document_set_orientation):
10091         * backend/ev-document.h:
10092         * pdf/ev-poppler.cc:
10093
10094         Add orientation api. Currently poppler api is not optimal,
10095         we need to set orientation every time we _get a page.
10096         I will try to fix that at some point.
10097
10098         * data/evince-ui.xml:
10099         * shell/ev-window.c: (ev_window_cmd_edit_landscape),
10100         (ev_window_cmd_edit_portrait), (ev_window_cmd_edit_flip):
10101
10102         Add orientation menu items
10103
10104         * shell/ev-page-cache.c: (ev_page_cache_clear):
10105         * shell/ev-page-cache.h:
10106
10107         Add api to clear the cache
10108
10109         * shell/ev-view.c: (setup_caches), (clear_caches),
10110         (ev_view_set_document), (ev_view_zoom_out),
10111         (ev_view_set_orientation):
10112         * shell/ev-view.h:
10113
10114         Implement orientation changing
10115
10116 2005-06-13  Marco Pesenti Gritti <mpg@redhat.com>
10117
10118         * backend/ev-document-fonts.c: (ev_document_fonts_get_progress),
10119         (ev_document_fonts_scan), (ev_document_fonts_fill_model):
10120         * backend/ev-document-fonts.h:
10121
10122         Separate scan and fill so that we can incrementally fill from
10123         the main thread. Add a progress api.
10124
10125         * data/evince-properties.glade:
10126         * pdf/ev-poppler.cc:
10127         * shell/ev-jobs.c: (ev_job_fonts_new), (ev_job_fonts_run):
10128         * shell/ev-jobs.h:
10129         * shell/ev-properties.c: (update_progress_label),
10130         (job_fonts_finished_cb), (setup_fonts_view):
10131
10132         Incrementally feel the list and show the progress
10133         percentage in a label like acrobat does.
10134
10135         You are going to need poppler cvs
10136
10137 2005-06-11  Marco Pesenti Gritti <mpg@redhat.com>
10138
10139         * backend/ev-document-fonts.c: (ev_document_fonts_fill_model):
10140         * backend/ev-document-fonts.h:
10141         * pdf/ev-poppler.cc:
10142
10143         Make fonts model fill incrementally.
10144
10145         * shell/ev-job-queue.c: (handle_job), (search_for_jobs_unlocked),
10146         (no_jobs_available_unlocked), (ev_job_queue_init), (find_queue),
10147         (ev_job_queue_remove_job):
10148         * shell/ev-jobs.c: (ev_job_fonts_init), (ev_job_fonts_class_init),
10149         (ev_job_fonts_new), (ev_job_fonts_run):
10150         * shell/ev-jobs.h:
10151
10152         New job for fonts scanning
10153
10154         * shell/ev-properties.c: (job_fonts_finished_cb),
10155         (fill_fonts_treeview), (setup_fonts_view), (ev_properties_new):
10156         * shell/ev-properties.h:
10157         * shell/ev-window.c: (ev_window_cmd_file_properties):
10158
10159         Incrementally feel the treeview using the new job. Show Loading...
10160         message until scanning is completed.
10161
10162         Hopefully I didnt break the build without the poppler patch.
10163
10164 2005-06-10  Nickolay V. Shmyrev <nshmyrev@yandex.ru>
10165
10166         * shell/ev-application.c: (ev_application_open):
10167         * shell/ev-document-types.c: (ev_document_type_from_from_mime),
10168         (ev_document_type_get_type), (ev_document_type_lookup):
10169         * shell/ev-document-types.h:
10170         * shell/ev-job-xfer.c: (ev_job_xfer_dispose), (ev_job_xfer_run):
10171         * shell/ev-job-xfer.h:
10172         * shell/ev-window.c: (ev_window_clear_local_uri),
10173         (ev_window_load_job_cb), (ev_window_xfer_job_cb),
10174         (ev_window_open_uri), (ev_window_add_recent), (ev_window_dispose):
10175         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
10176         
10177         Transfer remote documents to tmp directory to display them later.
10178
10179 2005-06-10  Marco Pesenti Gritti <mpg@redhat.com>
10180
10181         * backend/ev-document-info.h:
10182         * shell/ev-properties.c: (ev_properties_new):
10183
10184         s/GTime*/GTime. Not sure why we was using a pointer
10185         at all there!
10186
10187 Wed Jun  8 01:04:22 2005  Jonathan Blandford  <jrb@redhat.com>
10188
10189         * shell/ev-sidebar-thumbnails.c: Use a GtkIconView in certain
10190         situations.  That situation is that you're using GTK+-HEAD with
10191         the patch at #306726 is applied, and you have a document with <
10192         1500 pages in it.  It's not quite as uniformly nice as the
10193         TreeView, but should be better in the long run.
10194
10195         I'm pretty sure I guarded against breaking compilation with
10196         HAVE_GTK_ICON_VIEW_GET_VISIBLE_RANGE gaurds, though it's possible
10197         I missed some.
10198
10199         * shell/ev-window.c (ev_window_init): We don't have our tree/list
10200         widget yet, so I commented that code out
10201         enable_view_actions_for_widget() for now.  Need to figure this
10202         out.
10203
10204         * shell/ev-page-action.c (match_selected_cb): emit the right
10205         signals.  Our cool C-l completion now works.
10206
10207 2005-06-08  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10208
10209         * backend/Makefile.am:
10210         * backend/ev-document-fonts.c:
10211         * backend/ev-document-links.c:
10212         * backend/ev-document.c: (ev_document_load):
10213         * backend/ev-document.h:
10214         * backend/ev-job-queue.c:
10215         * backend/ev-job-queue.h:
10216         * backend/ev-jobs.c:
10217         * backend/ev-jobs.h:
10218         * backend/ev-page-cache.c:
10219         * backend/ev-page-cache.h:
10220
10221         EvPageCache and EvJobs are moved to shell.
10222
10223         * lib/ev-file-helpers.c: (ev_file_helpers_shutdown),
10224         (ev_tmp_filename):
10225         * lib/ev-file-helpers.h:
10226         
10227         New helper to work with temporary files
10228         
10229         * shell/Makefile.am:
10230         * shell/ev-application.c: (ev_application_open):
10231         * shell/ev-application.h:
10232         * shell/ev-job-queue.c: (remove_job_from_queue_locked),
10233         (remove_job_from_async_queue), (add_job_to_async_queue),
10234         (add_job_to_queue_locked), (notify_finished), (job_finished_cb),
10235         (handle_job), (search_for_jobs_unlocked),
10236         (no_jobs_available_unlocked), (ev_render_thread),
10237         (ev_job_queue_run_next), (ev_job_queue_init), (find_queue),
10238         (ev_job_queue_add_job), (move_job_async), (move_job),
10239         (ev_job_queue_update_job), (ev_job_queue_remove_job):
10240         * shell/ev-job-queue.h:
10241         * shell/ev-job-xfer.c: (ev_job_xfer_init), (ev_job_xfer_dispose),
10242         (ev_job_xfer_class_init), (ev_job_xfer_new), (ev_job_xfer_run):
10243         * shell/ev-job-xfer.h:
10244         * shell/ev-jobs.c: (ev_job_init), (ev_job_dispose),
10245         (ev_job_class_init), (ev_job_links_init), (ev_job_links_dispose),
10246         (ev_job_links_class_init), (ev_job_render_init),
10247         (ev_job_render_dispose), (ev_job_render_class_init),
10248         (ev_job_thumbnail_init), (ev_job_thumbnail_dispose),
10249         (ev_job_thumbnail_class_init), (ev_job_load_init),
10250         (ev_job_load_dispose), (ev_job_load_class_init), (ev_job_finished),
10251         (ev_job_links_new), (ev_job_links_run), (ev_job_render_new),
10252         (render_finished_cb), (ev_job_render_run), (ev_job_thumbnail_new),
10253         (ev_job_thumbnail_run), (ev_job_load_new), (ev_job_load_run):
10254         * shell/ev-jobs.h:
10255         * shell/ev-page-action.c: (ev_page_action_set_document):
10256         * shell/ev-page-cache.c: (ev_page_cache_init),
10257         (ev_page_cache_class_init), (ev_page_cache_finalize),
10258         (ev_page_cache_new), (ev_page_cache_get_n_pages),
10259         (ev_page_cache_get_current_page), (ev_page_cache_set_current_page),
10260         (ev_page_cache_set_page_label), (ev_page_cache_set_link),
10261         (ev_page_cache_get_title), (ev_page_cache_get_size),
10262         (ev_page_cache_get_max_width), (ev_page_cache_get_max_height),
10263         (ev_page_cache_get_height_to_page),
10264         (ev_page_cache_get_max_label_chars),
10265         (ev_page_cache_get_page_label),
10266         (ev_page_cache_has_nonnumeric_page_labels),
10267         (ev_page_cache_get_info), (ev_page_cache_next_page),
10268         (ev_page_cache_prev_page), (ev_page_cache_get):
10269         * shell/ev-page-cache.h:
10270         * shell/ev-pixbuf-cache.c: (ev_pixbuf_cache_update_range),
10271         (ev_pixbuf_cache_clear_job_sizes),
10272         (ev_pixbuf_cache_add_jobs_if_needed),
10273         (ev_pixbuf_cache_set_page_range):
10274         * shell/ev-print-job.c: (ev_print_job_use_print_dialog_settings):
10275         * shell/ev-sidebar-links.c: (ev_sidebar_links_set_document):
10276         * shell/ev-sidebar-thumbnails.c:
10277         (ev_sidebar_tree_selection_changed),
10278         (ev_sidebar_thumbnails_set_document):
10279         * shell/ev-statusbar.c: (ev_statusbar_destroy),
10280         (ev_statusbar_class_init), (ev_statusbar_init), (ev_statusbar_new),
10281         (ev_statusbar_get_context_id), (ev_statusbar_push),
10282         (ev_statusbar_pop), (ev_statusbar_set_maximized),
10283         (ev_statusbar_pulse), (ev_statusbar_show_progress),
10284         (ev_statusbar_set_progress):
10285         * shell/ev-statusbar.h:
10286         * shell/ev-view.c: (ev_view_set_document), (ev_view_find_next),
10287         (ev_view_find_previous):
10288         * shell/ev-window.c: (ev_window_is_empty),
10289         (ev_window_setup_document), (password_dialog_response),
10290         (ev_window_clear_jobs), (ev_window_load_job_cb),
10291         (ev_window_xfer_job_cb), (ev_window_open_uri),
10292         (ev_window_open_uri_list), (ev_window_cmd_recent_file_activate),
10293         (ev_window_print), (ev_window_print_range),
10294         (ev_window_state_event), (ev_window_cmd_view_reload),
10295         (menu_item_select_cb), (menu_item_deselect_cb),
10296         (view_status_changed_cb), (ev_window_dispose),
10297         (drag_data_received_cb), (ev_window_init):
10298         * shell/ev-window.h:
10299         * shell/main.c: (load_files):
10300         
10301         New statusbar to show progress on idle. Two new jobs - 
10302         xfer job and load job to load document in background. And update
10303         of page_cache clients to new location of code.
10304
10305 2005-06-08  Carlos Garcia Campos <carlosgc@gnome.org>
10306
10307         * shell/ev-application.c, shell/ev-window.[ch]: Allow multiple
10308         selection in open dialog. It also remembers the last visited directory 
10309         in the current session.
10310
10311 2005-06-08  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10312
10313         * shell/ev-properties.c: (ev_properties_new):
10314         * shell/ev-properties.h:
10315         * shell/ev-window.c: (ev_window_cmd_file_properties):
10316         
10317         Get document info from page cache instead of document itself.
10318         This should fix crash related to race conditions described in
10319         bug 306545.
10320
10321 2005-06-07  Marco Pesenti Gritti <mpg@redhat.com>
10322
10323         * ps/ps-document.c: (ps_document_init),
10324         (send_ps), (get_page_box), (output), (catchPipe), (input),
10325         (stop_interpreter), (file_length), (file_readable),
10326         (check_filecompressedb), (ps_document_enable_interpreter),
10327         (document_load), (ps_async_renderer_render_pixbuf):
10328         * ps/ps-document.h:
10329
10330         Big cleanup of the ps code
10331
10332 2005-06-07  Marco Pesenti Gritti <mpg@redhat.com>
10333
10334         * backend/Makefile.am:
10335         * backend/ev-async-renderer.c: (ev_async_renderer_get_type),
10336         (ev_async_renderer_class_init), (ev_async_renderer_render_pixbuf):
10337         * backend/ev-async-renderer.h:
10338
10339         Add an async renderer interface (method + callback) which
10340         is useful for backends like ps.
10341
10342         * backend/ev-job-queue.c: (remove_job_from_async_queue),
10343         (add_job_to_async_queue), (job_finished_cb), (handle_job),
10344         (ev_job_queue_run_next), (ev_job_queue_init), (find_queue),
10345         (ev_job_queue_add_job), (move_job_async), (move_job),
10346         (ev_job_queue_update_job), (ev_job_queue_remove_job):
10347
10348         Add queues for async renderer, these are executed on the
10349         main thread.
10350
10351         * backend/ev-jobs.c: (ev_job_render_new), (render_finished_cb),
10352         (ev_job_render_run):
10353         * backend/ev-jobs.h:
10354
10355         If the backend support async renderer interface use it.
10356
10357         * ps/ps-document.c: (ps_document_init), (push_pixbuf),
10358         (setup_pixmap), (ps_document_get_type),
10359         (ps_async_renderer_render_pixbuf),
10360         (ps_document_document_iface_init), (ps_async_renderer_iface_init):
10361
10362         Implement async renderer interface.
10363
10364 2005-06-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10365
10366         * shell/ev-sidebar-links.c: (ev_sidebar_links_dispose):
10367
10368         Cleanup links job on exit.
10369
10370 2005-06-07  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10371
10372         * cut-n-paste/toolbar-editor/egg-editable-toolbar.c:
10373         (drag_data_get_cb), (drag_data_received_cb):
10374         * cut-n-paste/toolbar-editor/egg-toolbar-editor.c:
10375         (drag_data_get_cb), (parse_item_list),
10376         (egg_toolbar_editor_load_actions):
10377         * cut-n-paste/toolbar-editor/egg-toolbars-model.c:
10378         (egg_toolbars_model_to_xml), (egg_toolbars_model_save),
10379         (parse_item_list), (parse_toolbars):
10380         * dvi/pixbuf-device.c: (dvi_pixbuf_draw_rule),
10381         (dvi_pixbuf_put_pixel):
10382         
10383         Fix gcc 4.0 warnings
10384
10385 2005-06-06  Marco Pesenti Gritti <mpg@redhat.com>
10386
10387         * ps/ps-document.c: (start_interpreter):
10388
10389         Fix warning when loading ps
10390
10391 2005-06-06  Marco Pesenti Gritti <mpg@redhat.com>
10392
10393         * ps/ps-document.c: (output):
10394
10395         Fix crash when priting gs error messages.
10396
10397 2005-06-06  Marco Pesenti Gritti <mpg@redhat.com>
10398
10399         * backend/ev-page-cache.c: (_ev_page_cache_new):
10400         * backend/ev-page-cache.h:
10401
10402         Use a const to return title so that we dont double
10403         free it. Small cleanup and fix a leak.
10404
10405         * shell/ev-window.c: (update_window_title):
10406
10407         strdup value from get_title.
10408
10409 2005-06-06  Marco Pesenti Gritti <mpg@redhat.com>
10410
10411         * shell/ev-sidebar-links.c: (job_finished_callback),
10412         (ev_sidebar_links_set_document):
10413
10414         Cleanup the old job when changing document
10415
10416 2005-06-05  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10417
10418         * shell/ev-stock-icons.c:
10419         * shell/ev-stock-icons.h:
10420         * shell/ev-window.c:
10421         
10422         Add stock icons for actions that can appear in toolbar. Fix for
10423         bug 306566.
10424
10425 2005-06-05  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10426
10427         * backend/ev-page-cache.c: (ev_page_cache_finalize),
10428         (_ev_page_cache_new), (ev_page_cache_get_max_width),
10429         (ev_page_cache_get_max_height), (ev_page_cache_get_height_to_page):
10430         * backend/ev-page-cache.h:
10431         * shell/ev-view.c: (scroll_to_current_page),
10432         (view_update_range_and_current_page), (get_page_y_offset),
10433         (get_page_extents), (ev_view_size_request_continuous_dual_page),
10434         (ev_view_size_request_continuous),
10435         (ev_view_zoom_for_size_continuous_and_dual_page),
10436         (ev_view_zoom_for_size_continuous):
10437         
10438         More compact EvView layout in document with pages of different size.
10439
10440 Sat Jun  4 19:20:57 2005  Jonathan Blandford  <jrb@redhat.com>
10441
10442         * shell/ev-window.c (ev_window_cmd_file_properties): fix
10443         compilation.
10444
10445 2005-06-05  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10446
10447         * shell/ev-view.c: (view_set_adjustment_values):
10448         * shell/ev-window.c: (ev_window_cmd_file_properties):
10449         
10450         A bit different fix for rounding problem but it has no
10451         problems on startup. Make properties window transient to parent.
10452
10453 2005-06-04  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10454
10455         * pdf/ev-poppler.cc:
10456         
10457         More commenting of font stuff.
10458
10459 2005-06-04  Marco Pesenti Gritti <mpg@redhat.com>
10460
10461         * pdf/ev-poppler.cc:
10462
10463         Comment out some more fonts stuff. Should really
10464         work without the poppler patch now.
10465
10466 2005-06-04  Marco Pesenti Gritti <mpg@redhat.com>
10467
10468         * pdf/ev-poppler.cc:
10469
10470         Adapt to api change
10471
10472 2005-06-04  Marco Pesenti Gritti <mpg@redhat.com>
10473
10474         * data/evince-properties.glade:
10475         * pdf/ev-poppler.cc:
10476         * shell/ev-properties.c: (setup_fonts_view):
10477
10478         Set the column title. Show the dialog only
10479         once everything is setup.
10480         Getting font info can be very slow... will
10481         prolly need to make this threaded too.
10482
10483 2005-06-04  Marco Pesenti Gritti <mpg@redhat.com>
10484
10485         * backend/Makefile.am:
10486         * backend/ev-document-fonts.c: (ev_document_fonts_get_type),
10487         (ev_document_fonts_get_fonts_model):
10488         * backend/ev-document-fonts.h:
10489         * data/evince-properties.glade:
10490         * pdf/ev-poppler.cc:
10491         * shell/ev-properties.c: (setup_fonts_view), (ev_properties_new):
10492         * shell/ev-properties.h:
10493         * shell/ev-window.c: (ev_window_cmd_file_properties):
10494
10495         Implement fonts list. Defined out for now, since it depends
10496         on a not yet committed poppler patch.
10497
10498 Fri Jun  3 21:07:57 2005  Jonathan Blandford  <jrb@redhat.com>
10499
10500         * shell/ev-view.c (get_page_extents): other_page isn't necessarily
10501         page + 1.
10502
10503         * shell/ev-window.c: Make sure we add the timeout when we get a
10504         focus-in event.
10505
10506         * shell/ev-view.c (view_set_adjustment_values): Add 0.5 to
10507         adjustment->value before calculating the zoom factor to average
10508         out all of our rounding errors.  The page no longer 'drifts' when
10509         resizing.
10510
10511 2005-06-04  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10512
10513         * data/evince-properties.glade:
10514         * shell/ev-properties.c: (ev_properties_format_date),
10515         (set_property):
10516         
10517         Labels don't expand when the dialogue is resized.
10518         strftime result needs to be converted to UTF-8. Thanks
10519         to Christian Persch <chpe@gnome.org>.
10520
10521 2005-06-04  Marco Pesenti Gritti <mpg@redhat.com>
10522
10523         * data/evince-properties.glade:
10524
10525         Hide the fonts tab
10526
10527 2005-06-04  Marco Pesenti Gritti <mpg@redhat.com>
10528
10529         * backend/ev-document-info.h:
10530         * backend/ev-document.c: (ev_document_info_free):
10531         * data/evince-properties.glade:
10532         * pdf/ev-poppler.cc:
10533         * ps/ps-document.c: (ps_document_get_info):
10534         * shell/ev-properties.c: (ev_properties_format_date),
10535         (set_property), (ev_properties_new):
10536         * shell/ev-properties.h:
10537         * shell/ev-window.c: (ev_window_cmd_file_properties):
10538
10539         Rework properties code to take only EvPropertyInfo
10540         in the constructor so that it can be useful for
10541         nautilus plugin too.
10542
10543         Deal with backends that doesnt support some properties.
10544         Make set property code generic.
10545
10546 2005-06-04  Christian Persch <chpe@gnome.org>
10547
10548         * data/evince-properties.glade:
10549
10550         fix spacings, make resizeable, and make data labels
10551         selectable + ellipsised
10552
10553 2005-06-03  Marco Pesenti Gritti <mpg@redhat.com>
10554
10555         * backend/ev-document-info.h:
10556         * data/Makefile.am:
10557         * data/evince-ui.xml:
10558         * pdf/ev-poppler.cc:
10559         * shell/Makefile.am:
10560         * shell/ev-window.c: (update_action_sensitivity),
10561         (ev_window_cmd_file_properties):
10562
10563         Initial go at file properties. Patch by
10564         Emil Soleyman-Zomalan <emil@soleyman.com>.
10565         Needs love see #169583
10566
10567 2005-06-02  Marco Pesenti Gritti <mpg@redhat.com>
10568
10569         * ps/ps-document.c: (output):
10570         * ps/ps.c: (psscan):
10571
10572         Try to render even if psscan fails.
10573
10574 2005-06-01  Marco Pesenti Gritti <mpg@redhat.com>
10575
10576         * ps/ps.c: (psscan), (pscopydoc):
10577
10578         Port buffered reading code from gv
10579
10580 2005-06-01  Marco Pesenti Gritti <mpg@redhat.com>
10581
10582         * ps/ps-document.c: (interpreter_message), (output):
10583
10584         Do not fail on interpreter messages
10585
10586 2005-06-01  Marco Pesenti Gritti <mpg@redhat.com>
10587
10588         * backend/ev-document-misc.c:
10589         (ev_document_misc_get_thumbnail_frame):
10590
10591         Pages can be 0 x 0, dont assert on this case
10592
10593 2005-05-31  Marco Pesenti Gritti <mpg@redhat.com>
10594
10595         * shell/ev-sidebar-links.c: (ev_sidebar_links_dispose),
10596         (ev_sidebar_links_class_init), (ev_sidebar_links_set_document):
10597
10598         Correctly manage our reference on document. Finally the reload
10599         huge leak is gone...
10600
10601 2005-05-31  Marco Pesenti Gritti <mpg@redhat.com>
10602
10603         * ps/ps-document.c: (ps_document_dispose):
10604
10605         Forgot to chain it to the parent. Thanks chpe.
10606
10607 2005-05-31  Marco Pesenti Gritti <mpg@redhat.com>
10608
10609         * ps/ps-document.c: (ps_document_dispose),
10610         (ps_document_class_init), (stop_interpreter), (document_load):
10611
10612         Cleanup dispose a bit. Dont leak the whole pixmap.
10613
10614 2005-05-31  Marco Pesenti Gritti <mpg@redhat.com>
10615
10616         * pdf/ev-poppler.cc:
10617
10618         Release the poppler document on dispose
10619
10620 2005-05-31  Marco Pesenti Gritti <mpg@redhat.com>
10621
10622         * shell/ev-view.c: (ev_view_set_document):
10623
10624         Release ref on the pixbuf cache when changing
10625         document.
10626
10627 2005-05-31  Marco Pesenti Gritti <mpg@redhat.com>
10628
10629         * ps/ps-document.c: (ps_document_get_info):
10630
10631         Fix a double free
10632
10633 2005-05-31  Nikolay V. Shmyrev  <nshmyrev@yandex.ru>
10634
10635         * backend/ev-page-cache.c: (ev_page_cache_init),
10636         (_ev_page_cache_new), (ev_page_cache_get_max_label_chars):
10637         * backend/ev-page-cache.h:
10638         * shell/ev-page-action.c: (page_changed_cb):
10639         
10640         Set page action entry width depending on labels width. Fix
10641         for bug 305202.
10642
10643 2005-05-31  Marco Pesenti Gritti  <mpg@redhat.com>
10644
10645         * backend/ev-link.c: (ev_link_class_init):
10646
10647         Allow -1 as page value (error)
10648
10649 2005-05-31  Marco Pesenti Gritti <mpg@redhat.com>
10650
10651         * shell/ev-sidebar-thumbnails.c:
10652         (ev_sidebar_thumbnails_set_document):
10653         * shell/ev-view.c: (scroll_to_current_page),
10654         (view_set_adjustment_values), (ev_view_set_scroll_adjustments),
10655         (page_changed_cb), (on_adjustment_value_changed),
10656         (ev_view_set_document):
10657
10658         Slightly modified patch by Nickolay V. Shmyrev  <nshmyrev@yandex.ru>.
10659         Fix bug 305377
10660
10661 2005-05-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10662
10663         * configure.ac:
10664         * djvu/djvu-document.c: (djvu_document_get_page_size):
10665
10666         Require djvulibre CVS. Now djvu loading is much faster. Fix for
10667         bug 301993.
10668
10669 Sat May 28 07:38:03 2005  Jonathan Blandford  <jrb@redhat.com>
10670
10671         * shell/ev-view.c (draw_one_page): modify the expose handling to
10672         get the shadows.
10673
10674         * shell/ev-window.c (update_action_sensitivity): Respect
10675         permissions field.  Kowtow to the man.
10676
10677         * pdf/ev-poppler.cc: Get the permissions field.
10678
10679         * tiff/*c: Make a tiny bit more robust.
10680
10681 2005-05-26  Nickolay V. Shmyrev <nshmyrev@yandex.ru>
10682
10683         * djvu/djvu-document.c:
10684         
10685         Pop messages from djvu context message queue.
10686
10687 2005-05-24  Nickolay V. Shmyrev <nshmyrev@yandex.ru>
10688
10689         * configure.ac, Makefile.am, shell/Makefile.am:
10690         * tiff/Makefile.am, shell/ev-document-types.c:
10691         
10692         Cleanup tiff configure checks. Fix for bug 305218.
10693
10694 2005-05-24  Maxim V. Dziumanenko <mvd@mylinux.ua>
10695
10696         * configure.ac: Added "uk" to ALL_LINGUAS.
10697
10698 2005-05-22  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10699
10700         * cut-n-paste/zoom-control/ephy-zoom.c:
10701         (ephy_zoom_get_changed_zoom_level):
10702         * cut-n-paste/zoom-control/ephy-zoom.h:
10703         * shell/ev-view.c: (ev_view_scroll_event), (ev_view_set_property),
10704         (ev_view_get_property), (ev_view_class_init), (ev_view_set_zoom):
10705         * shell/ev-window.c: (ev_window_cmd_view_zoom_in),
10706         (ev_window_cmd_view_zoom_out), (ev_window_zoom_changed_cb),
10707         (zoom_control_changed_cb), (ev_window_init):
10708         
10709         Fix minor points related to moving best fit up. Introduce
10710         "zoom" property and make zoom control change it's value on
10711         notify::zoom signals. Fix for 305080.
10712
10713 2005-05-22  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10714
10715         * data/evince-ui.xml:
10716         * shell/ev-window.c: (set_view_actions_sensitivity):
10717         
10718         Use + and - as accels for zoom in and zoom out. Fix for 305001.
10719
10720 2005-05-22  Marco Pesenti Gritti  <mpg@redhat.com>
10721
10722         * configure.ac:
10723
10724         Depends on poppler 0.3.2
10725
10726 2005-05-22  Marco Pesenti Gritti  <mpg@redhat.com>
10727
10728         * cut-n-paste/recent-files/egg-recent-item.c:
10729         (egg_recent_item_get_short_name):
10730         * cut-n-paste/toolbar-editor/Makefile.am:
10731         * cut-n-paste/toolbar-editor/egg-editable-toolbar.c:
10732         (new_pixbuf_from_widget):
10733         * cut-n-paste/toolbar-editor/egg-editable-toolbar.h:
10734         * cut-n-paste/toolbar-editor/egg-marshal.c:
10735         * cut-n-paste/toolbar-editor/egg-toolbar-editor.c:
10736         * cut-n-paste/toolbar-editor/egg-toolbars-model.c:
10737
10738         Sync
10739
10740 Sat May 21 23:18:30 2005  Jonathan Blandford  <jrb@redhat.com>
10741
10742         * tiff/tiff-document.c: Rough TIFF backend.
10743
10744 2005-05-21  Marco Pesenti Gritti  <mpg@redhat.com>
10745
10746         * NEWS:
10747         * configure.ac:
10748         * cut-n-paste/toolbar-editor/Makefile.am:
10749
10750         Release 0.3.1
10751
10752 2005-05-21  Marco Pesenti Gritti  <mpg@redhat.com>
10753
10754         * shell/ev-view.c: (jump_to_find_result), (ev_view_can_find_next),
10755         (ev_view_find_next), (ev_view_find_previous):
10756
10757         Remove the locks around get_n_results   
10758
10759 2005-05-21  Juerg Billeter  <j@bitron.ch>
10760
10761         * pdf/ev-poppler.c: (pdf_document_ps_exporter_begin):
10762
10763         Pass correct number of pages to poppler.
10764
10765 2005-05-21  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
10766
10767         * configure.ac:
10768         * data/Makefile.am:
10769         * data/evince.desktop.in: 
10770         * data/evince.desktop.in.in:
10771         * po/POTFILES.in:
10772         
10773         Add conditionally dvi and djvu to desktop types. Fix for 304658.
10774
10775 Sat May 21 00:21:30 2005  Jonathan Blandford  <jrb@redhat.com>
10776
10777         * shell/ev-view.c: (view_update_adjustments),
10778         (view_set_adjustment_values): cast adjustmen->value to (int)
10779         before using it.  Otherwise, we get off by a pixel in some
10780         situations.
10781
10782         (draw_one_page): Draw the border on expose.
10783
10784 Fri May 20 22:05:25 2005  Jonathan Blandford  <jrb@redhat.com>
10785
10786         * *shell/ev-view.c: Patch from Nickolay V. Shmyrev to reset the
10787         adjustment when the mode changes, #304923
10788
10789 Fri May 20 02:00:03 2005  Nickolay V. Shmyrev <nshmyrev@yandex.ru>
10790
10791         * shell/ev-view.c: Use gdk_widget_queue_draw to remove
10792         flickering on resize but still use gdk_window_scroll on
10793         scrolling
10794
10795 Fri May 20 01:46:57 2005  Jonathan Blandford  <jrb@redhat.com>
10796
10797         * shell/ev-view.c: Patch from Nickolay Shmyrev to fix the -p
10798         option, #170458
10799
10800 Fri May 20 01:27:01 2005  Jonathan Blandford  <jrb@redhat.com>
10801
10802         * shell/ev-view.c: Patch from Nickolay Shmyrev to to scroll to
10803         second page on page_changed if possible, #304669
10804
10805 Fri May 20 01:07:15 2005  Jonathan Blandford  <jrb@redhat.com>
10806
10807         * shell/ev-view.c (view_update_adjustments): Use gdk_window_scroll
10808         instead of gtk_widget_queue_draw.  Massive speedups in scrolling.
10809
10810 Fri May 20 01:05:10 2005  Jonathan Blandford  <jrb@redhat.com>
10811
10812         * .cvsignore:
10813         * shell/ev-view.c:(ev_view_size_allocate), (ev_view_class_init),
10814         (zoom_for_size_fit_width), (zoom_for_size_best_fit),
10815         (ev_view_zoom_for_size_presentation),
10816         (ev_view_zoom_for_size_continuous_and_dual_page),
10817         (ev_view_zoom_for_size_continuous),
10818         (ev_view_zoom_for_size_dual_page),
10819         (ev_view_zoom_for_size_single_page), (ev_view_set_zoom_for_size):
10820         * shell/ev-view.h:
10821         * shell/ev-window.c: (update_view_size),
10822         (ev_window_sizing_mode_changed_cb):
10823
10824         Patch from Nickolay Shmyrev <nshmyrev@yandex.ru> to handle
10825         the scrollbars.  It's not 100% right, but it's much closer.  Kills
10826         an infinite loop, #304769
10827
10828
10829 2005-05-18  Marco Pesenti Gritti <mpg@redhat.com>
10830
10831         * data/evince-ui.xml:
10832         * shell/ev-view.c: (ev_view_scroll_view), (ev_view_class_init):
10833         * shell/ev-window.c: (set_view_actions_sensitivity):
10834
10835         Make PgUp/Down behave like Space
10836
10837 2005-05-18  Marco Pesenti Gritti <mpg@redhat.com>
10838
10839         * backend/ev-ps-exporter.c: (ev_ps_exporter_begin):
10840         * backend/ev-ps-exporter.h:
10841         * pdf/ev-poppler.cc:
10842         * ps/ps-document.c: (ps_document_ps_export_begin):
10843         * shell/ev-print-job.c: (idle_print_handler):
10844
10845         Adapt to new poppler api
10846
10847 2005-05-18  Marco Pesenti Gritti <mpg@redhat.com>
10848
10849         * cut-n-paste/zoom-control/ephy-zoom-control.c:
10850         (ephy_zoom_control_init):
10851
10852         Translate zoom levels
10853
10854 2005-05-18  Marco Pesenti Gritti <mpg@redhat.com>
10855
10856         * cut-n-paste/zoom-control/ephy-zoom.c:
10857         (ephy_zoom_get_zoom_level_index):
10858
10859         Fix current zoom -> zoom control match
10860
10861 2005-05-18  James Bowes  <bowes@cs.dal.ca>
10862
10863         * shell/ev-window.c: (ev_window_init): Give focus to the ev-view,
10864         rather than the scrolled_window that it's in. Fixes bug #304655.
10865
10866 Tue May 17 22:54:17 2005  Jonathan Blandford  <jrb@redhat.com>
10867
10868         * shell/ev-view.c: (view_update_adjustments),
10869         (view_set_adjustment_values), (view_update_range_and_current_page),
10870         (view_scroll_to_page), (set_scroll_adjustment),
10871         (ev_view_set_scroll_adjustments), (add_scroll_binding_keypad),
10872         (ev_view_scroll), (ev_view_scroll_view),
10873         (ensure_rectangle_is_visible), (find_page_at_location),
10874         (get_link_at_location), (go_to_link), (status_message_from_link),
10875         (ev_view_size_request_continuous_dual_page),
10876         (ev_view_size_request), (ev_view_size_allocate), (ev_view_realize),
10877         (ev_view_unrealize), (ev_view_expose_event),
10878         (ev_view_button_press_event), (ev_view_motion_notify_event),
10879         (ev_view_button_release_event), (ev_gdk_color_to_rgb),
10880         (draw_rubberband), (highlight_find_results), (draw_one_page),
10881         (ev_view_finalize), (ev_view_destroy), (ev_view_class_init),
10882         (ev_view_init), (find_changed_cb), (page_changed_cb),
10883         (on_adjustment_value_changed), (ev_view_new),
10884         (ev_view_set_document), (ev_view_set_zoom),
10885         (ev_view_set_continuous), (ev_view_set_dual_page),
10886         (ev_view_set_presentation), (ev_view_zoom_in), (ev_view_zoom_out),
10887         (zoom_for_size_fit_width), (zoom_for_size_best_fit),
10888         (ev_view_zoom_for_size_presentation),
10889         (ev_view_zoom_for_size_continuous_dual_page),
10890         (ev_view_zoom_for_size_continuous),
10891         (ev_view_zoom_for_size_dual_page),
10892         (ev_view_zoom_for_size_single_page), (ev_view_set_zoom_for_size),
10893         (ev_view_get_status), (ev_view_set_status),
10894         (update_find_status_message), (ev_view_get_find_status),
10895         (ev_view_set_find_status), (jump_to_find_result),
10896         (jump_to_find_page), (compute_selections), (clear_selection),
10897         (ev_view_select_all), (get_selected_text), (ev_view_copy),
10898         (ev_view_primary_get_cb), (ev_view_primary_clear_cb),
10899         (ev_view_update_primary_selection),
10900         (ev_view_create_invisible_cursor), (ev_view_set_cursor):
10901         * shell/ev-view.h:
10902         * shell/ev-window.c: (ev_window_open_page_label),
10903         (ev_window_cmd_view_reload), (ev_window_sizing_mode_changed_cb),
10904         (ev_window_init):
10905         * shell/ev-window.h:
10906         * shell/main.c: (load_files):
10907
10908         Massive code clean up from Nickolay Shmyrev.  Keep page offset
10909         when resizing.  Remove the bin_window().  Also, patch from James
10910         Bowes to fix command line page, #300641
10911         
10912 2005-05-17  Marco Pesenti Gritti  <mpg@redhat.com>
10913
10914         * data/evince-ui.xml:
10915         * shell/ev-view.c:
10916         * shell/ev-view.h:
10917         * shell/ev-window.c: (update_action_sensitivity):
10918
10919         Get rid of View->Normal Size, it's just confusing
10920
10921 Tue May 17 00:51:21 2005  Jonathan Blandford  <jrb@redhat.com>
10922
10923         * backend/ev-document-info.h:
10924         * backend/ev-document.c: (ev_document_info_free): Free the
10925         EvDocumentInfo.
10926
10927         * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_dispose),
10928         (clear_range), (add_range), (update_visible_range),
10929         (adjustment_changed_cb), (ev_sidebar_thumbnails_init),
10930         (ev_sidebar_thumbnails_set_document):
10931         * shell/ev-window.c: (ev_window_setup_document): Only render the
10932         visible thumbnails.  It takes an instant to render, but it uses
10933         much less memory.
10934
10935 2005-05-16  Marco Pesenti Gritti  <mpg@redhat.com>
10936
10937         * shell/ev-sidebar-links.c: (popup_menu_cb):
10938
10939         Select first item
10940
10941 2005-05-16  Marco Pesenti Gritti  <mpg@redhat.com>
10942
10943         * lib/Makefile.am:
10944         * shell/ev-sidebar-links.c: (build_popup_menu), (popup_menu_cb),
10945         (button_press_cb), (ev_sidebar_links_construct):
10946
10947         Show the popup menu also on keybindings
10948
10949 2005-05-16  Marco Pesenti Gritti  <mpg@redhat.com>
10950
10951         * shell/ev-window.c: (ev_window_print), (ev_window_print_range):
10952         * shell/ev-window.h:
10953
10954         Expose api to print a range (with dialog). Make private _print use
10955         it.
10956
10957         * shell/ev-sidebar-links.c: (print_section_cb), (button_press_cb),
10958         (ev_sidebar_links_construct):
10959
10960         Show a print context menu on linkx, it prints the selected
10961         section.
10962
10963 2005-05-15  Carlos Garcia Campos <carlosgc@gnome.org>
10964
10965         * shell/ev-sidebar.c: make the drop down menu as width as the toggle
10966         button.
10967
10968 2005-05-12  Marco Pesenti Gritti  <mpg@redhat.com>
10969
10970         * AUTHORS:
10971
10972         Update
10973
10974         * shell/ev-window.c: (build_comments_string),
10975         (ev_window_cmd_help_about):
10976
10977         Show poppler version/backend and authors
10978
10979 2005-05-11  Marco Pesenti Gritti  <mpg@redhat.com>
10980
10981         * cut-n-paste/zoom-control/ephy-zoom.c:
10982         (ephy_zoom_get_zoom_level_index):
10983         * cut-n-paste/zoom-control/ephy-zoom.h:
10984
10985         Move the best fit items at the top of the list
10986
10987 2005-05-11  Marco Pesenti Gritti  <mpg@redhat.com>
10988
10989         * shell/ev-marshal.list:
10990         * shell/ev-page-action.c: (ev_page_action_widget_class_init),
10991         (activate_cb), (match_selected_cb), (activate_link_cb),
10992         (connect_proxy), (ev_page_action_class_init):
10993         * shell/ev-page-action.h:
10994
10995         Use signals to notify action activation. Hopefully
10996         I did not break completion since I cant test...
10997
10998         * shell/ev-window.c: (activate_link_cb), (activate_label_cb),
10999         (register_custom_actions):
11000
11001         Connect to page selector actions and also grab focus on
11002         the view when activated.
11003
11004 Wed May 11 01:18:29 2005  Jonathan Blandford  <jrb@redhat.com>
11005
11006         * pdf/ev-poppler.cc:
11007         * backend/ev-page-cache.c: make page size calculation consistent
11008         and set it to (int)( width * scale + 0.5).  This makes the weird
11009         line going through the middle of the page go away.
11010
11011         * shell/ev-view.c: move painting the background page after
11012         checking the expose area covers us.
11013
11014 2005-05-11  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11015
11016         * data/evince-password.glade:
11017         
11018         Mark labels as not translatable. Fix for bug 302842.
11019
11020 2005-05-10  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
11021
11022         * configure.ac: Added "es" to ALL_LINGUAS.
11023
11024 2005-05-10  Marco Pesenti Gritti  <mpg@redhat.com>
11025
11026         * data/evince-toolbar.xml:
11027         * shell/ev-window.c: (update_action_sensitivity),
11028         (ev_window_setup_document), (ev_window_set_page_mode),
11029         (ev_window_init):
11030
11031         Remove some leftover code from jrb first continous
11032         attempt. Use the new actions, we still need good icons
11033         though...
11034
11035 2005-05-10  Marco Pesenti Gritti  <mpg@redhat.com>
11036
11037         * shell/ev-page-action.c: (update_pages_label), (connect_proxy):
11038
11039         Update label when connecting proxy. Fix a warning with NULL
11040         page_cache.
11041
11042 2005-05-10  Marco Pesenti Gritti  <mpg@redhat.com>
11043
11044         * data/evince-ui.xml:
11045         * shell/ev-page-action.c: (ev_page_action_grab_focus):
11046         * shell/ev-page-action.h:
11047         * shell/ev-window.c: (ev_window_cmd_focus_page_selector):
11048
11049         Add mnemonic for edit toolbar.
11050         ctrl+l focus the page entry.
11051
11052 2005-05-10  Marco Pesenti Gritti  <mpg@redhat.com>
11053
11054         * lib/Makefile.am:
11055         * shell/ev-window.c: (ev_window_cmd_edit_toolbar_cb),
11056         (ev_window_init):
11057         * shell/main.c: (main):
11058
11059         Put the toolbar xml in evince own dot dir
11060
11061 2005-05-10  Marco Pesenti Gritti  <mpg@redhat.com>
11062
11063         * shell/ev-window.c: (ev_window_init):
11064
11065         Make the toolbar not removable
11066
11067 2005-05-10  Marco Pesenti Gritti  <mpg@redhat.com>
11068
11069         * data/evince-ui.xml:
11070         * shell/ev-sidebar-links.c: (ev_sidebar_links_get_treeview):
11071         * shell/ev-sidebar-links.h:
11072         * shell/ev-sidebar-thumbnails.c:
11073         (ev_sidebar_thumbnails_get_treeview):
11074         * shell/ev-sidebar-thumbnails.h:
11075         * shell/ev-view.c: (ev_view_scroll), (ev_view_scroll_view),
11076         (ev_view_class_init):
11077         * shell/ev-view.h:
11078         * shell/ev-window.c: (update_action_sensitivity),
11079         (ev_window_cmd_scroll_forward), (ev_window_cmd_scroll_backward),
11080         (set_view_actions_sensitivity), (view_actions_focus_in_cb),
11081         (view_actions_focus_out_cb), (enable_view_actions_for_widget),
11082         (ev_window_init):
11083
11084         This is evil... Make space/backspace global accelerators but
11085         enable them only for some widgets (sidebars and view).
11086         I dont like it, but I dont know a better way... :/
11087
11088 2005-05-10  Marco Pesenti Gritti  <mpg@redhat.com>
11089
11090         * shell/ev-page-action.c: (ev_page_action_widget_set_page_cache),
11091         (ev_page_action_widget_finalize),
11092         (ev_page_action_widget_class_init), (update_page_cache):
11093
11094         Keep a weak reference on proxy->page_cache so that we
11095         dont try to disconnect the signal if the object is already
11096         gone. Maybe there is a better way to cleanup reference handling
11097         in page action though...
11098
11099 2005-05-10  Juerg Billeter  <j@bitron.ch>
11100
11101         * backend/ev-ps-exporter.c: (ev_ps_exporter_begin):
11102         * backend/ev-ps-exporter.h:
11103         * pdf/ev-poppler.cc: (pdf_document_ps_exporter_begin):
11104         * ps/ps-document.c: (ps_document_ps_export_begin):
11105         
11106         Change api to pass print range to ps_exporter_begin. The pdf backend
11107         requires this information.
11108         
11109         * shell/ev-print-job.c: (idle_print_handler):
11110         
11111         Adapt to api change
11112
11113 2005-05-10  Juerg Billeter  <j@bitron.ch>
11114
11115         * shell/ev-print-job.c: (ev_print_job_use_print_dialog_settings),
11116         (idle_print_handler)
11117         * shell/ev-window.c: (ev_window_print):
11118
11119         Support printing page range, based on patch by Amaury Jacquot
11120
11121 2005-05-10  Marco Pesenti Gritti  <mpg@redhat.com>
11122
11123         * data/evince-toolbar.xml:
11124
11125         Add zoom control to available items
11126
11127 2005-05-10  Marco Pesenti Gritti  <mpg@redhat.com>
11128
11129         * shell/ev-window.c: (update_action_sensitivity):
11130
11131         Set slash action insensitive when appropriate
11132
11133 2005-05-10  Christian Persch <chpe@gnome.org>
11134
11135         * cut-n-paste/zoom-control/ephy-zoom-action.c: (create_menu_item):
11136
11137         Fix warning on the overflow menu
11138
11139 2005-05-10  Marco Pesenti Gritti  <mpg@redhat.com>
11140
11141         * shell/ev-window.c: (sanity_check_uri), (ev_window_open):
11142
11143         Check for uri correctness/existence
11144
11145 2005-05-09  Juerg Billeter  <j@bitron.ch>
11146
11147         * shell/ev-window.c: (using_postscript_printer):
11148
11149         LPD printers use postscript, too
11150
11151 2005-05-09  Marco Pesenti Gritti  <mpg@redhat.com>
11152
11153         * shell/ev-window.c: (register_custom_actions):
11154
11155         The zoom one is actually sort of useful,
11156         put it back
11157
11158 2005-05-09  Marco Pesenti Gritti  <mpg@redhat.com>
11159
11160         * shell/ev-window.c: (register_custom_actions):
11161
11162         Hide page/zoom controls from overflow, they
11163         are useless.
11164
11165 2005-05-09  Marco Pesenti Gritti  <mpg@redhat.com>
11166
11167         * cut-n-paste/update-from-egg.sh:
11168         
11169         Share it between all cut-n-paste subdirs
11170
11171         * cut-n-paste/recent-files/Makefile.am:
11172
11173         Fix to use "global" update-from-egg.sh
11174
11175         * cut-n-paste/recent-files/egg-recent-model.c:
11176         (egg_recent_model_changed_timeout), (egg_recent_model_finalize):
11177         * cut-n-paste/recent-files/egg-recent-view-gtk.c:
11178         (egg_recent_view_gtk_clear), (egg_recent_view_gtk_set_list),
11179         (egg_recent_view_gtk_finalize), (egg_recent_view_gtk_set_menu):
11180
11181         Update from libegg
11182
11183         * cut-n-paste/toolbar-editor/Makefile.am:
11184
11185         Fix to use "global" update-from-egg.sh
11186
11187         * cut-n-paste/toolbar-editor/eggmarshalers.list:
11188
11189         Update from libegg
11190
11191 2005-05-09  Marco Pesenti Gritti <mpg@redhat.com>
11192
11193         * configure.ac:
11194         * cut-n-paste/Makefile.am:
11195         * cut-n-paste/recent-files/Makefile.am:
11196         * cut-n-paste/toolbar-editor/.cvsignore:
11197         * cut-n-paste/toolbar-editor/Makefile.am:
11198         * cut-n-paste/toolbar-editor/egg-editable-toolbar.c:
11199         (egg_editable_toolbar_get_type), (get_toolbar_position),
11200         (get_n_toolbars), (get_dock_nth), (get_toolbar_nth), (find_action),
11201         (drag_data_delete_cb), (drag_begin_cb), (drag_end_cb),
11202         (drag_data_get_cb), (set_drag_cursor), (unset_drag_cursor),
11203         (set_item_drag_source), (create_item_from_action), (create_item),
11204         (data_is_separator), (drag_data_received_cb), (remove_toolbar_cb),
11205         (popup_toolbar_context_menu_cb), (free_dragged_item),
11206         (toolbar_drag_drop_cb), (toolbar_drag_motion_cb),
11207         (toolbar_drag_leave_cb), (create_dock), (set_fixed_style),
11208         (unset_fixed_style), (toolbar_changed_cb), (unparent_fixed),
11209         (update_fixed), (toolbar_added_cb), (toolbar_removed_cb),
11210         (item_added_cb), (item_removed_cb),
11211         (egg_editable_toolbar_construct),
11212         (egg_editable_toolbar_disconnect_model),
11213         (egg_editable_toolbar_deconstruct),
11214         (egg_editable_toolbar_set_model),
11215         (egg_editable_toolbar_set_ui_manager),
11216         (egg_editable_toolbar_set_property),
11217         (egg_editable_toolbar_get_property),
11218         (egg_editable_toolbar_class_init), (egg_editable_toolbar_init),
11219         (egg_editable_toolbar_finalize), (egg_editable_toolbar_new),
11220         (egg_editable_toolbar_new_with_model),
11221         (egg_editable_toolbar_get_edit_mode),
11222         (egg_editable_toolbar_set_edit_mode), (egg_editable_toolbar_show),
11223         (egg_editable_toolbar_hide), (egg_editable_toolbar_set_fixed),
11224         (egg_editable_toolbar_set_drag_dest), (fake_expose_widget),
11225         (new_pixbuf_from_widget), (new_separator_pixbuf),
11226         (update_separator_image), (style_set_cb),
11227         (_egg_editable_toolbar_new_separator_image),
11228         (egg_editable_toolbar_get_model):
11229         * cut-n-paste/toolbar-editor/egg-editable-toolbar.h:
11230         * cut-n-paste/toolbar-editor/egg-marshal.c:
11231         * cut-n-paste/toolbar-editor/egg-toolbar-editor.c:
11232         (egg_toolbar_editor_get_type), (compare_actions), (find_action),
11233         (egg_toolbar_editor_set_ui_manager), (toolbar_removed_cb),
11234         (egg_toolbar_editor_set_model), (egg_toolbar_editor_set_property),
11235         (egg_toolbar_editor_get_property), (egg_toolbar_editor_class_init),
11236         (egg_toolbar_editor_finalize), (egg_toolbar_editor_new),
11237         (drag_begin_cb), (drag_end_cb), (editor_drag_data_received_cb),
11238         (editor_drag_data_delete_cb), (drag_data_get_cb),
11239         (elide_underscores), (set_drag_cursor), (event_box_realize_cb),
11240         (editor_create_item), (update_editor_sheet), (setup_editor),
11241         (egg_toolbar_editor_init), (egg_toolbar_editor_add_action),
11242         (parse_item_list), (model_has_action), (update_actions_list),
11243         (egg_toolbar_editor_load_actions):
11244         * cut-n-paste/toolbar-editor/egg-toolbar-editor.h:
11245         * cut-n-paste/toolbar-editor/egg-toolbars-model.c:
11246         (egg_toolbars_model_get_type), (egg_toolbars_model_to_xml),
11247         (safe_save_xml), (egg_toolbars_model_save), (toolbars_toolbar_new),
11248         (toolbars_item_new), (free_toolbar_node), (free_item_node),
11249         (egg_toolbars_model_get_flags), (egg_toolbars_model_set_flags),
11250         (egg_toolbars_model_add_separator), (impl_add_item),
11251         (parse_item_list), (egg_toolbars_model_add_toolbar),
11252         (parse_toolbars), (egg_toolbars_model_load), (impl_get_item_id),
11253         (impl_get_item_data), (impl_get_item_type),
11254         (_egg_accumulator_STRING), (egg_toolbars_model_class_init),
11255         (egg_toolbars_model_init), (free_toolbar),
11256         (egg_toolbars_model_finalize), (egg_toolbars_model_new),
11257         (egg_toolbars_model_remove_toolbar),
11258         (egg_toolbars_model_remove_item), (egg_toolbars_model_move_item),
11259         (egg_toolbars_model_n_items), (egg_toolbars_model_item_nth),
11260         (egg_toolbars_model_n_toolbars), (egg_toolbars_model_toolbar_nth),
11261         (egg_toolbars_model_add_item), (egg_toolbars_model_get_item_id),
11262         (egg_toolbars_model_get_item_data),
11263         (egg_toolbars_model_get_item_type):
11264         * cut-n-paste/toolbar-editor/egg-toolbars-model.h:
11265         * cut-n-paste/toolbar-editor/eggmarshalers.list:
11266         * data/Makefile.am:
11267         * data/evince-toolbar.xml:
11268         * data/evince-ui.xml:
11269         * data/hand-open.png:
11270         * po/POTFILES.in:
11271         * shell/Makefile.am:
11272         * shell/ev-window.c: (update_chrome_visibility),
11273         (ev_window_cmd_edit_toolbar_cb), (ev_window_cmd_edit_toolbar),
11274         (ev_window_dispose), (ev_window_init):
11275
11276         Implement epiphany like toolbar editor. Based on patch by
11277         Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11278
11279 2005-05-09  Marco Pesenti Gritti  <mpg@redhat.com>
11280
11281         * shell/ev-sidebar-thumbnails.c: (page_changed_cb):
11282
11283         Use set_cursor instead of set_selection, so that
11284         the keyboard focus moves too.
11285
11286 2005-05-09  Aleksey Kliger <akliger@gmail.com>
11287
11288         * dvi/mdvi-lib/tfmfile.c: (lookup_font_metrics):
11289
11290         Fix infinite loop when loading Type1 fonts
11291
11292 2005-05-09  Marco Pesenti Gritti  <mpg@redhat.com>
11293
11294         * data/evince-ui.xml:
11295         * shell/ev-window.c:
11296
11297         Slash -> Find
11298
11299 2005-05-09  Thomas de Grenier de Latour <degrenier@easyconnect.fr>
11300
11301         * configure.ac:
11302
11303         Make --disable really disable
11304
11305 2005-05-07  Juerg Billeter  <j@bitron.ch>
11306
11307         * backend/ev-page-cache.c: (ev_page_cache_set_page_label):
11308
11309         Compare page labels even without has_labels set, fixes setting page
11310         with entry
11311
11312 2005-05-09  Marco Pesenti Gritti  <mpg@redhat.com>
11313
11314         * shell/ev-view.c: (ev_view_create_invisible_cursor),
11315         (ev_view_set_cursor), (ev_view_button_press_event),
11316         (ev_view_motion_notify_event), (ev_view_button_release_event),
11317         (ev_view_init):
11318
11319         Implement middle button scrolling. Based on a patch
11320         by Tommi Komulainen <tommi.komulainen@iki.fi>.
11321
11322 2005-05-08  Marco Pesenti Gritti  <mpg@redhat.com>
11323
11324         * shell/ev-document-types.c: (get_slow_mime_type),
11325         (get_document_type_from_mime), (ev_document_type_lookup):
11326         * shell/ev-document-types.h:
11327
11328         Change api to lookup from uri. Do fast lookup first, if the
11329         type is unknown try with data sniffing.
11330
11331         * shell/ev-window.c: (ev_window_open), (ev_window_open_uri_list):
11332         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
11333
11334         Adapt to api change
11335
11336 2005-05-07  Marco Pesenti Gritti  <mpg@redhat.com>
11337
11338         * thumbnailer/Makefile.am:
11339
11340         Fix distcheck
11341
11342 2005-05-07  Marco Pesenti Gritti  <mpg@redhat.com>
11343
11344         * NEWS:
11345         * configure.ac:
11346
11347         Release 0.3.0
11348
11349         * data/evince-ui.xml:
11350
11351         Hide presentation mode for now
11352
11353         * shell/ev-view.c: (highlight_find_results):
11354
11355         Show current find selection only on current page
11356
11357 2005-05-07  Marco Pesenti Gritti  <mpg@redhat.com>
11358
11359         * shell/ev-view.c: (ev_view_select_all):
11360
11361         Compute size of the actual page, not of
11362         the current one.
11363
11364 2005-05-07  Marco Pesenti Gritti  <mpg@redhat.com>
11365
11366         * shell/ev-view.c: (clear_selection), (ev_view_finalize),
11367         (view_rect_to_doc_rect), (compute_selections),
11368         (ev_view_bin_expose), (ev_view_select_all), (get_selected_text),
11369         (ev_view_copy), (ev_view_primary_get_cb),
11370         (ev_view_primary_clear_cb), (ev_view_update_primary_selection),
11371         (ev_view_button_press_event), (ev_view_motion_notify_event),
11372         (ev_view_button_release_event), (page_changed_cb):
11373
11374         Fix text selection
11375
11376 2005-05-07  Marco Pesenti Gritti  <mpg@redhat.com>
11377
11378         * shell/ev-view.c: (compute_border), (get_page_extents),
11379         (doc_rect_to_view_rect), (highlight_find_results),
11380         (ev_view_bin_expose), (ev_view_select_all),
11381         (ev_view_motion_notify_event), (update_find_status_message),
11382         (jump_to_find_result), (jump_to_find_page):
11383
11384         First go at fixing search, still buggy
11385
11386 2005-05-04  Kristian Høgsberg  <krh@redhat.com>
11387
11388         * shell/ev-sidebar.c (ev_sidebar_init): Remove frame around
11389         dropdown box and button at the top of the sidebar.
11390
11391 2005-05-02  James Bowes  <bowes@cs.dal.ca>
11392
11393         * configure.ac: Output zoom-control Makefile.
11394         * cut-n-paste/Makefile.am: build zoom-control subdir.
11395         * cut-n-paste/zoom-control/ephy-zoom-action.c:
11396         * cut-n-paste/zoom-control/ephy-zoom-action.h:
11397         * cut-n-paste/zoom-control/ephy-zoom-control.c:
11398         * cut-n-paste/zoom-control/ephy-zoom-control.h:
11399         * cut-n-paste/zoom-control/ephy-zoom.c:
11400         * cut-n-paste/zoom-control/ephy-zoom.h: New files imported
11401         from epiphany, and modified to add a separator into the menu.
11402         * cut-n-paste/zoom-control/Makefile.am: Build zoom-control.
11403         * data/evince-ui.xml: Replace old zoom toolbar actions with new
11404         zoom-control action.
11405         * shell/Makefile.am: Include zoom-control flags.
11406         * shell/ev-view.c: (ev_view_set_zoom), (ev_view_get_zoom),
11407         (ev_view_get_sizing_mode), (ev_view_zoom_in), (ev_view_zoom_out),
11408         (ev_view_zoom_for_size_presentation),
11409         (ev_view_zoom_for_size_continuous_and_dual_page),
11410         (ev_view_zoom_for_size_continuous),
11411         (ev_view_zoom_for_size_dual_page),
11412         (ev_view_zoom_for_size_single_page), (ev_view_zoom_normal): 
11413         s/ev_view_zoom/ev_view_set_zoom/ and make public, add 
11414         ev_view_get_zoom and ev_view_get_sizing_mode.
11415         * shell/ev-view.h:
11416         * shell/ev-window.c: (update_action_sensitivity),
11417         (update_sizing_buttons), (zoom_control_changed_cb),
11418         (register_custom_actions): Initialize and use the zoom-control 
11419         widget.
11420
11421 Sun May  1 00:46:47 2005  Jonathan Blandford  <jrb@redhat.com>
11422
11423         * shell/ev-pixbuf-cache.c: (ev_pixbuf_cache_init): Change the
11424         preview cache back to 1.  Don't know when it got set to 0.
11425         
11426         * shell/ev-view.c: (compute_border), (ev_view_realize),
11427         (draw_one_page), (ev_view_set_property), (ev_view_get_property),
11428         (ev_view_class_init), (ev_view_init), (ev_view_set_fullscreen),
11429         (ev_view_get_fullscreen), (ev_view_set_presentation),
11430         (ev_view_get_presentation), (ev_view_set_sizing_mode),
11431         (ev_view_zoom_for_size_presentation), (ev_view_set_zoom_for_size):
11432         * shell/ev-view.h:
11433         * shell/ev-window.c:
11434         (update_chrome_visibility),
11435         (ev_window_cmd_continuous), (ev_window_cmd_dual),
11436         (ev_window_cmd_view_best_fit), (ev_window_cmd_view_page_width),
11437         (update_document_mode), (ev_window_update_fullscreen_action),
11438         (ev_window_fullscreen), (ev_window_unfullscreen),
11439         (ev_window_cmd_view_fullscreen),
11440         (ev_window_update_presentation_action),
11441         (ev_window_run_presentation), (ev_window_stop_presentation),
11442         (ev_window_cmd_view_presentation), (ev_window_state_event),
11443         (ev_window_focus_in_event), (ev_window_focus_out_event),
11444         (ev_window_cmd_escape), (ev_window_sidebar_visibility_changed_cb):
11445         * data/evince-ui.xml: Initial presentation mode.  We should
11446         probably hide this until it's done, as it's quite rough.  Also,
11447         change full-screen to fullscreen and add two getters to EvView.
11448
11449 2005-04-29  Marco Pesenti Gritti  <mpg@redhat.com>
11450
11451         * shell/ev-page-action.c: (update_page_cache),
11452         (ev_page_action_dispose):
11453         * shell/ev-window.c: (destroy_fullscreen_popup),
11454         (ev_window_create_fullscreen_popup):
11455
11456         Use connect_object rather than explicitly
11457         disconnect on dispose.
11458
11459 2005-04-29  Marco Pesenti Gritti  <mpg@redhat.com>
11460
11461         * shell/ev-page-action.c: (update_page_cache),
11462         (ev_page_action_dispose):
11463
11464 2005-04-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11465
11466         * backend/ev-page-cache.c: (_ev_page_cache_new),
11467         (ev_page_cache_set_page_label),
11468         (ev_page_cache_has_nonnumeric_page_labels):
11469         * backend/ev-page-cache.h:
11470         * shell/ev-page-action.c: (update_pages_label):
11471         
11472         If all page labels are numeric, fallback to default
11473         way to display number of pages. See bug 173185.
11474
11475 2005-04-28  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11476
11477         * shell/ev-page-action.c: (ev_page_action_dispose):
11478         * shell/ev-view.c: (view_update_range_and_current_page):
11479         * shell/ev-window.c: (ev_window_dispose):
11480         
11481         Set page on scroll in continuous mode. Fixes bug 301986.
11482         Also cleanup callbacks on destroy of EvWindow and EvPageAction.
11483
11484 2005-04-26  Marco Pesenti Gritti <mpg@redhat.com>
11485
11486         * configure.ac:
11487
11488         Require poppler 0.3.0
11489
11490 2005-04-26  Nickolay V. Shmyrev <nshmyrev@yandex.ru>
11491         
11492         * shell/Makefile.am, configure.ac: Fix build problems
11493         with t1lib. Bug 301996.
11494
11495 2005-04-25  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11496
11497         * shell/ev-view.c: (ev_view_scroll_event):
11498         
11499         Scroll up increase zoom
11500
11501 2005-04-25  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11502
11503         * shell/ev-view.c: (ev_view_scroll_event), (ev_view_class_init),
11504         (ev_view_set_sizing_mode),
11505         (ev_view_zoom_for_size_continuous_and_dual_page),
11506         (ev_view_zoom_for_size_continuous):
11507         * shell/ev-window.c: (ev_window_cmd_view_best_fit),
11508         (ev_window_cmd_view_page_width), (ev_window_cmd_view_zoom_in),
11509         (ev_window_cmd_view_zoom_out), (ev_window_sizing_mode_changed_cb),
11510         (ev_window_init):
11511
11512         Control + Scroll does zooming, Shift + Scroll scrolls horizontally
11513         Fix for 165473 and 165472.
11514
11515 2005-04-24  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11516
11517         * po/POTFILES.in:
11518         * thumbnailer/Makefile.am:
11519         * thumbnailer/evince-thumbnailer-djvu.schemas.in:
11520         * thumbnailer/evince-thumbnailer-dvi.schemas.in:
11521         * thumbnailer/evince-thumbnailer.schemas.in:
11522         
11523         Make thumbnailer schemas translatable. Fix for bug 301773
11524         
11525         * thumbnailer/evince-thumbnailer-djvu.schemas:
11526         * thumbnailer/evince-thumbnailer-dvi.schemas:
11527         * thumbnailer/evince-thumbnailer.schemas:
11528
11529         Removed files
11530
11531 Sun Apr 24 01:37:39 2005  Jonathan Blandford  <jrb@redhat.com>
11532
11533         * shell/ev-view.c (ev_view_init): forgot to set this.
11534
11535 Sun Apr 24 01:07:27 2005  Jonathan Blandford  <jrb@redhat.com>
11536
11537         * shell/ev-view.c: (find_page_at_location),
11538         (get_link_at_location),
11539         (ev_view_set_show_border), (ev_view_set_spacing),
11540         (ev_view_zoom_for_size_continuous_and_dual_page),
11541         (ev_view_zoom_for_size_continuous): Fix links for dual/continuous.
11542         Also, add a quick fix measuring of widths.  Also, removed
11543         ev_view_set_spacing and ev_view_set_show_border.
11544         
11545         * shell/ev-window.c: (ev_window_unfullscreen),
11546         (ev_window_cmd_view_fullscreen): Don't adjust the border/spacing.
11547
11548 2005-04-24  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11549
11550         * shell/ev-view.c: (view_update_range_and_current_page),
11551         (page_changed_cb):
11552         
11553         Fix crash on exit and scrolling to page in continuous view.
11554
11555 Sat Apr 23 13:13:04 2005  Jonathan Blandford  <jrb@redhat.com>
11556
11557         * TODO:
11558         * backend/ev-page-cache.c: (_ev_page_cache_new),
11559         (ev_page_cache_get_max_width_size),
11560         (ev_page_cache_get_max_height_size):
11561         * backend/ev-page-cache.h:
11562         * data/evince-ui.xml:
11563         * shell/ev-pixbuf-cache.c: (ev_pixbuf_cache_init):
11564         * shell/ev-view.c: (view_update_adjustments),
11565         (view_update_range_and_current_page), (get_bounding_box_size),
11566         (ev_view_size_request_continuous_and_dual_page),
11567         (ev_view_size_request_continuous),
11568         (ev_view_size_request_dual_page),
11569         (ev_view_size_request_single_page), (ev_view_size_request),
11570         (ev_view_size_allocate), (get_page_extents), (draw_one_page),
11571         (ev_view_bin_expose), (ev_view_expose_event),
11572         (ev_view_set_property), (ev_view_get_property),
11573         (ev_view_class_init), (ev_view_init), (ev_view_new),
11574         (page_changed_cb), (ev_view_zoom), (ev_view_set_continuous),
11575         (ev_view_set_dual_page), (ev_view_set_full_screen),
11576         (ev_view_set_presentation), (ev_view_set_sizing_mode),
11577         (ev_view_can_zoom_in), (ev_view_can_zoom_out), (ev_view_zoom_in),
11578         (ev_view_zoom_out), (zoom_for_size_fit_width),
11579         (zoom_for_size_best_fit),
11580         (ev_view_zoom_for_size_continuous_and_dual_page),
11581         (ev_view_zoom_for_size_continuous),
11582         (ev_view_zoom_for_size_dual_page),
11583         (ev_view_zoom_for_size_single_page), (ev_view_set_zoom_for_size),
11584         (ev_view_show_cursor), (ev_sizing_mode_get_type):
11585         * shell/ev-view.h:
11586         * shell/ev-window.c: (update_action_sensitivity),
11587         (ev_window_cmd_continuous), (ev_window_cmd_dual),
11588         (ev_window_cmd_view_best_fit), (ev_window_cmd_view_page_width),
11589         (update_sizing_buttons), (ev_window_cmd_view_zoom_in),
11590         (ev_window_cmd_view_zoom_out), (update_view_size),
11591         (ev_window_set_sizing_mode), (ev_window_init):
11592
11593         Add Continuous and Dual page modes.
11594
11595 2005-04-23  James Bowes  <bowes@cs.dal.ca>
11596
11597         * dvi/dvi-document.c: (dvi_document_load),
11598         (dvi_document_thumbnails_get_thumbnail),
11599         (dvi_document_init_params): Fix up some mixups between
11600         width and height to correct thumbnail rendering.
11601
11602 2005-04-23  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11603
11604         * dvi/mdvi-lib/private.h:
11605         * dvi/mdvi-lib/setup.c: (mdvi_init_kpathsea):
11606         
11607         Suppess output for kpathsea during font generation. Thanks to
11608         James Bowes
11609
11610 Fri Apr 22 19:57:46 2005  Jonathan Blandford  <jrb@redhat.com>
11611
11612         * NEWS:
11613         * configure.ac:
11614
11615         Release 0.2.1
11616
11617         * Makefile.am: fix distcheck.
11618
11619 2005-04-23  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11620
11621         * shell/ev-sidebar-links.c: (selection_changed_callback),
11622         (update_page_callback), (row_activated_callback),
11623         (job_finished_callback), (ev_sidebar_links_set_document):
11624         
11625         Fix for bug #169901. Double click on links expands tree.
11626
11627 2005-03-14  Bryan Clark  <clarkbw@cvs.gnome.org>
11628
11629         * shell/ev-window.c (ev_window_init): Removed fullscreen toolbar
11630         hard-coded style. Fix for bug 170111
11631
11632 2005-04-22  Kristian Høgsberg  <krh@redhat.com>
11633
11634         * shell/ev-view.c (highlight_find_results): Remove unnecessary
11635         locking.
11636
11637 2005-04-22  Bryan Clark  <clarkbw@cvs.gnome.org>
11638
11639         * thumbnailer/evince-thumbnailer.schemas: real fix for bug 172496
11640
11641 2005-04-22  Marco Pesenti Gritti  <mpg@redhat.com>
11642
11643         * pdf/ev-poppler.cc:
11644         * shell/ev-view.c: (highlight_find_results):
11645
11646         Fix find on single page documents
11647
11648 2005-04-22  Bryan Clark  <clarkbw@cvs.gnome.org>
11649
11650         * data/evince.schemas.in: fix for bug 301390
11651
11652 2005-04-22  Marco Pesenti Gritti <mpg@redhat.com>
11653
11654         * shell/ev-view.c: (ev_view_can_zoom_in), (ev_view_can_zoom_out),
11655         (ev_view_zoom_out), (ev_view_zoom_normal):
11656         * shell/ev-view.h:
11657         * shell/ev-window.c: (update_action_sensitivity),
11658         (ev_window_cmd_view_best_fit), (ev_window_cmd_view_page_width),
11659         (ev_window_cmd_view_zoom_in), (ev_window_cmd_view_zoom_out),
11660         (ev_window_cmd_view_normal_size):
11661
11662         Fix normal size zoom. Make zoom in/zoom out unsensitive when
11663         they are behyond the limits. Tweak MAX_ZOOM to 6, sucks but
11664         better than oom. 
11665
11666 2005-04-22  Marco Pesenti Gritti <mpg@redhat.com>
11667
11668         * configure.ac:
11669
11670         Depend on 2.57, 2.59 doesnt seem to be necessary
11671
11672 2005-04-22  Marco Pesenti Gritti <mpg@redhat.com>
11673
11674         * shell/ev-page-action.c: (update_pages_label), (page_changed_cb),
11675         (create_tool_item):
11676
11677         Put back total number of pages as (1 of 1234)
11678
11679 Thu Apr 21 23:37:52 2005  Jonathan Blandford  <jrb@redhat.com>
11680
11681         * shell/ev-pixbuf-cache.c (dispose_cache_job_info): actually
11682         remove the job.
11683
11684         * backend/ev-document.h: Remove EV_DOC_MUTEX in favor of a locking
11685         function.  This helps debugging.
11686
11687 2005-04-21  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11688
11689         * djvu/djvu-document.c: (djvu_document_class_init),
11690         (djvu_document_get_info), (djvu_document_document_iface_init):
11691         * dvi/dvi-document.c: (dvi_document_class_init),
11692         (dvi_document_get_info), (dvi_document_document_iface_init):
11693
11694         Dummy implementation of get_info method for dvi and
11695         djvu. Fix crashes with those backends
11696
11697 2005-04-20  Marco Pesenti Gritti <mpg@redhat.com>
11698
11699         * data/evince.desktop.in:
11700
11701         Add application/x-gzpostscript
11702
11703 2005-04-20  Bryan Clark  <clarkbw@cvs.gnome.org>
11704
11705         * data/evince.schemas.in: Added real long descriptions, 
11706         closes bug 172496 
11707
11708         * README: Added actual text, closes bug 171869
11709
11710 2005-04-19  Marco Pesenti Gritti <mpg@redhat.com>
11711
11712         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
11713
11714         Thumbnail page 0
11715
11716 2005-04-19  Marco Pesenti Gritti <mpg@redhat.com>
11717
11718         * backend/ev-document-info.h:
11719
11720         s/GDate */GDate so we can just use g_free
11721
11722 2005-04-19  Marco Pesenti Gritti <mpg@redhat.com>
11723
11724         * shell/ev-window.c: (update_document_mode),
11725         (ev_window_setup_document):
11726
11727         Show the window in fullscreen when specified by
11728         the document
11729
11730 2005-04-19  Marco Pesenti Gritti <mpg@redhat.com>
11731
11732         * backend/ev-document.c: (ev_document_class_init),
11733         (ev_document_get_info), (ev_document_render_pixbuf):
11734         * backend/ev-document.h:
11735         * backend/ev-page-cache.c: (_ev_page_cache_new):
11736         * pdf/ev-poppler.cc:
11737         * pixbuf/pixbuf-document.c: (pixbuf_document_class_init),
11738         (pixbuf_document_get_info), (pixbuf_document_document_iface_init):
11739         * ps/ps-document.c: (ps_document_class_init), (document_load),
11740         (ps_document_get_info), (ps_document_document_iface_init):
11741
11742         Remove get_title from the interface, we can just use document info
11743
11744 2005-04-19  Marco Pesenti Gritti <mpg@redhat.com>
11745
11746         * backend/Makefile.am:
11747         * backend/ev-document.c: (ev_document_render_get_info):
11748         * backend/ev-document.h:
11749         * pdf/ev-poppler.cc:
11750
11751         Initial support for document info. Based on jrb patch.
11752
11753 2005-04-19  Paolo Borelli <pborelli@katamail.com>
11754
11755         * shell/ev-window.c: (ev_window_state_event),
11756         (ev_window_class_init), (ev_window_init):
11757         
11758         Doesn't show resize grip when maximized. See bug #301053
11759
11760 2005-04-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11761
11762         * po/POTFILES.in:
11763         
11764         ev-sidebar-thumbnails now has translatable labels
11765         
11766         * shell/Makefile.am:
11767         * shell/ev-sidebar-links.c: (ev_sidebar_links_set_document),
11768         (ev_sidebar_links_support_document), (ev_sidebar_links_get_label),
11769         (ev_sidebar_links_page_iface_init):
11770         * shell/ev-sidebar-links.h:
11771         * shell/ev-sidebar-page.c: (ev_sidebar_page_get_type),
11772         (ev_sidebar_page_support_document), (ev_sidebar_page_set_document),
11773         (ev_sidebar_page_get_label):
11774         * shell/ev-sidebar-page.h:
11775         * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_new),
11776         (ev_sidebar_thumbnails_set_document),
11777         (ev_sidebar_thumbnails_support_document),
11778         (ev_sidebar_thumbnails_get_label),
11779         (ev_sidebar_thumbnails_page_iface_init):
11780         * shell/ev-sidebar-thumbnails.h:
11781         * shell/ev-sidebar.c: (ev_sidebar_init), (ev_sidebar_add_page),
11782         (ev_sidebar_set_document):
11783         * shell/ev-sidebar.h:
11784         * shell/ev-window.c: (ev_window_setup_document), (ev_window_init):
11785         
11786         Small rework of sidebar code. Now sidebar pages should implement
11787         EvSidebarPage interface. That makes page management in EvSidebar
11788         easier. See bug #164811 for details
11789
11790 2005-04-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11791
11792         * shell/ev-application.c: (ev_application_open):
11793         * shell/ev-document-types.c:
11794         
11795         Fix build error and small problem with application exit
11796
11797 2005-04-19  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11798
11799         * thumbnailer/Makefile.am:
11800         * thumbnailer/evince-thumbnailer-djvu.schemas:
11801         * thumbnailer/evince-thumbnailer-dvi.schemas:
11802         
11803         Conditionally install schemas for djvu/dvi thumbnailer
11804
11805 2005-04-18  David Malcolm  <dmalcolm@redhat.com>
11806
11807         * shell/ev-document-types.h: 
11808         * shell/ev-document-types.c: 
11809         New files, handling the mapping from mimetypes to backends
11810         
11811         * shell/ev-window.c: 
11812         * thumbnailer/evince-thumbnailer.c:     
11813         Use the ev-document-types code
11814         
11815         * shell/Makefile.am: 
11816         Added new convenience library libevbackendfactory_la, containing
11817         the new mimetype->backend logic; moved the backends into it.
11818
11819         * thumbnailer/Makefile.am:
11820         Make the thumbnailer link with the libevbackend.la convenience
11821         library, rather than having a duplicate of the backend logic here.
11822
11823 2005-04-18  Paolo Borelli  <pborelli@katamail.com>
11824
11825         * shell/ev-stock-icons.c: constify some vars.
11826         * shell/ev-window.c: ditto.
11827
11828 2005-04-18  Marco Pesenti Gritti  <mpg@redhat.com>
11829
11830         * ps/ps-document.c (get_page_orientation):
11831
11832         Respect document orientation 
11833
11834 2005-04-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11835
11836         * djvu/Makefile.am:
11837         * dvi/Makefile.am:
11838         * shell/Makefile.am:
11839         
11840         Move library dependencies to components.
11841         
11842         * shell/ev-window.c: (update_window_title),
11843         (start_loading_document):
11844         
11845         Fix display of uris with spaces. Bug 168358.
11846
11847 Sat Apr 16 18:53:47 2005  Jonathan Blandford  <jrb@redhat.com>
11848
11849         * shell/ev-sidebar-links.c: (selection_changed_cb):
11850         * shell/ev-view.c: (ev_view_finalize), (go_to_link),
11851         (ev_view_button_release_event), (ev_view_set_document):
11852         * shell/ev-view.h:
11853         * shell/ev-window.c: (find_bar_search_changed_cb):
11854         * shell/ev-window.h: Minor cleanups removing some dead code.
11855
11856 2005-04-16  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11857
11858         * backend/ev-page-cache.c: (_ev_page_cache_new):
11859         
11860         Set current page to 0 if document has pages.
11861
11862 2005-04-16  Marco Pesenti Gritti <mpg@redhat.com>
11863
11864         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
11865
11866         Initialize GError to NULL, fix a crash when loading fails.
11867
11868 2005-04-16  Marco Pesenti Gritti <mpg@redhat.com>
11869
11870         * shell/ev-window.c: (update_view_size):
11871
11872         Calculate shadow size only when there is actually
11873         a shadow.
11874
11875 2005-04-16  Marco Pesenti Gritti <mpg@redhat.com>
11876
11877         * shell/ev-view.c: (ev_view_set_spacing), (ev_view_init):
11878         * shell/ev-view.h:
11879
11880         Allow setting view spacing, default to 0
11881
11882         * shell/ev-window.c: (ev_window_unfullscreen),
11883         (ev_window_cmd_view_fullscreen), (ev_window_init):
11884
11885         Remove spacing in fullscreen mode
11886
11887 2005-04-16  Marco Pesenti Gritti <mpg@redhat.com>
11888
11889         * shell/ev-view.c: (compute_border), (compute_zoom_factor),
11890         (ev_view_size_request), (expose_bin_window),
11891         (ev_view_set_show_border), (ev_view_init), (page_changed_cb):
11892         * shell/ev-view.h:
11893         * shell/ev-window.c: (ev_window_unfullscreen),
11894         (ev_window_cmd_view_fullscreen):
11895
11896         Do not draw the border in fulscreen
11897
11898 2005-04-16  Marco Pesenti Gritti <mpg@redhat.com>
11899
11900         * shell/ev-view.c: (ev_view_get_offsets), (compute_zoom_factor),
11901         (ev_view_size_request), (expose_bin_window), (ev_view_select_all),
11902         (find_page_at_location), (page_changed_cb):
11903
11904         Rework border calculation, so that I can more easily disable it.
11905         Code somewhat cleaner too.
11906
11907 2005-04-16  Marco Pesenti Gritti <mpg@redhat.com>
11908
11909         * backend/ev-page-cache.c: (ev_page_cache_init),
11910         (_ev_page_cache_new):
11911
11912         Remove some assertions, documents can have 0 pages.
11913         Make initial current page -1.
11914
11915         * shell/ev-page-action.c: (page_changed_cb):
11916
11917         Show "" if current page is -1
11918
11919         * shell/ev-window.c: (update_action_sensitivity),
11920         (ev_window_setup_document):
11921
11922         When document has 0 pages do not set the view
11923         and make nearly everything insensitive.
11924
11925 2005-04-16  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
11926
11927         * shell/ev-page-view.c:
11928         * shell/ev-page-view.h:
11929
11930         Remove unused files.
11931         
11932         * shell/ev-sidebar-thumbnails.c:
11933         (ev_sidebar_thumbnails_set_document):
11934         * shell/ev-sidebar.c: (ev_sidebar_set_document),
11935         (ev_sidebar_supports_document):
11936         * shell/ev-sidebar.h:
11937         * shell/ev-window.c: (ev_window_setup_document):
11938         
11939         Doesn't show thumbnails if document has 1 page. Make
11940         sidebar menu entries sensitive only if if they have 
11941         sense. Fix bug 164811. 
11942
11943 2005-04-15  Marco Pesenti Gritti <mpg@redhat.com>
11944
11945         * shell/ev-view.c: (compute_zoom_factor), (ev_view_size_request),
11946         (page_changed_cb), (ev_view_zoom), (ev_view_zoom_in),
11947         (ev_view_zoom_out), (ev_view_set_size):
11948
11949         Rework sizing to deal with documents with not uniform page
11950         size.
11951
11952 2005-04-15  Marco Pesenti Gritti <mpg@redhat.com>
11953
11954         * backend/ev-page-cache.c: (_ev_page_cache_new):
11955
11956         Fix several page size caching bugs
11957
11958 2005-04-15  Luca Ferretti <elle.uca@libero.it>
11959
11960         * shell/ev-window.c: (set_action_properties):
11961
11962         Make all toolbar items translatable
11963
11964 2005-04-15  Marco Pesenti Gritti <mpg@redhat.com>
11965
11966         * ps/ps-document.c: (ps_document_init), (ps_document_get_type),
11967         (save_page_list), (ps_document_save),
11968         (ps_document_document_iface_init), (ps_document_ps_export_begin),
11969         (ps_document_ps_export_do_page), (ps_document_ps_export_end),
11970         (ps_document_ps_exporter_iface_init):
11971         * ps/ps-document.h:
11972
11973         Based on a patch by J�rg Billeter <j@bitron.ch>
11974         
11975         Implement print and save a copy for the ps backend.
11976
11977 2005-04-14  Marco Pesenti Gritti <mpg@redhat.com>
11978
11979         * backend/ev-document.h:
11980         * djvu/djvu-document.c: (djvu_document_can_get_text),
11981         (djvu_document_document_iface_init):
11982         * dvi/dvi-document.c: (dvi_document_can_get_text),
11983         (dvi_document_document_iface_init):
11984         * pdf/ev-poppler.cc:
11985         * pixbuf/pixbuf-document.c: (pixbuf_document_can_get_text),
11986         (pixbuf_document_document_iface_init):
11987         * ps/ps-document.c: (ps_document_can_get_text),
11988         (ps_document_document_iface_init):
11989         * shell/ev-view.c: (ev_view_copy), (ev_view_primary_get_cb):
11990         * shell/ev-window.c: (update_action_sensitivity):
11991
11992         Fix the crash when trying to copy in backends that doesnt
11993         support it. We can implement a better solution once we
11994         do real text selection.
11995
11996 2005-04-12  Marco Pesenti Gritti <mpg@redhat.com>
11997
11998         * data/evince-ui.xml:
11999         * shell/ev-window.c: (ev_window_cmd_escape):
12000         
12001         Work around the Escape conflict (find bar and unfullscreen)
12002
12003 2005-04-12  Nikolay V. Shmyrev  <nshmyrev@yandex.ru>
12004
12005         * backend/ev-page-cache.c: (ev_page_cache_next_page):
12006         
12007         Fix for #300233. Next page correctly handles document end.
12008         
12009         * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_dispose),
12010         (ev_sidebar_thumbnails_class_init),
12011         (ev_sidebar_thumbnails_set_document),
12012         (ev_sidebar_thumbnails_clear_job),
12013         (ev_sidebar_thumbnails_clear_model):
12014         
12015         Cleanup thumbnail jobs on document changes.
12016         
12017         * shell/ev-view.c: (add_scroll_binding_keypad),
12018         (add_scroll_binding_shifted), (ev_view_class_init):
12019         
12020         Shift + Space scrolls up. Fix for #173184
12021         
12022         * shell/ev-window.c: (ev_window_open_page),
12023         (ev_window_cmd_view_reload):
12024         
12025         Fix reload (Bug #300094)
12026
12027 2005-04-09  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
12028
12029         
12030         * dvi/mdvi-lib/assoc.c:
12031         * dvi/mdvi-lib/assoc.h: Removed garbage files
12032         
12033         * dvi/mdvi-lib/bitmap.c:
12034         * dvi/mdvi-lib/color.c: (mdvi_set_color), (mdvi_push_color),
12035         (mdvi_pop_color), (mdvi_reset_color), (get_color_table):
12036         * dvi/mdvi-lib/color.h: Antialias of rules
12037         
12038         * dvi/mdvi-lib/common.h:
12039         * dvi/mdvi-lib/dviread.c: (mdvi_configure), (mdvi_init_context),
12040         (mdvi_destroy_context), (draw_shrink_rule), (draw_box), (set_rule):
12041         * dvi/mdvi-lib/files.c:
12042         * dvi/mdvi-lib/fontmap.c: (ps_init_default_paths):
12043         * dvi/mdvi-lib/mdvi.h:
12044         * dvi/mdvi-lib/sp-epsf.c: (epsf_special):
12045         * dvi/mdvi-lib/tfmfile.c: (ofm_load_file):
12046         * dvi/mdvi-lib/util.c: Fix compile warnings
12047         
12048         * dvi/dvi-document.c:
12049         (dvi_document_load), (dvi_document_thumbnails_get_dimensions),
12050         (dvi_document_thumbnails_get_thumbnail),
12051         (dvi_document_document_thumbnails_iface_init):
12052         * dvi/mdvi-lib/Makefile.am:
12053         * dvi/pixbuf-device.c: (dvi_pixbuf_draw_rule),
12054         (dvi_pixbuf_set_color), (mdvi_pixbuf_device_render):
12055         
12056         Dvi backend now renders thumbnails
12057
12058 2005-04-09  Christian Persch  <chpe@cvs.gnome.org>
12059
12060         * shell/main.c: (main): 
12061         
12062         Save accelerators on exit. Fixes bug #172095.
12063
12064 Sat Apr  9 01:05:09 2005  Jonathan Blandford  <jrb@redhat.com>
12065
12066         * shell/ev-pixbuf-cache.c (move_one_job): Actually fix the "FIXME:
12067         update priority" comment.
12068
12069         * backend/ev-job-queue.c: Give a way to change priority.
12070
12071 Sat Apr  9 00:05:36 2005  Jonathan Blandford  <jrb@redhat.com>
12072
12073         * shell/ev-page-action.c: Fix logic.
12074
12075 2005-04-08  Marco Pesenti Gritti <mpg@redhat.com>
12076
12077         * shell/ev-view.c: (ev_view_can_find_next):
12078         * shell/ev-window.c: (ev_window_setup_document):
12079
12080         Check that the document supports find
12081
12082 2005-04-08  Marco Pesenti Gritti <mpg@redhat.com>
12083
12084         * data/evince-ui.xml:
12085         * shell/ev-view.c: (ev_view_can_find_next):
12086         * shell/ev-view.h:
12087         * shell/ev-window.c: (update_action_sensitivity),
12088         (find_changed_cb), (ev_window_setup_document),
12089         (ev_window_cmd_edit_find_next):
12090
12091         Add Edit->Find Next
12092
12093 2005-04-08  Marco Pesenti Gritti <mpg@redhat.com>
12094
12095         * pdf/ev-poppler.cc:
12096         * shell/ev-print-job.c: (idle_print_handler):
12097
12098         Make printing work again
12099
12100 Fri Apr  8 01:12:24 2005  Jonathan Blandford  <jrb@redhat.com>
12101
12102         * shell/ev-page-action.h:
12103         * shell/ev-page-action.c: (ev_page_action_widget_init),
12104         (ev_page_action_widget_class_init), (page_changed_cb),
12105         (create_tool_item), (update_page_cache), (build_new_tree_cb),
12106         (get_filter_model_from_model), (match_selected_cb),
12107         (display_completion_text), (match_completion), (update_model),
12108         (connect_proxy), (ev_page_action_set_property),
12109         (ev_page_action_get_property), (ev_page_action_set_document),
12110         (ev_page_action_set_model), (ev_page_action_class_init): Big
12111         reworking to make completions work iff we have >= GTK-2.7.0
12112                 
12113         * shell/ev-sidebar-links.c: (ev_sidebar_links_set_property),
12114         (ev_sidebar_links_get_property), (ev_sidebar_links_class_init),
12115         (job_finished_cb): We now have a 'model' property that is set when
12116         the links are loaded.  This can be caught with "notify::model"
12117
12118         * shell/ev-window.c: (sidebar_widget_model_set), (ev_window_init):
12119         listen for the model to be set, and propagate it to the action.
12120
12121 2005-04-08  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
12122
12123         * cut-n-paste/recent-files/egg-recent-item.c:
12124         (egg_recent_item_set_uri), (make_valid_utf8),
12125         (egg_recent_item_set_mime_type), (egg_recent_item_get_mime_type):
12126         * cut-n-paste/recent-files/egg-recent-item.h:
12127         
12128         Update egg-recent from libegg. This should fix long
12129         startup problem. For details see
12130         http://bugzilla.gnome.org/show_bug.cgi?id=160531
12131
12132 2005-04-07  Nickolay V. Shmyrev <nshmyrev@yandex.ru>
12133
12134         * cut-n-paste/recent-files/Makefile.am:
12135         * data/evince-ui.xml, shell/Makefile.am:
12136         * shell/ev-application.c, shell/ev-application.h:
12137         * shell/ev-window.c: Recent files support.
12138         
12139         * configure.ac: Added "ru" to ALL_LINGUAS.
12140         
12141         * dvju: new backend to support DJVU files.
12142         * dvi: new backend to support DVI.
12143
12144         * configure.ac, Makefile.am, shell/Makefile.am, ev-window.c:
12145         * ev-application.c: Support for new backends.
12146         
12147         * help, ev-window.c, main.c shell/Makefile.am: 
12148         Evince user documentation.
12149
12150 2005-04-06  Marco Pesenti Gritti <mpg@redhat.com>
12151
12152         * po/POTFILES.in:
12153         * shell/ev-window.c:
12154         * thumbnailer/evince-thumbnailer.c:
12155
12156         s/pdf-document/ev-poppler
12157
12158 2005-04-06  Marco Pesenti Gritti <mpg@redhat.com>
12159
12160         * NEWS:
12161         * configure.ac:
12162
12163         Release 0.2.0
12164
12165         * ps/ps-document.c: (setup_pixmap):
12166
12167         Remove debug code
12168
12169 2005-04-05  Kristian Høgsberg  <krh@redhat.com>
12170
12171         * backend/ev-page-cache.c (ev_page_cache_next_page): 
12172         * shell/ev-window.c (ev_window_cmd_go_next_page) 
12173         (ev_window_cmd_go_first_page): Fix of by one errors.
12174
12175 2005-04-05  Marco Pesenti Gritti <mpg@redhat.com>
12176
12177         * ps/ps-document.c: (get_page_box):
12178
12179         Fix page size calculation
12180
12181 2005-04-05  Marco Pesenti Gritti <mpg@redhat.com>
12182
12183         * ps/ps-document.c: (ps_document_init), (push_pixbuf),
12184         (ps_document_cleanup), (setup_pixmap), (get_page_box),
12185         (get_page_orientation), (setup_page), (document_load),
12186         (ps_document_get_page_size), (render_pixbuf_idle):
12187         * ps/ps-document.h:
12188
12189         More refactoring to adapt to EvDocument changes
12190
12191 2005-04-05  Marco Pesenti Gritti <mpg@redhat.com>
12192
12193         * ps/ps-document.c: (start_interpreter):
12194
12195         Actually add alpha args
12196
12197 2005-04-05  Marco Pesenti Gritti <mpg@redhat.com>
12198
12199         * pdf/ev-poppler.cc:
12200
12201         Make clipboard work again
12202
12203 2005-04-04  Kristian Høgsberg  <krh@redhat.com>
12204
12205         Make searching work again.
12206         
12207         * backend/ev-document.c:
12208         * backend/ev-document.h:
12209         * backend/ev-document-find.c:
12210         * backend/ev-document-find.h: Change EvDocumentIface so we no
12211         longer store the current page or zoom level in the document.  The
12212         consequence is that all calls that operate on the current page now
12213         instead take the page number as an extra argument, and all
12214         coordinates are now doubles in document coordinate system.
12215
12216         * pdf/ev-poppler.cc:
12217         * pixbuf/pixbuf-document.c:
12218         * ps/ps-document.c: Update backends accordingly.
12219
12220 2005-04-04  Marco Pesenti Gritti <marco@gnome.org>
12221
12222         * autogen.sh:
12223
12224         Add required gettext version
12225
12226 Sat Apr  2 18:57:00 2005  Jonathan Blandford  <jrb@redhat.com>
12227
12228         * shell/evwindow.c: Patch from Alberto Mesas <amesas@gmail.com> to
12229         make F1 bring up non-existent help.
12230
12231         * shell/eggfindbar.c: Patch from Christian Persch to sync to
12232         epiphany's find bar, #167477
12233
12234         * shell/ev-view.c (ev_view_jump): Patch from Emil Soleyman-Zomalan
12235         <emil@nishra.com> to add space-bar scrolling, 
12236
12237         * shell/ev-window.c (static GtkActionEntry entries): add default
12238         keybinding for Help (F1)
12239         Fixes #171068
12240
12241         * shell/ev-view.c (ev_view_show_cursor): Fix from Yuval Tanny
12242         changing EV_VIEW_CURSOR_LINK to EV_VIEW_CURSOR_NORMAL resolves bug
12243         170110
12244
12245 2005-04-01  David Malcolm  <dmalcolm@redhat.com>
12246
12247         * Makefile.am: 
12248         * pixbuf/pixbuf-document.c: 
12249
12250         Got pixbuf backend working again
12251
12252 2005-04-01  Steve Murphy  <murf@e-tools.com>
12253
12254         * configure.in: Added "rw" to ALL_LINGUAS.
12255
12256 Fri Apr  1 02:33:41 2005  Jonathan Blandford  <jrb@redhat.com>
12257
12258         * shell/ev-sidebar-links.c (create_loading_model): Fix mismatch in
12259         model types, noticed by Martin Kretzschmar.
12260
12261 2005-04-01  Kristian Høgsberg  <krh@redhat.com>
12262
12263         * pdf/ev-poppler.cc: Implement search based on
12264         poppler_page_find_text().  Currently a bit crude since we remember
12265         all matches from all pages.  Also, we grab the big document lock
12266         when we search since searching changes the underlying stream and
12267         thus conflicts with the rendering thread.
12268         
12269         * shell/ev-view.c: (draw_rubberband), (highlight_find_results),
12270         (jump_to_find_page), (ev_view_set_document), (ev_view_find_next),
12271         (ev_view_find_previous): Fix some page indexes to be 0 based,
12272         offset rubber band by view offset,
12273
12274 Fri Apr 01 09:21:12 2005  Pablo Saratxaga  <pablo@mandrakesoft.com>
12275
12276         * configure.ac: Added Walloon (wa) to ALL_LINGUAS.
12277
12278 Fri Apr  1 01:59:39 2005  Jonathan Blandford  <jrb@redhat.com>
12279
12280         * shell/ev-page-action.c: Changed to use page labels now.  Rewrote
12281         completely because I didn't understand GtkActions.  I should
12282         read Marco's code more carefully in the future.
12283
12284         * backend/ev-page-cache.h (ev_page_cache_set_page_label): New
12285         function
12286
12287 2005-03-31  Kristian Høgsberg  <krh@redhat.com>
12288
12289         * pdf/ev-poppler.cc (pdf_document_get_links): Update to work with
12290         PopplerRectangle change from poppler CVS.
12291
12292 Thu Mar 31 13:27:50 2005  Jonathan Blandford  <jrb@redhat.com>
12293
12294         * backend/ev-document.c: (ev_document_get_page_label):
12295         * backend/ev-document.h:
12296         * backend/ev-page-cache.c: (_ev_page_cache_new),
12297         (ev_page_cache_get_page_label):
12298         * backend/ev-page-cache.h:
12299         * pdf/ev-poppler.cc:
12300         * shell/ev-sidebar-links.c: (ev_sidebar_links_construct),
12301         (links_page_num_func):
12302         * shell/ev-sidebar-thumbnails.c:
12303         (ev_sidebar_thumbnails_set_document):
12304         * shell/ev-view.c: (status_message_from_link),
12305         (ev_view_motion_notify_event):
12306         * shell/ev-window.c: (document_supports_sidebar): Add in page
12307         label support.  It's not perfect yet, but it's the first 'feature'
12308         in a while.
12309         Also, fix a bogus comment noticed by crispin. 
12310
12311 Thu Mar 31 01:21:58 2005  Jonathan Blandford  <jrb@redhat.com>
12312
12313         * Makefile.am: Remove pixbuf backend for now
12314
12315         * configure.ac: Require poppler-glib instead of just poppler.
12316
12317         * backend/ev-document-thumbnails.h: Add a comment
12318
12319         * backend/ev-document.h:
12320         * backend/ev-document.c: (ev_document_class_init),
12321         (ev_document_load), (ev_document_get_link),
12322         (ev_document_get_links): Remove 3 methods and add get_links.
12323         Also, made 0 based.
12324
12325         * backend/ev-jobs.c: (ev_job_render_new), (ev_job_render_run):
12326         * backend/ev-jobs.h: now EvJobRender can grab the links for a document.
12327
12328         * backend/ev-link.c: (ev_link_set_title),
12329         (ev_link_mapping_free_foreach), (ev_link_mapping_free),
12330         (ev_link_mapping_find):
12331         * backend/ev-link.h: Allow NULL titles.  Also, introduce a mapping link.
12332         
12333         * backend/ev-page-cache.c: (ev_page_cache_init),
12334         (_ev_page_cache_new), (ev_page_cache_set_current_page),
12335         (ev_page_cache_get_size), (ev_page_cache_next_page),
12336         (ev_page_cache_prev_page): Fix to be 0 based.
12337
12338         * pdf/Makefile.am: 
12339         * pdf/ev-poppler.h:
12340         * pdf/ev-poppler.cc: New backend.
12341         
12342         * ps/ps-document.c: (ps_document_init), (ps_document_set_page),
12343         (ps_document_get_page), (ps_document_document_iface_init):
12344
12345         * shell/ev-pixbuf-cache.h:
12346         * shell/ev-pixbuf-cache.c: (ev_pixbuf_cache_init),
12347         (dispose_cache_job_info), (job_finished_cb), (move_one_job),
12348         (ev_pixbuf_cache_update_range), (copy_job_to_job_info),
12349         (add_job_if_needed), (ev_pixbuf_cache_set_page_range),
12350         (ev_pixbuf_cache_get_pixbuf), (ev_pixbuf_cache_get_link_mapping):
12351         Fix up code to grab a page cache per each doc.  Also, fix to be 0
12352         based.
12353         
12354         * shell/ev-sidebar-thumbnails.c:
12355         (ev_sidebar_tree_selection_changed), (page_changed_cb),
12356         (ev_sidebar_thumbnails_set_document): Fix to be 0 based.
12357
12358         * shell/ev-view.c: (status_message_from_link),
12359         (find_page_at_location), (get_link_at_location),
12360         (ev_view_motion_notify_event), (ev_view_button_release_event),
12361         (ev_view_init): Use the new link code.  Fix to be 0 based.
12362
12363         * shell/ev-window.c: (update_action_sensitivity),
12364         (document_supports_sidebar): 0 based.
12365
12366 Fri Mar 25 16:55:58 2005  Jonathan Blandford  <jrb@redhat.com>
12367
12368         * pdf/pdf-document.cc: Patch from Fernando Herrera
12369         <fherrera@onirica.com> to fix my quick fix to get_thumbnail.
12370         *blush*
12371
12372 Wed Mar 23 23:49:41 2005  Jonathan Blandford  <jrb@redhat.com>
12373
12374         * pdf/pdf-document.cc (pdf_document_thumbnails_get_thumbnail): add
12375         1 to the page, as this seems to be 1 based.  I thought we has this
12376         fixed.  grump.
12377
12378 2005-03-23  Marco Pesenti Gritti <marco@gnome.org>
12379
12380         * TODO:
12381         * backend/Makefile.am:
12382         * backend/ev-document-links.c:
12383         (ev_document_links_has_document_links),
12384         (ev_document_links_get_links_model):
12385         * backend/ev-document-links.h:
12386         * backend/ev-document.c: (ev_document_get_page_cache),
12387         (ev_document_get_doc_mutex), (ev_document_load),
12388         (ev_document_save), (ev_document_get_title),
12389         (ev_document_get_n_pages), (ev_document_set_page),
12390         (ev_document_get_page), (ev_document_set_target),
12391         (ev_document_set_scale), (ev_document_set_page_offset),
12392         (ev_document_get_page_size), (ev_document_get_text),
12393         (ev_document_get_link), (ev_document_render),
12394         (ev_document_render_pixbuf), (ev_document_scale_changed):
12395         * backend/ev-document.h:
12396         * backend/ev-job-queue.c: (remove_object_from_queue),
12397         (notify_finished), (handle_job), (search_for_jobs_unlocked),
12398         (no_jobs_available_unlocked), (ev_render_thread),
12399         (ev_job_queue_init), (find_queue), (ev_job_queue_add_job),
12400         (ev_job_queue_remove_job):
12401         * backend/ev-job-queue.h:
12402         * backend/ev-jobs.c: (ev_job_init), (ev_job_dispose),
12403         (ev_job_class_init), (ev_job_links_init), (ev_job_links_dispose),
12404         (ev_job_links_class_init), (ev_job_render_init),
12405         (ev_job_render_dispose), (ev_job_render_class_init),
12406         (ev_job_thumbnail_init), (ev_job_thumbnail_dispose),
12407         (ev_job_thumbnail_class_init), (ev_job_finished),
12408         (ev_job_links_new), (ev_job_links_run), (ev_job_render_new),
12409         (ev_job_render_run), (ev_job_thumbnail_new),
12410         (ev_job_thumbnail_run):
12411         * backend/ev-jobs.h:
12412         * backend/ev-link.c:
12413         * backend/ev-link.h:
12414         * backend/ev-page-cache.c: (ev_page_cache_init),
12415         (ev_page_cache_class_init), (ev_page_cache_finalize),
12416         (_ev_page_cache_new), (ev_page_cache_get_n_pages),
12417         (ev_page_cache_get_current_page), (ev_page_cache_set_current_page),
12418         (ev_page_cache_set_link), (ev_page_cache_get_title),
12419         (ev_page_cache_get_size), (ev_page_cache_next_page),
12420         (ev_page_cache_prev_page):
12421         * backend/ev-page-cache.h:
12422         * pdf/pdf-document.cc:
12423         * ps/gsdefaults.c:
12424         * ps/gsdefaults.h:
12425         * ps/ps-document.c: (ps_document_init), (ps_document_class_init),
12426         (push_pixbuf), (interpreter_failed), (ps_document_cleanup),
12427         (ps_document_widget_event), (ps_document_finalize), (get_xdpi),
12428         (get_ydpi), (setup_pixmap), (setup_page), (close_pipe),
12429         (is_interpreter_ready), (output), (catchPipe), (input),
12430         (start_interpreter), (check_filecompressed), (compute_dimensions),
12431         (ps_document_enable_interpreter), (document_load),
12432         (ps_document_next_page), (render_page), (ps_document_set_page),
12433         (ps_document_set_scale), (render_pixbuf_idle),
12434         (ps_document_render_pixbuf), (ps_document_document_iface_init):
12435         * ps/ps-document.h:
12436         * shell/Makefile.am:
12437         * shell/ev-pixbuf-cache.c: (ev_pixbuf_cache_init),
12438         (ev_pixbuf_cache_class_init), (ev_pixbuf_cache_finalize),
12439         (dispose_cache_job_info), (ev_pixbuf_cache_dispose),
12440         (ev_pixbuf_cache_new), (job_finished_cb),
12441         (check_job_size_and_unref), (move_one_job),
12442         (ev_pixbuf_cache_update_range), (find_job_cache),
12443         (ev_pixbuf_cache_clear_job_sizes), (add_job_if_needed),
12444         (ev_pixbuf_cache_add_jobs_if_needed),
12445         (ev_pixbuf_cache_set_page_range), (ev_pixbuf_cache_get_pixbuf):
12446         * shell/ev-pixbuf-cache.h:
12447         * shell/ev-print-job.c: (ev_print_job_use_print_dialog_settings),
12448         (idle_print_handler):
12449         * shell/ev-sidebar-links.c: (ev_sidebar_links_destroy),
12450         (selection_changed_cb), (create_loading_model),
12451         (ev_sidebar_links_construct), (links_page_num_func),
12452         (ev_sidebar_links_clear_document), (update_page_callback_foreach),
12453         (update_page_callback), (job_finished_cb),
12454         (ev_sidebar_links_set_document):
12455         * shell/ev-sidebar-thumbnails.c:
12456         (ev_sidebar_thumbnails_class_init), (adjustment_changed_cb),
12457         (ev_sidebar_tree_selection_changed), (ev_sidebar_thumbnails_init),
12458         (page_changed_cb), (thumbnail_job_completed_callback),
12459         (ev_sidebar_thumbnails_set_document):
12460         * shell/ev-sidebar-thumbnails.h:
12461         * shell/ev-sidebar.c: (ev_sidebar_set_document):
12462         * shell/ev-view.c: (ev_view_finalize), (ev_view_destroy),
12463         (ev_view_get_offsets), (ev_view_size_request), (ev_view_realize),
12464         (ev_view_unrealize), (highlight_find_results), (expose_bin_window),
12465         (ev_view_select_all), (ev_view_copy), (ev_view_primary_get_cb),
12466         (ev_view_create_invisible_cursor), (ev_view_motion_notify_event),
12467         (ev_view_button_release_event), (ev_view_scroll_view),
12468         (ev_view_class_init), (ev_view_init), (update_find_status_message),
12469         (jump_to_find_result), (jump_to_find_page), (find_changed_cb),
12470         (ev_view_new), (job_finished_cb), (page_changed_cb),
12471         (ev_view_set_document), (go_to_link), (ev_view_zoom),
12472         (size_to_zoom_factor), (ev_view_set_size), (ev_view_find_next),
12473         (ev_view_find_previous):
12474         * shell/ev-view.h:
12475         * shell/ev-window.c: (update_action_sensitivity),
12476         (ev_window_open_page), (update_window_title), (update_total_pages),
12477         (page_changed_cb), (ev_window_setup_document),
12478         (password_dialog_response), (ev_window_cmd_save_as),
12479         (ev_window_print), (ev_window_cmd_go_previous_page),
12480         (ev_window_cmd_go_next_page), (ev_window_cmd_go_first_page),
12481         (ev_window_cmd_go_last_page), (ev_window_cmd_view_reload),
12482         (find_bar_search_changed_cb), (goto_page_cb), (ev_window_init):
12483         * shell/main.c: (main):
12484
12485         Merge evince-threads branch
12486
12487 2005-03-16  Žygimantas Beručka  <uid0@akl.lt>
12488
12489         * configure.ac: Added "lt" to ALL_LINGUAS.
12490
12491 2005-03-14  Marco Pesenti Gritti  <marco@gnome.org>
12492
12493         * NEWS:
12494         * configure.ac:
12495
12496         Release 0.1.9
12497
12498 2005-03-13  Fernando Herrera  <fherrera@onirica.com>
12499
12500         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
12501
12502         Fix here also the thumbnails 1-basedness :)
12503
12504 2005-03-12  Marco Pesenti Gritti  <marco@gnome.org>
12505
12506         * NEWS:
12507         * configure.ac:
12508
12509         Release 0.1.8
12510
12511 2005-03-12  Marco Pesenti Gritti  <marco@gnome.org>
12512
12513         * pdf/pdf-document.cc:
12514         * shell/ev-sidebar-thumbnails.c: (adjustment_changed_cb),
12515         (do_one_iteration), (ev_sidebar_thumbnails_set_document):
12516
12517         Fix the mess we did with thumbnails and 1-basedness
12518
12519 2005-03-12  Changwoo Ryu  <cwryu@debian.org>
12520
12521         * configure.ac (ALL_LINGUAS): Added "ko" (Korean).
12522
12523 2005-03-09  Marco Pesenti Gritti  <marco@gnome.org>
12524
12525         * NEWS:
12526         * configure.ac:
12527
12528         Release 0.1.7
12529
12530 2005-03-08  Marco Pesenti Gritti  <marco@gnome.org>
12531
12532         * ps/Makefile.am:
12533         * ps/gsdefaults.c: (gtk_gs_defaults_get_interpreter_cmd),
12534         (gtk_gs_defaults_get_alpha_parameters),
12535         (gtk_gs_defaults_get_ungzip_cmd),
12536         (gtk_gs_defaults_get_unbzip2_cmd):
12537         * ps/gsdefaults.h:
12538         * ps/ps-document.c: (ps_document_init), (ps_document_class_init),
12539         (ps_document_get_orientation), (document_load),
12540         (ps_document_goto_page), (ps_document_set_page_size):
12541         * ps/ps-document.h:
12542
12543         Some more sanitization of the ps backend. Remove a lot
12544         of unused code and do not base our defaults on ggv
12545         preferences (ugh!)
12546
12547 2005-03-08  Fernando Herrera  <fherrera@onirica.com>
12548
12549         * thumbnailer/evince-thumbnailer.schemas:
12550         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get),
12551         (main): add -s option for thumbnail size.
12552
12553 2005-03-07  Christian Persch  <chpe@cvs.gnome.org>
12554
12555         * configure.ac:
12556
12557         AC_PROG_RANLIB is rendered obsolete by AC_PROG_LIBTOOL;
12558         remove it.
12559
12560 2005-03-07  Marco Pesenti Gritti  <marco@gnome.org>
12561
12562         * pdf/pdf-document.cc:
12563
12564         Remove 4 pixels of useless border from the
12565         thumbnail.
12566
12567 2005-03-07  Marco Pesenti Gritti  <marco@gnome.org>
12568
12569         * backend/ev-document-thumbnails.c:
12570         (ev_document_thumbnails_get_thumbnail):
12571         * backend/ev-document-thumbnails.h:
12572
12573         Rework API a bit. Add a border flag and
12574         change sizing logic (now the size we specify
12575         applies to the bigger dimension).
12576
12577         * pdf/pdf-document.cc:
12578         * pixbuf/pixbuf-document.c:
12579         (pixbuf_document_thumbnails_get_thumbnail):
12580         * shell/ev-sidebar-thumbnails.c: (do_one_iteration):
12581         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
12582
12583         Adapt to the new API and do not draw a border for nautilus
12584         thumbnailer.
12585
12586 2005-03-03  Fernando Herrera  <fherrera@onirica.com>
12587
12588         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
12589         take thumbnails from page "0" instead of "1". Added a copyright header.
12590
12591 2005-03-03  Jens Granseuer  <jensgr@gmx.net>
12592
12593         * ps/ps-document.c: (set_up_page), (start_interpreter):
12594
12595         Make it C89 compliant
12596
12597 2005-03-03  Marco Pesenti Gritti  <marco@gnome.org>
12598
12599         * Makefile.am:
12600         * configure.ac:
12601         * pdf/.cvsignore:
12602         * pdf/pdf-document.cc:
12603         * thumbnailer/Makefile.am:
12604         * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get),
12605         (main):
12606         * thumbnailer/evince-thumbnailer.schemas:
12607         * thumbnailer/pdf-icon.png:
12608
12609         Add a nautilus thumbnailer.
12610         Based on patch by Fernando Herrera <fherrera@onirica.com>.
12611
12612 2005-03-02  Marco Pesenti Gritti  <marco@gnome.org>
12613
12614         * NEWS:
12615         * configure.ac:
12616         * po/POTFILES.in:
12617
12618         Release 0.1.6
12619
12620 2005-03-01  Kristian Høgsberg  <krh@redhat.com>
12621
12622         Use poppler instead of including xpdf source code.  Poppler is a
12623         fork of xpdf to build it as a shared library. See
12624         http://freedesktop.org/wiki/Software/poppler.
12625
12626         * pdf/xpdf/*, pdf/goo/*, pdf/splash/*, pdf/fofi/*: Remove included
12627         xpdf fork.
12628         
12629         * pdf/Makefile.am: Build libpdfdocument.a here.
12630         
12631         * pdf/GDKSplashOutputDev.cc:
12632         * pdf/GDKSplashOutputDev.h:
12633         * pdf/GnomeVFSStream.cc:
12634         * pdf/GnomeVFSStream.h:
12635         * pdf-document.cc:
12636         * pdf-document.h:
12637         * test-gdk-output-dev.cc
12638         * Thumb.cc:
12639         * Thumb.h: Pull these files out of pdf/xpdf and adjust to compile
12640         against poppler.
12641
12642 2005-02-28  Marco Pesenti Gritti  <marco@gnome.org>
12643
12644         * shell/ev-sidebar-links.c: (ev_sidebar_links_clear_document):
12645
12646         Clear idle stack before unsetting the document
12647
12648 2005-02-28  Marco Pesenti Gritti  <marco@gnome.org>
12649
12650         * ps/ps-document.c: (ps_document_widget_event),
12651         (ps_document_set_target), (ps_document_finalize),
12652         (ps_document_get_page):
12653
12654         Disconnect the widget event signal on finalize.
12655         Some code cleanups.
12656
12657 2005-02-28  Marco Pesenti Gritti  <marco@gnome.org>
12658
12659         * ps/ps-document.c: (set_up_page):
12660
12661         If there is no bpixmap create one, even if size
12662         is not changed.
12663
12664 2005-02-28  Marco Pesenti Gritti  <marco@gnome.org>
12665
12666         * ps/ps-document.c: (ps_document_init), (ps_document_cleanup),
12667         (set_up_page), (document_load), (ps_document_set_zoom):
12668
12669         Default page is 0. Calculate size even when we have no
12670         target yet.
12671
12672 2005-02-28  Carlos Garcia Campos <carlosgc@gnome.org>
12673
12674         * shell/ev-sidebar.c: expand the selection widget to be always as
12675         wide as the sidebar
12676
12677 2005-02-28  Marco Pesenti Gritti  <marco@gnome.org>
12678
12679         * shell/ev-sidebar-thumbnails.c:
12680         (ev_sidebar_thumbnails_set_document):
12681
12682         Clear the list store when setting document
12683
12684 2005-02-28  Marco Pesenti Gritti  <marco@gnome.org>
12685
12686         * shell/ev-page-action.c: (update_entry), (sync_entry),
12687         (activate_cb), (entry_size_request_cb), (create_tool_item),
12688         (connect_proxy):
12689
12690         Use an entry for the page control instead of spinbuttons
12691
12692 2005-02-28  Marco Pesenti Gritti  <marco@gnome.org>
12693
12694         * data/evince.schemas.in:
12695
12696         Correct confusing string
12697
12698 Sun Feb 27 23:00:31 2005  Jonathan Blandford  <jrb@redhat.com>
12699
12700         * shell/ev-sidebar-links.c (do_one_iteration): Handle title links
12701         for real.  Gosh, how long has this been broken.
12702
12703         * pdf/xpdf/pdf-document.cc (build_link_from_action): add back the
12704         check for a NULL link.  We crash otherwise.
12705
12706 2005-02-27  Marco Pesenti Gritti  <marco@gnome.org>
12707
12708         * NEWS:
12709         * configure.ac:
12710
12711         Release 0.1.5
12712
12713 2005-02-25  Sebastien Bacher  <seb128@debian.org>
12714
12715         * configure.ac: add the french translation.
12716
12717 2005-02-25  Marco Pesenti Gritti  <marco@gnome.org>
12718
12719         * shell/ev-window.c:
12720
12721         Remove unused header -> fix distcheck
12722
12723 2005-02-25  Marco Pesenti Gritti  <marco@gnome.org>
12724
12725         * shell/ev-window.c: (update_window_title),
12726         (ev_window_popup_password_dialog):
12727
12728         Unescape filename for display
12729
12730 2005-02-25  Marco Pesenti Gritti  <marco@gnome.org>
12731
12732         * pdf/xpdf/pdf-document.cc:
12733
12734         In get_page_size deal with rotation. Also
12735         cleanup the function a bit.
12736
12737 2005-02-25  Marco Pesenti Gritti  <marco@gnome.org>
12738
12739         * pdf/xpdf/pdf-document.cc:
12740
12741         Fix crash when opening in new window
12742
12743 2005-02-25  Marco Pesenti Gritti  <marco@gnome.org>
12744
12745         * configure.ac:
12746
12747         Check ghostscript >= 7
12748
12749 2005-02-25  Pedro Villavicencio <pvillavi@gnome.cl>
12750
12751         * shell/ev-window.c:
12752
12753         Make page width the default sizing mode
12754
12755 2005-02-25  Carlos Garcia Campos <carlosgc@gnome.org>
12756         Marco Pesenti Gritti <marco@gnome.org>
12757
12758         * shell/ev-window.c: Remember the sidebar size
12759
12760         * data/evince.schemas.in: Add a new gconf key to store the size of
12761         the sidebar
12762
12763 2005-02-24  Kai Willadsen  <kaiw@itee.uq.edu.au>
12764
12765         * data/evince-ui.xml:
12766         * shell/ev-window.c: (update_action_sensitivity),
12767         (ev_window_cmd_view_reload):
12768         
12769         Add a "Reload" action and menu entry
12770
12771 Thu Feb 24 23:07:33 2005  Jonathan Blandford  <jrb@redhat.com>
12772
12773         * shell/ev-window.c (hide_sidebar_and_actions): Hide the sidebar
12774         iff the type doesn't support thumbnailing and indexing.
12775
12776 2005-02-24  Martin Kretzschmar  <martink@gnome.org>
12777
12778         * configure.ac (ALL_LINGUAS): Added "zh_TW" (Traditional Chinese).
12779
12780 2005-02-24  Marco Pesenti Gritti  <marco@gnome.org>
12781
12782         * pdf/splash/Splash.cc:
12783
12784         Port fix for a crasher from kde bug
12785         http://bugs.kde.org/show_bug.cgi?id=97131
12786
12787 2005-02-24  Marco Pesenti Gritti  <marco@gnome.org>
12788
12789         * pdf/xpdf/pdf-document.cc:
12790
12791         Return a link even if it's of an unrecognized
12792         type. Otherwise we go in an infinte cycle.
12793
12794 2005-02-24  Marco Pesenti Gritti  <marco@gnome.org>
12795
12796         * shell/ev-window.c: (update_sizing_buttons), (update_view_size),
12797         (size_allocate_cb), (ev_window_set_sizing_mode):
12798
12799         Update size when switching mode
12800
12801 2005-02-24  Marco Pesenti Gritti  <marco@gnome.org>
12802
12803         * shell/ev-window.c: (ev_window_cmd_view_best_fit),
12804         (ev_window_cmd_view_page_width), (update_sizing_buttons),
12805         (ev_window_cmd_view_normal_size):
12806
12807         Fix size toggle buttons behavior
12808
12809 2005-02-24  Marco Pesenti Gritti  <marco@gnome.org>
12810
12811         * shell/ev-view.c: (ev_view_get_offsets), (view_rect_to_doc_rect),
12812         (doc_rect_to_view_rect), (ev_view_size_allocate),
12813         (expose_bin_window), (ev_view_select_all), (page_changed_callback),
12814         (scale_changed_callback):
12815
12816         Do not cache offsets in size_allocate.
12817
12818 2005-02-24  Marco Pesenti Gritti  <marco@gnome.org>
12819
12820         * shell/ev-view.c: (ev_view_size_allocate):
12821
12822         Calculate offsets before calling the parent
12823         class (which does a redraw)
12824
12825 2005-02-24  Marco Pesenti Gritti  <marco@gnome.org>
12826
12827         * pdf/xpdf/pdf-document.cc:
12828
12829         Fix a crasher on exit. Unused code, put a TODO
12830
12831 2005-02-24  Marco Pesenti Gritti  <marco@gnome.org>
12832
12833         * backend/ev-document.c: (ev_document_class_init),
12834         (ev_document_page_changed), (ev_document_scale_changed):
12835         * backend/ev-document.h:
12836
12837         Separate page/scale notifications
12838
12839         * pdf/xpdf/pdf-document.cc:
12840
12841         Emit the new signals.
12842         Do not display the pdf page in _render, do it
12843         when scale/page are requested.
12844
12845         * ps/ps-document.c: (ps_document_set_zoom),
12846         (ps_document_widget_event):
12847         * ps/ps-document.h:
12848
12849         Emit the new signals.
12850
12851         * shell/ev-view.c: (ev_view_size_request), (expose_bin_window),
12852         (ev_view_init), (page_changed_callback), (scale_changed_callback),
12853         (ev_view_set_document), (ev_view_zoom), (ev_view_zoom_in),
12854         (ev_view_zoom_out), (size_to_zoom_factor), (ev_view_set_size):
12855         * shell/ev-view.h:
12856         * shell/ev-window.c: (ev_window_cmd_view_normal_size),
12857         (ev_window_cmd_view_page_width), (size_allocate_cb),
12858         (ev_window_set_sizing_mode):
12859
12860         Rework sizing to be pixel based.
12861         There are bugs but should be already way better.
12862
12863 2005-02-23  Marco Pesenti Gritti  <marco@gnome.org>
12864
12865         * shell/ev-window.c: (ev_window_init):
12866
12867         Do not allow to shrink sidebar smaller then
12868         child requisition
12869
12870 2005-02-23  Carlos Garcia Campos <carlosgc@gnome.org> 
12871
12872         * shell/ev-sidebar.[ch]
12873         * shell/ev-window.c:
12874
12875         Improved sidebar widget. Fixes #166683
12876
12877 2005-02-23  Tommi Vainikainen  <thv@iki.fi>
12878
12879         * shell/ev-view.c (update_find_status_message): Give translators
12880         more flexibility with ngettext plural handling.
12881
12882 Mon Feb 21 17:52:08 2005  Jonathan Blandford  <jrb@redhat.com>
12883
12884         * pdf/xpdf/pdf-document.cc (pdf_document_get_page_size): Patch
12885         from Crispin Flowerday <gnome@flowerday.cx> to avoid rendering the
12886         page when we get the page size.
12887
12888 2005-02-21  Marco Pesenti Gritti  <marco@gnome.org>
12889
12890         * ps/ps-document.c: (ps_document_set_page), (ps_document_get_page):
12891
12892         ps pages are 0 based, convert 
12893
12894 2005-02-21  Marco Pesenti Gritti  <marco@gnome.org>
12895
12896         * ps/ps-document.c: (ps_document_class_init), (ps_document_load):
12897
12898         Initialize correct parent class. Set GError on document load
12899
12900 2005-02-21  Marco Pesenti Gritti  <marco@gnome.org>
12901
12902         * pdf/xpdf/pdf-document.cc:
12903
12904         Fixup selection offset calculation
12905
12906         * shell/ev-view.c: (view_rect_to_doc_rect),
12907         (doc_rect_to_view_rect), (ev_view_size_allocate),
12908         (expose_bin_window), (ev_view_select_all), (ev_view_copy),
12909         (ev_view_primary_get_cb), (ev_view_motion_notify_event):
12910
12911         Store selection as document relative, so that zooming
12912         and offset changing doesnt break it.
12913
12914 2005-02-21  Marco Pesenti Gritti  <marco@gnome.org>
12915
12916         * shell/ev-view.c: (ev_view_best_fit):
12917
12918         Do not try to best fit if the view is not realized
12919
12920 2005-02-20  Kostas Papadimas <pkst@gnome.org>
12921           
12922         * configure.ac (ALL_LINGUAS): Added "el" (Greek).
12923
12924 Fri Feb 18 16:06:39 2005  Jonathan Blandford  <jrb@redhat.com>
12925
12926         * shell/ev-window.c (ev_window_focus_in_event): missed a case.
12927
12928 Fri Feb 18 15:32:57 2005  Jonathan Blandford  <jrb@redhat.com>
12929
12930         * shell/ev-window.c: Change the fullscreen toolbar to always be in
12931         the popup window.  That prevents it resizing when in full screen
12932         mode.
12933
12934         * shell/ev-view.c: Change Zoom epsilon as a bad hack to avoid
12935         multiple rerenders.  This pretty much sucks.
12936
12937         * data/evince-ui.xml: Change the fullscreen toolbar to include the
12938         rest of the toolbar.
12939
12940 2005-02-18  Tommi Vainikainen  <thv@iki.fi>
12941
12942         * configure.ac (ALL_LINGUAS): Added "fi" (Finnish).
12943
12944 2005-02-17  Alexander Shopov  <ash@contact.bg>
12945
12946         * configure.in (ALL_LINGUAS): Added "bg" (Bulgarian)
12947
12948 2005-02-16  Bryan Clark  <clarkbw@cvs.gnome.org>
12949
12950         * shell/ev-window.c: added ellipsis to Print item. Fixes bug 166915
12951
12952 2005-02-16  Marco Pesenti Gritti  <marco@gnome.org>
12953
12954         * shell/ev-view.c: (ev_view_realize), (highlight_find_results),
12955         (ev_view_create_invisible_cursor), (ev_view_set_cursor),
12956         (set_document_page), (document_changed_callback),
12957         (ev_view_set_document), (ev_view_find_previous),
12958         (ev_view_hide_cursor), (ev_view_show_cursor):
12959         * shell/ev-view.h:
12960         * shell/ev-window.c: (update_chrome_visibility),
12961         (fullscreen_timeout_cb), (fullscreen_set_timeout),
12962         (fullscreen_clear_timeout), (fullscreen_motion_notify_cb),
12963         (fullscreen_leave_notify_cb), (ev_window_fullscreen),
12964         (ev_window_unfullscreen):
12965         * shell/main.c: (main):
12966
12967         Automatically hide the fullscreen button.
12968         Patch by Kristian Høgsberg <krh@redhat.com>
12969
12970 2005-02-16  Vincent Noel  <vnoel@cox.net>
12971
12972         * shell/main.c (main): Specify an icon for the window. Patch by
12973         Jaap A. Haitsma. Fixes #166177.
12974
12975 Wed Feb 16 06:30:13 2005  Jonathan Blandford  <jrb@redhat.com>
12976
12977         * shell/ev-view.c (ev_view_realize): get rid of the black flash.
12978
12979 Tue Feb 15 22:27:13 2005  Jonathan Blandford  <jrb@redhat.com>
12980
12981         * backend/ev-document-misc.h:
12982         * backend/ev-document-misc.c:
12983         (ev_document_misc_get_page_border_size),
12984         (ev_document_misc_paint_one_page): New function to canonicalize
12985         sizing/painting a border.
12986
12987         * shell/Makefile.am: Remove ev-page-view.c entirely as it's not
12988         used.
12989
12990         * pdf/xpdf/pdf-document.cc: use new function
12991
12992         * shell/ev-view.c: (ev_view_size_request), (expose_bin_window),
12993         (ev_view_init), (ev_view_set_mode), (ev_view_zoom),
12994         (ev_view_best_fit), (ev_view_fit_width): * shell/ev-view.h: *
12995         shell/ev-window.c: (update_sizing_buttons),
12996         (ev_window_setup_document), (ev_window_cmd_view_zoom_in),
12997         (ev_window_cmd_view_zoom_out), (ev_window_cmd_view_best_fit),
12998         (ev_window_cmd_view_page_width), (size_allocate_cb),
12999         (ev_window_set_sizing_mode), (ev_window_init): make the "best fit"
13000         and "fit width" values act as toggle buttons so they stay
13001         toggled.  It's not 100% perfect, and it's a little slow, but it's
13002         good enough to commit I think.
13003
13004 2005-02-15  David Lodge  <dave@cirt.net>
13005
13006         * configure.ac (ALL_LINGUAS): Added "en_GB" (English (British)).
13007
13008 2005-02-15  Martin Kretzschmar  <martink@gnome.org>
13009
13010         * shell/ev-window.c (update_window_title): replace newlines in
13011         the title by spaces. Bug #166107.
13012
13013 2005-02-14  Martin Kretzschmar  <martink@gnome.org>
13014
13015         * shell/ev-view.c (ev_view_best_fit, ev_view_fit_width): add
13016         parameters providing allocation width and height without
13017         scrollbars and width of a possible vertical scrollbar. With this
13018         additional information the functions can work as
13019         intended. Unfortunately they're not idempotent. We should
13020         transform these commands to toggles. Fixes Bug #164976
13021         Initial patch by Stephane Loeuillet, then heavily modified.
13022
13023         * shell/ev-view.h: update prototypes.
13024
13025         * shell/ev-window.c (ev_window_cmd_view_best_fit)
13026         (ev_window_cmd_view_page_width): provide EvView fit functions with
13027         all the information they need. Formulas to calculate this
13028         information taken from GtkScrolledWindow.
13029
13030 2005-02-14  Crispin Flowerday  <gnome@flowerday.cx>
13031
13032         * shell/ev-sidebar-thumbnails.c: Ensure that after we have
13033         created a thumbnail, the list store is updated to know
13034         that the thumbnail is set. Fixes bug #166792
13035
13036 2005-02-11  Bryan Clark  <clarkbw@cvs.gnome.org>
13037
13038         * shell/ev-window.c: fixed typo, closes bug 166897
13039
13040         * TODO: updated TODO with bug numbers that are relevant
13041
13042 2005-02-09  Carlos Garcia Campos <carlosgc@gnome.org>
13043
13044         * shell/ev-window.c: Support for DnD of files. Fixes #164813
13045
13046 2005-02-09  Vincent Noel  <vnoel@cox.net>
13047
13048         * shell/ev-window.c: (set_action_properties): Set the "Previous"
13049         and "Next" toolbar buttons as important to make them stand out.
13050
13051 2005-02-09  Marco Pesenti Gritti  <marco@gnome.org>
13052
13053         * lib/ev-debug.c:
13054         * lib/ev-debug.h:
13055         * ps/ps-document.c: (ps_document_finalize), (set_up_page),
13056         (start_interpreter), (stop_interpreter), (document_load),
13057         (ps_document_next_page), (ps_document_goto_page),
13058         (ps_document_set_page_size), (ps_document_widget_event),
13059         (ps_document_render):
13060         * shell/ev-page-view.c: (ev_page_view_dispose):
13061         * shell/ev-view.c: (ev_view_finalize), (expose_bin_window):
13062
13063         Fix compilation on non-gcc platforms
13064
13065 2005-02-09  Marco Pesenti Gritti  <marco@gnome.org>
13066
13067         * NEWS:
13068         * configure.ac:
13069
13070         Release 0.1.4
13071
13072         * pdf/xpdf/Catalog.cc:
13073         * pdf/xpdf/XRef.cc:
13074
13075         Fix the fix for CAN-2004-0888
13076
13077 2005-02-09  Luca Ferretti <elle.uca@libero.it>
13078
13079         * data/Makefile.am:
13080         * data/evince-ui.xml:
13081         * shell/ev-stock-icons.c: (ev_stock_icons_init):
13082         * shell/ev-stock-icons.h:
13083         * shell/ev-window.c: (update_action_sensitivity),
13084         (ev_window_cmd_go_previous_page), (ev_window_cmd_go_next_page),
13085         (set_action_properties):
13086
13087         Improve toolbar layout/icons
13088
13089 2005-02-08  Marco Pesenti Gritti  <marco@gnome.org>
13090
13091         * pdf/xpdf/pdf-document.cc:
13092
13093         Add warnings about unimplemented/unknown link
13094         types.
13095
13096 2005-02-07  Marco Pesenti Gritti  <marco@gnome.org>
13097
13098         * ps/ps-document.c: (set_up_page):
13099
13100         Log gs property
13101
13102 2005-02-07  Marco Pesenti Gritti  <marco@gnome.org>
13103
13104         * ps/ps-document.c: (start_interpreter):
13105
13106         Log gs env var
13107
13108 2005-02-07  Marco Pesenti Gritti  <marco@gnome.org>
13109
13110         * shell/ev-page-view.c: (ev_page_view_dispose):
13111         * shell/ev-view.c: (ev_view_finalize):
13112         * shell/ev-window.c: (ev_window_setup_document),
13113         (ev_window_dispose), (ev_window_init):
13114
13115         Solve more refs issues.
13116
13117         I commented out the page_view initialization for now:
13118         it was never destroyed (because it's never added
13119         to a container). Because of that we was leaking
13120         gs processes. Couldnt think to a clean fix.
13121         We need to figure this out, password view has the
13122         same issue probably.
13123
13124 2005-02-07  Marco Pesenti Gritti  <marco@gnome.org>
13125
13126         * ps/ps-document.c: (ps_document_finalize),
13127         (ps_document_get_n_pages), (ps_document_get_page):
13128
13129         Some cleanups, stop the interpreter on finalize
13130
13131         * shell/ev-page-view.c: (ev_page_view_dispose),
13132         (ev_page_view_class_init):
13133
13134         Release our reference on the document
13135
13136 2005-02-07  Marco Pesenti Gritti  <marco@gnome.org>
13137
13138         * Makefile.am:
13139         * configure.ac:
13140         * doc/debugging.txt:
13141         * lib/.cvsignore:
13142         * lib/Makefile.am:
13143         * lib/ev-debug.c: (log_module), (trap_handler), (ev_debug_init),
13144         (ev_profiler_new), (ev_should_profile), (ev_profiler_dump),
13145         (ev_profiler_free), (ev_profiler_start), (ev_profiler_stop):
13146         * lib/ev-debug.h:
13147
13148         Add debugging helpers
13149
13150         * ps/Makefile.am:
13151         * ps/ps-document.c: (set_up_page), (start_interpreter),
13152         (stop_interpreter), (document_load), (ps_document_next_page),
13153         (ps_document_goto_page), (ps_document_set_page_size),
13154         (ps_document_widget_event), (ps_document_render):
13155         * shell/Makefile.am:
13156         * shell/ev-view.c: (expose_bin_window):
13157         * shell/main.c: (main):
13158
13159         Add some logs
13160         
13161 2005-02-07  Marco Pesenti Gritti  <marco@gnome.org>
13162
13163         * ps/ps-document.c: (ps_document_widget_event):
13164
13165         Initialize message_window, this should make ps
13166         rendering really work! (Never noticed because I was
13167         testing with a ps that is causing gs to exit every time!)
13168
13169 2005-02-07  Bryan Clark  <clarkbw@cvs.gnome.org>
13170
13171         * data/evince.schemas.in: updated simple error in applyto closing tag
13172
13173 2005-02-07  Christian Persch  <chpe@cvs.gnome.org>
13174
13175         * Makefile.am:
13176         * configure.ac:
13177         * data/.cvsignore:
13178         * data/Makefile.am:
13179         * data/evince-ui.xml:
13180         A data/evince.schemas.in:
13181         * po/POTFILES.in:
13182         * shell/ev-stock-icons.c: (ev_stock_icons_init):
13183         * shell/ev-stock-icons.h:
13184         * shell/ev-window.c: (update_chrome_visibility),
13185         (update_chrome_flag), (ev_window_cmd_edit_find),
13186         (ev_window_update_fullscreen_popup), (ev_window_fullscreen),
13187         (ev_window_unfullscreen), (ev_window_focus_in_event),
13188         (ev_window_focus_out_event), (ev_window_cmd_leave_fullscreen),
13189         (ev_window_view_toolbar_cb), (ev_window_view_statusbar_cb),
13190         (ev_window_view_sidebar_cb), (find_bar_close_cb),
13191         (ev_window_dispose), (ev_window_class_init),
13192         (set_action_properties), (set_chrome_actions), (load_chrome),
13193         (ev_window_init):
13194
13195         Implement fullscreen mode changes from bug #164776.
13196         Also implement persistent chrome toggles.
13197
13198 2005-02-07  Jordi Mallach  <jordi@sindominio.net>
13199
13200         * configure.ac (ALL_LINGUAS): Added "ca" (Catalan).
13201
13202 2005-02-04  Marco Pesenti Gritti  <marco@gnome.org>
13203
13204         * NEWS:
13205         * configure.ac:
13206         * shell/ev-view.c:
13207
13208         Add another check for find interface
13209
13210         Release 0.1.3
13211
13212 2005-02-04  Marco Pesenti Gritti  <marco@gnome.org>
13213
13214         * shell/ev-application.c: (ev_application_open):
13215         * shell/ev-window.c: (ev_window_open):
13216
13217         Open gzipped ps documents
13218
13219 2005-02-04  Marco Pesenti Gritti  <marco@gnome.org>
13220
13221         * TODO:
13222         * shell/ev-view.c: (set_document_page):
13223
13224         Clamp page number, dont try to move to
13225         not existant pages.
13226
13227 2005-02-04  Marco Pesenti Gritti  <marco@gnome.org>
13228
13229         * backend/ev-document-find.c: (ev_document_find_changed):
13230         * backend/ev-document-find.h:
13231         * pdf/xpdf/pdf-document.cc:
13232         * shell/ev-view.c: (jump_to_find_result), (ev_view_set_document):
13233         * shell/ev-window.c: (find_bar_search_changed_cb):
13234
13235         Fix several bugs with find
13236
13237 2005-02-04  Martin Kretzschmar  <martink@gnome.org>
13238
13239         * shell/ev-sidebar-thumbnails.c
13240         (ev_sidebar_thumbnails_select_page): do nothing unless we have a
13241         document. Prevents warning from scroll_to_cell.
13242
13243 2005-02-02  Kjartan Maraas  <kmaraas@gnome.org>
13244
13245         * configure.ac: Add «nb» to ALL_LINGUAS too.
13246
13247 Wed Feb  2 21:13:11 2005  Jonathan Blandford  <jrb@redhat.com>
13248
13249         * NOTES: New file with some random thoughts.
13250
13251         * TODO: Update.
13252
13253         * backend/ev-document-misc.c:
13254         (ev_document_misc_get_page_border_size): New function to
13255         canonicalize shadow drawing sizes.  Possibly goofy.
13256
13257         * shell/ev-view.c: (ev_view_size_request), (set_document_page),
13258         (ev_view_best_fit), (ev_view_fit_width):
13259         * pdf/xpdf/pdf-document.cc:
13260         * pixbuf/pixbuf-document.c: (pixbuf_document_get_page_size):
13261         * ps/ps-document.c: (ps_document_get_page_size):
13262         * backend/ev-document-misc.h:
13263         * backend/ev-document.c: (ev_document_get_page_size):
13264         * backend/ev-document.h: get_page_size now takes a page number
13265         parameter.  Made all the backends/frontends honor it.
13266
13267         * data/evince-ui.xml: Added a multiple-page mode.  Uncomment to
13268         see.  Doesn't work yet.
13269
13270         * shell/Makefile.am:
13271         * shell/ev-page-view.[ch]: New multi-page view.  Really rough.
13272         Doesn't do anything yet.
13273
13274         * shell/ev-sidebar-thumbnails.c:
13275         (ev_sidebar_thumbnails_set_document): [1..n_pages] instead of
13276         [0..n_pages-1]
13277
13278         * shell/ev-window.c: (update_action_sensitivity),
13279         (ev_window_setup_document), (ev_window_set_page_mode),
13280         (ev_window_page_mode_cb), (ev_window_init): Clean up the
13281         view-swapping code a bit so we can have multiple views on a
13282         document.  Add the multi-page view, though it can't be turned on
13283         yet.
13284
13285 2005-02-01  Marco Pesenti Gritti  <marco@gnome.org>
13286
13287         * shell/ev-application.c: (ev_application_open):
13288         * shell/ev-view.c: (expose_bin_window):
13289         * shell/ev-window.c: (ev_window_open):
13290
13291         Support eps and check document supports find
13292         before drawing highlightings in expose.
13293
13294 2005-01-13  Jeff Muizelaar  <jeff@nit.ca>
13295
13296         * pixbuf/pixbuf-document.c:
13297         (pixbuf_document_thumbnails_get_dimensions),
13298         (pixbuf_document_document_thumbnails_iface_init):
13299
13300         implement get_dimensions
13301
13302 2005-02-01  Marco Pesenti Gritti  <marco@gnome.org>
13303
13304         * NEWS:
13305         * configure.ac:
13306
13307         Release 0.1.2
13308
13309 2005-01-30  Marco Pesenti Gritti  <marco@gnome.org>
13310
13311         * shell/ev-view.c: (set_document_page):
13312
13313         Scroll at the top of the page when changing page
13314
13315 2005-01-30  Marco Pesenti Gritti  <marco@gnome.org>
13316
13317         * shell/ev-view.c: (ev_view_motion_notify_event):
13318
13319         Do not redraw unnecessarily
13320
13321 2005-01-30  Marco Pesenti Gritti  <marco@gnome.org>
13322
13323         * pdf/xpdf/pdf-document.cc:
13324         * shell/ev-view.c: (draw_rubberband), (highlight_find_results),
13325         (expose_bin_window), (find_changed_cb):
13326
13327         Yay! find works now... Now to find bugs...
13328
13329 2005-01-30  Marco Pesenti Gritti  <marco@gnome.org>
13330
13331         * backend/ev-document-find.c: (ev_document_find_base_init),
13332         (ev_document_find_changed):
13333         * backend/ev-document-find.h:
13334         * pdf/xpdf/pdf-document.cc:
13335         * shell/ev-view.c: (draw_rubberband), (highlight_find_results),
13336         (expose_bin_window), (ev_view_init), (set_document_page),
13337         (ensure_rectangle_is_visible), (jump_to_find_result),
13338         (jump_to_find_page), (find_changed_cb), (ev_view_set_document),
13339         (ev_view_find_next), (ev_view_find_previous):
13340         * shell/ev-view.h:
13341         * shell/ev-window.c: (find_bar_previous_cb), (find_bar_next_cb):
13342
13343         More work on find implementation, mostly there now
13344
13345 2005-01-29  Marco Pesenti Gritti  <marco@gnome.org>
13346
13347         * backend/ev-backend-marshalers.list:
13348         * backend/ev-document-find.c: (ev_document_find_base_init),
13349         (ev_document_find_cancel), (ev_document_find_page_has_results),
13350         (ev_document_find_get_n_results), (ev_document_find_get_result),
13351         (ev_document_find_get_progress), (ev_document_find_changed):
13352         * backend/ev-document-find.h:
13353
13354         Enanche the find interface to be really able to do
13355         multi page find.
13356
13357         * pdf/xpdf/pdf-document.cc:
13358
13359         Implement
13360
13361         * shell/ev-view.c: (ev_view_finalize), (highlight_find_results),
13362         (expose_bin_window), (ev_view_init),
13363         (ev_view_get_find_status_message), (find_changed_cb),
13364         (ev_view_set_document), (set_document_page):
13365
13366         Adapt to the new interface. A few things are regressed sorry,
13367         I will finish it soon.
13368
13369 2005-01-28  Martin Kretzschmar  <martink@gnome.org>
13370
13371         * shell/ev-sidebar-thumbnails.c (ev_sidebar_thumbnails_destroy)
13372         (ev_sidebar_thumbnails_class_init): use G_DEFINE_TYPE-supplied
13373         ev_sidebar_thumbnails_parent_class variable, don't define another
13374         parent_class variable.
13375
13376         * shell/ev-page-action.c (connect_proxy, ev_page_action_finalize)
13377         (ev_page_action_class_init): ditto.
13378
13379         * pixbuf/pixbuf-document.c (pixbuf_document_finalize)
13380         (pixbuf_document_class_init): ditto.
13381
13382         * backend/ev-link.c (ev_window_dispose, ev_link_class_init):
13383         ditto.
13384
13385         * .cvsignore: ignore various valgrind output files.
13386
13387 2005-01-27  Marco Pesenti Gritti  <marco@gnome.org>
13388
13389         * data/evince-ui.xml:
13390         * shell/Makefile.am:
13391         * shell/ev-history.c:
13392         * shell/ev-history.h:
13393         * shell/ev-navigation-action.c:
13394         * shell/ev-navigation-action.h:
13395         * shell/ev-view.c: (ev_view_finalize), (ev_view_go_to_link),
13396         (ev_view_set_page), (ev_view_fit_width):
13397         * shell/ev-view.h:
13398         * shell/ev-window.c: (update_action_sensitivity),
13399         (ev_window_setup_document), (register_custom_actions):
13400
13401         Kill session history
13402
13403 2005-01-27  Marco Pesenti Gritti  <marco@gnome.org>
13404
13405         * shell/ev-window.c: (update_action_sensitivity):
13406
13407         Fix inverted up/down buttons
13408
13409 2005-01-27  Martin Kretzschmar  <martink@gnome.org>
13410
13411         * shell/ev-sidebar-thumbnails.c
13412         (ev_sidebar_thumbnails_select_page): make sure the selected
13413         thumbnail stays visible.
13414
13415 2005-01-26  Martin Kretzschmar  <martink@gnome.org>
13416
13417         * shell/ev-window.c (ev_window_init): add GTK_SHADOW_IN to the
13418         scrolled window for Federico.
13419
13420 2005-01-26  Ole Laursen  <olau@hardworking.dk>
13421
13422         * configure.ac: Added "da" (Danish) to ALL_LINGUAS.
13423
13424 2005-01-26  Marco Pesenti Gritti  <marco@gnome.org>
13425
13426         * configure.ac:
13427         * pdf/splash/SplashFTFontEngine.cc:
13428
13429         Fix CID fonts with freetype 2.1.9
13430
13431 2005-01-26  Bryan Clark  <clarkbw@cvs.gnome.org>
13432
13433         * TODO: added item for desktop icon thumbnailer
13434
13435 Tue Jan 25 00:59:34 2005  Jonathan Blandford  <jrb@redhat.com>
13436
13437         * pdf/xpdf/pdf-document.cc (pdf_document_get_title): guard against
13438         unloaded docs when the title is accessed.
13439
13440         * shell/ev-password-view.[hc]: New widget for displaying password
13441         state.
13442
13443         * shell/ev-window.[ch]: Refactor password handling code to handle
13444         the new view.
13445
13446 2005-01-24  Marco Pesenti Gritti  <marco@gnome.org>
13447
13448         * NEWS:
13449         * configure.ac:
13450         * data/Makefile.am:
13451
13452         Release 0.1.1
13453
13454 2005-01-23  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
13455
13456         * pdf/xpdf/pdf-document.cc (pdf_document_search_page_changed):
13457         ignore page offset here, to make search results independent of it,
13458
13459         * shell/ev-view.c (expose_bin_window): but take offsets into
13460         account here. Bug #164932
13461
13462         * pdf/xpdf/pdf-document.cc (pdf_document_get_link): divide by
13463         scale at the right time. Bug #164996
13464
13465 2005-01-22  Martin Kretzschmar  <martink@gnome.org>
13466
13467         * pdf/xpdf/GlobalParams.cc: My 2005-01-05 change didn't actually
13468         fix the problem. Now I just removed the Adobe font names and hope
13469         that the URW fonts are always in outline format. Bug #164934
13470
13471         * shell/ev-window.c (update_window_title): empty titles are
13472         useless, use filename in that case too.
13473
13474         * NEWS: Add some content.
13475
13476 2005-01-21  Bryan Clark  <clarkbw@cvs.gnome.org>
13477
13478         * TODO: added one more TODO item and a TODONE section :)
13479
13480 2005-01-21  Martin Kretzschmar  <martink@gnome.org>
13481
13482         * ps/ps-document.h: add page_[xy]_offset fields.
13483
13484         * ps/ps-document.c (ps_document_set_page_offset)
13485         (ps_document_render): Keep offset in consideration in a few
13486         places. Bug #164752 "postscript documents are not centered in
13487         window"
13488
13489         * data/evince.desktop.in (X-GNOME-Bugzilla-Product):
13490         s/gpdf/evince/. Spotted by Stephane Loeuillet.
13491
13492         * pixbuf/pixbuf-document.c (pixbuf_document_get_n_pages)
13493         (pixbuf_document_get_text, pixbuf_document_document_iface_init):
13494         stub out missing methods for complete EvDocument implementation.
13495         Fixes segfaults with Save A Copy and Copy actions.
13496
13497         * ps/ps-document.c (ps_document_save, ps_document_get_text) 
13498         (ps_document_document_iface_init): ditto.
13499         
13500 2005-01-21  Marco Pesenti Gritti  <marco@gnome.org>
13501
13502         * data/.cvsignore:
13503         * data/Makefile.am:
13504         * data/evince.desktop.in:
13505
13506         Add desktop file
13507
13508 2005-01-21  Marco Pesenti Gritti  <marco@gnome.org>
13509
13510         * shell/ev-view.c: (ev_view_button_press_event),
13511         (ev_view_motion_notify_event):
13512
13513         Make selection work in any direction
13514
13515 2005-01-21  Marco Pesenti Gritti  <marco@gnome.org>
13516
13517         * TODO:
13518         * shell/ev-window.c: (set_short_labels), (ev_window_init):
13519
13520         Use shorter labels for some of the toolbars items
13521
13522 2005-01-21  Marco Pesenti Gritti  <marco@gnome.org>
13523
13524         * pdf/xpdf/pdf-document.cc:
13525
13526         Check the links info is initialized before
13527         using it. Should fix a crash on startup.
13528
13529 2005-01-21  Martin Kretzschmar  <martink@gnome.org>
13530
13531         * pixbuf/pixbuf-document.c
13532         (pixbuf_document_thumbnails_get_dimensions): force floating point
13533         division to calculate page_ratio. Fixes crash with landscape
13534         format pixbufs.
13535
13536 Thu Jan 20 18:56:35 2005  Jonathan Blandford  <jrb@redhat.com>
13537
13538         * shell/ev-view.c (ev_view_realize): make the bg color darker.
13539
13540 2005-01-20  Martin Kretzschmar  <martink@gnome.org>
13541
13542         * shell/ev-view.c (set_document_page): unset has_selection when
13543         the page changes.
13544         (set_document_page): handle paper size changes when the page
13545         changes (test with Free Culture, page 2).
13546
13547 2005-01-20  Marco Pesenti Gritti  <marco@gnome.org>
13548
13549         * shell/ev-view.c: (ev_view_size_request), (ev_view_realize),
13550         (expose_bin_window), (ev_view_class_init), (ev_view_init):
13551
13552         Use normal style color for the widget background and
13553         draw a black box around the page.
13554
13555 2005-01-20  Marco Pesenti Gritti  <marco@gnome.org>
13556
13557         * pdf/xpdf/pdf-document.cc:
13558
13559         Keep offset in consideration in a few places
13560
13561         * shell/ev-view.c: (expose_bin_window):
13562
13563         Set the offsets so that the document is ever centered
13564
13565 2005-01-20  Bryan Clark  <clarkbw@cvs.gnome.org>
13566
13567         * TODO: Added TODO items and finished off the first todo item
13568
13569         * AUTHORS: Updated AUTHORS section with piece from gpdf file and
13570         reflect current authors
13571
13572 2005-01-20  Marco Pesenti Gritti  <marco@gnome.org>
13573
13574         * pdf/xpdf/pdf-document.cc:
13575         * shell/ev-view.c: (ev_view_set_cursor),
13576         (ev_view_motion_notify_event), (document_changed_callback),
13577         (set_document_page):
13578
13579         Show a wait cursor while the page is rendering
13580
13581 2005-01-20  Marco Pesenti Gritti  <marco@gnome.org>
13582
13583         * shell/ev-sidebar-thumbnails.c:
13584         (ev_sidebar_tree_selection_changed),
13585         (ev_sidebar_thumbnails_select_page):
13586         * shell/ev-sidebar-thumbnails.h:
13587         * shell/ev-view.c: (ev_view_set_document), (ev_view_can_go_back),
13588         (ev_view_can_go_forward):
13589         * shell/ev-window.c: (ev_window_open_page),
13590         (ev_window_setup_document), (update_current_page),
13591         (view_page_changed_cb), (ev_window_init):
13592         * shell/ev-window.h:
13593
13594         Ensure thumbnails selection, toolbar page control and
13595         current page are in sync.
13596
13597 2005-01-19  Marco Pesenti Gritti  <marco@gnome.org>
13598
13599         * pdf/xpdf/XRef.cc:
13600
13601         Fix CAN-2005-0064
13602
13603 Wed Jan 19 01:10:57 2005  Jonathan Blandford  <jrb@redhat.com>
13604
13605         * backend/Makefile.am:
13606         * backend/ev-document-links.h:
13607         * backend/ev-document-security.c: (ev_document_security_get_type),
13608         (ev_document_security_has_document_security),
13609         (ev_document_security_set_password):
13610         * backend/ev-document-security.h:
13611         * backend/ev-document.c: (ev_document_error_quark):
13612         * backend/ev-document.h:
13613         * data/Makefile.am:
13614         * data/evince-password.glade:
13615         * pdf/xpdf/pdf-document.cc:
13616         * shell/Makefile.am:
13617         * shell/ev-password.c: (ev_password_set_bad_password_label),
13618         (ev_window_password_entry_changed_cb), (ev_password_dialog_new),
13619         (ev_password_dialog_get_password),
13620         (ev_password_dialog_set_bad_pass):
13621         * shell/ev-password.h:
13622         * shell/ev-window.c: (ev_window_get_attribute),
13623         (ev_window_set_property), (update_action_sensitivity),
13624         (ev_window_is_empty), (mime_type_supported_by_gdk_pixbuf),
13625         (ev_window_setup_document), (ev_window_get_password),
13626         (ev_window_open), (ev_window_cmd_save_as),
13627         (using_postscript_printer), (ev_window_print),
13628         (find_not_supported_dialog), (ev_window_cmd_edit_find),
13629         (update_fullscreen_popup), (ev_window_fullscreen),
13630         (ev_window_unfullscreen), (ev_window_cmd_view_fullscreen),
13631         (ev_window_focus_out_cb), (ev_window_cmd_help_about),
13632         (menu_item_select_cb), (find_bar_search_changed_cb),
13633         (ev_window_dispose), (ev_window_init):
13634
13635         Add initial support for password-supported dialogs.  This could be
13636         a lot cooler, but it'll do for now.
13637
13638 2005-01-18  Marco Pesenti Gritti  <marco@gnome.org>
13639
13640         * pdf/xpdf/pdf-document.cc:
13641         * shell/ev-view.c: (status_message_from_link),
13642         (ev_view_set_status), (ev_view_set_cursor),
13643         (ev_view_motion_notify_event), (ev_view_init):
13644         * shell/ev-window.c: (view_status_changed_cb), (ev_window_init):
13645
13646         Fix bugs in the links implementation and change cursor
13647         when hovering a link.
13648
13649 2005-01-17  Bryan Clark  <clarkbw@cvs.gnome.org>
13650
13651         * viewer/.cvsignore: added cvsignore file for viewer directory
13652
13653         * TODO: created TODO document
13654
13655 2005-01-14  Dave Malcolm  <dmalcolm@redhat.com>
13656
13657         * shell/ev-view.h:
13658         * shell/ev-view.c (ev_view_can_go_back), (ev_view_can_go_forward):      
13659         new functions to help with implementation of sensitivity code
13660         * shell/ev-window.c (update_action_sensitivity): Fix sensitivity
13661         of all actions that might require it.  Fixes a crash when you
13662         click on the Zoom actions in a window lacking a document.
13663
13664 2005-01-13  Dave Malcolm  <dmalcolm@redhat.com>
13665
13666         * shell/ev-window.c (update_action_sensitivity): Fix sensitivity
13667         of the Find action
13668
13669 2005-01-13  Marco Pesenti Gritti  <marco@gnome.org>
13670
13671         * pixbuf/pixbuf-document.c: (pixbuf_document_get_link),
13672         (pixbuf_document_document_iface_init):
13673         * ps/ps-document.c: (ps_document_get_link),
13674         (ps_document_document_iface_init):
13675         * shell/ev-view.c: (ev_view_realize), (ev_view_button_press_event),
13676         (status_message_from_link), (ev_view_set_status),
13677         (ev_view_set_find_status), (ev_view_motion_notify_event),
13678         (ev_view_button_release_event), (ev_view_set_property),
13679         (ev_view_get_property), (ev_view_class_init), (ev_view_init),
13680         (ev_view_get_find_status_message), (update_find_results),
13681         (ev_view_get_status), (ev_view_get_find_status):
13682         * shell/ev-view.h:
13683         * shell/ev-window.c: (view_status_changed_cb),
13684         (view_find_status_changed_cb), (ev_window_init):
13685
13686         View status message support, use it to show the links.
13687         Needs work...
13688
13689 2005-01-13  Marco Pesenti Gritti  <marco@gnome.org>
13690
13691         * backend/ev-document.c: (ev_document_get_link):
13692         * backend/ev-document.h:
13693         * pdf/xpdf/pdf-document.cc:
13694         * shell/ev-application.c: (ev_application_open):
13695         * shell/ev-application.h:
13696         * shell/ev-sidebar-links.c: (selection_changed_cb):
13697         * shell/ev-view.c: (ev_view_button_release_event), (go_to_link),
13698         (ev_view_go_to_link):
13699
13700         Add support for document links
13701
13702 2005-01-13  Anders Carlsson  <andersca@gnome.org>
13703
13704         * shell/ev-page-action.c: (update_spin), (total_pages_changed_cb),
13705         (create_tool_item):
13706         Set the spin button limits correctly.
13707         
13708         * shell/ev-sidebar-thumbnails.c:
13709         (ev_sidebar_tree_selection_changed), (ev_sidebar_thumbnails_init):
13710         Support changing pages by clicking on the thumbnails.
13711         
13712 2005-01-13  Jeff Muizelaar  <jeff@nit.ca>
13713
13714         * pixbuf/pixbuf-document.c:
13715         (pixbuf_document_thumbnails_get_dimensions),
13716         (pixbuf_document_document_thumbnails_iface_init):
13717
13718         implement get_dimensions
13719
13720 2005-01-13  Marco Pesenti Gritti  <marco@gnome.org>
13721
13722         * ps/ps-document.c: (ps_document_goto_page):
13723
13724         Fix page switching on multipage documents
13725
13726 2005-01-12  Jeff Muizelaar  <jrmuizel@nit.ca>
13727
13728         * pixbuf/pixbuf-document.c: (pixbuf_document_get_page_size):
13729         
13730         check for NULL before assigning to width and height parameters
13731
13732 2005-01-12  Jeff Muizelaar  <jeff@nit.ca>
13733
13734         * pixbuf/pixbuf-document.c: (pixbuf_document_class_init),
13735         (pixbuf_document_set_property), (pixbuf_document_get_property):
13736
13737         implement get/set properties
13738
13739 2005-01-12  Jeff Muizelaar  <jeff@nit.ca>
13740
13741         * pdf/xpdf/pdf-document.cc: (pdf_info_dict_get_string):
13742         
13743         return NULL instead of "Unknown", letting the title get set to
13744         the filename when the pdf has no title.
13745
13746 2005-01-11  Marco Pesenti Gritti  <marco@gnome.org>
13747
13748         * ps/ps-document.c: (ps_document_get_page_count),
13749         (ps_document_goto_page):
13750
13751 2005-01-11  Marco Pesenti Gritti  <marco@gnome.org>
13752
13753         * shell/ev-history.c: (ev_history_get_property),
13754         (ev_history_set_property), (ev_history_class_init),
13755         (ev_history_add_page), (ev_history_set_current_index):
13756         * shell/ev-navigation-action.c: (ev_navigation_action_set_history),
13757         (activate_menu_item_cb), (new_history_menu_item), (build_menu),
13758         (ev_navigation_action_finalize):
13759         * shell/ev-navigation-action.h:
13760         * shell/ev-view.c: (ev_view_set_document), (ev_view_go_back),
13761         (ev_view_go_forward), (ev_view_get_find_status_message),
13762         (history_index_changed_cb), (ev_view_set_history):
13763         * shell/ev-view.h:
13764         * shell/ev-window.c: (update_total_pages), (ev_window_open),
13765         (update_current_page), (register_custom_actions):
13766
13767         Implement history dropdowns
13768
13769 2005-01-11  Marco Pesenti Gritti  <marco@gnome.org>
13770
13771         * shell/ev-history.c: (ev_history_init), (ev_history_add_link):
13772         * shell/ev-view.c: (ev_view_set_document), (ev_view_go_back),
13773         (ev_view_go_forward):
13774         * shell/ev-window.c: (register_custom_actions):
13775
13776         Fix several history bugs
13777
13778 2005-01-11  Kjartan Maraas  <kmaraas@gnome.org>
13779
13780         * configure.ac: Add «nb» to ALL_LINGUAS.
13781
13782 2005-01-10  Marco Pesenti Gritti  <marco@gnome.org>
13783
13784         * backend/Makefile.am:
13785         * backend/ev-bookmark.c:
13786         * backend/ev-bookmark.h:
13787         * backend/ev-document-bookmarks.c:
13788         * backend/ev-document-bookmarks.h:
13789         * backend/ev-document-links.c: (ev_document_links_get_type),
13790         (ev_document_links_has_document_links),
13791         (ev_document_links_begin_read), (ev_document_links_get_link),
13792         (ev_document_links_get_child), (ev_document_links_next),
13793         (ev_document_links_free_iter):
13794         * backend/ev-document-links.h:
13795         * backend/ev-link.c: (ev_link_type_get_type), (ev_link_get_title),
13796         (ev_link_set_title), (ev_link_get_uri), (ev_link_set_uri),
13797         (ev_link_get_link_type), (ev_link_set_link_type),
13798         (ev_link_get_page), (ev_link_set_page), (ev_link_get_property),
13799         (ev_link_set_property), (ev_window_dispose), (ev_link_init),
13800         (ev_link_class_init), (ev_link_new_title), (ev_link_new_page),
13801         (ev_link_new_external):
13802         * backend/ev-link.h:
13803         * pdf/xpdf/pdf-document.cc:
13804         * shell/Makefile.am:
13805         * shell/ev-application.c: (ev_application_open_link):
13806         * shell/ev-application.h:
13807         * shell/ev-history.c: (ev_history_add_link), (ev_history_add_page),
13808         (ev_history_get_link_nth):
13809         * shell/ev-history.h:
13810         * shell/ev-sidebar-bookmarks.c:
13811         * shell/ev-sidebar-bookmarks.h:
13812         * shell/ev-sidebar-links.c: (ev_sidebar_links_destroy),
13813         (ev_sidebar_links_class_init), (selection_changed_cb),
13814         (ev_sidebar_links_construct), (ev_sidebar_links_init),
13815         (links_page_num_func), (ev_sidebar_links_new), (stack_data_free),
13816         (do_one_iteration), (populate_links_idle),
13817         (ev_sidebar_links_clear_document), (ev_sidebar_links_set_document):
13818         * shell/ev-sidebar-links.h:
13819         * shell/ev-sidebar.c: (ev_sidebar_set_document):
13820         * shell/ev-view.c: (go_to_link), (ev_view_go_to_link),
13821         (go_to_index):
13822         * shell/ev-view.h:
13823         * shell/ev-window.c: (ev_window_open_link), (ev_window_init):
13824         * shell/ev-window.h:
13825
13826         Rename bookmark to link, and use "Index" for the sidebar panel.
13827
13828 2005-01-09  Marco Pesenti Gritti  <marco@gnome.org>
13829
13830         * shell/Makefile.am:
13831         * shell/ev-application.c: (ev_application_open_bookmark):
13832         * shell/ev-application.h:
13833         * shell/ev-history.c: (ev_history_init), (free_links_list),
13834         (ev_history_finalize), (ev_history_class_init),
13835         (ev_history_add_link), (ev_history_add_page),
13836         (ev_history_get_link_nth), (ev_history_get_n_links),
13837         (ev_history_get_current_index), (ev_history_set_current_index),
13838         (ev_history_new):
13839         * shell/ev-history.h:
13840         * shell/ev-sidebar-bookmarks.c: (selection_changed_cb):
13841         * shell/ev-view.c: (ev_view_finalize), (ev_view_set_document),
13842         (set_document_page), (go_to_bookmark), (ev_view_go_to_bookmark),
13843         (go_to_index), (ev_view_go_back), (ev_view_go_forward),
13844         (ev_view_set_page):
13845         * shell/ev-view.h:
13846         * shell/ev-window.c: (ev_window_open_bookmark),
13847         (ev_window_cmd_go_back), (ev_window_cmd_go_forward),
13848         (goto_page_cb), (register_custom_actions):
13849         * shell/ev-window.h:
13850
13851         Initial history implementation. Needs work.
13852
13853 2005-01-09  Martin Kretzschmar  <martink@gnome.org>
13854
13855         * pdf/xpdf/GDKSplashOutputDev.cc (redraw): fix pixbuf data offset.
13856
13857 2005-01-09  Marco Pesenti Gritti  <marco@gnome.org>
13858
13859         * cut-n-paste/recent-files/egg-recent-item.c:
13860         * cut-n-paste/recent-files/egg-recent-item.h:
13861         * cut-n-paste/recent-files/egg-recent-model.c:
13862         * cut-n-paste/recent-files/egg-recent-util.c:
13863         * cut-n-paste/recent-files/egg-recent-view-gtk.c:
13864         * cut-n-paste/recent-files/egg-recent-view.c:
13865
13866         Update
13867
13868 2005-01-08  Martin Kretzschmar  <martink@gnome.org>
13869
13870         * pdf/splash/Splash.cc (clear, drawPixel, drawSpan, xorSpan, getPixel)
13871         (fillGlyph, fillImageMask, drawImage):
13872         pdf/splash/SplashBitmap.cc (SplashBitmap, ~SplashBitmap, writePNMFile):
13873         pdf/splash/SplashTypes.h:
13874         pdf/xpdf/SplashOutputDev (startPage, getColor, imageSrc): implement RGB8
13875         packed mode for Splash.
13876
13877         * pdf/xpdf/GDKSplashOutputDev.cc (GDKSplashOutputDev, redraw): use
13878         RGB8 packed mode, eliminates the pixbuf data creation loop.
13879
13880         * shell/ev-print-job.c (ev_print_job_finalize)
13881         (ev_print_job_set_property, ev_print_job_get_property)
13882         (ev_print_job_set_gnome_print_job, ev_print_job_set_document)
13883         (ev_print_job_use_print_dialog_settings, idle_print_handler)
13884         (print_closure_finalize, ev_print_job_print): implement
13885         printing (for backends with EvPsExporter)
13886
13887         * shell/ev_print_job.h: update prototypes.
13888
13889         * shell/ev-window.c (ev_window_print): unref print job after
13890         printing.
13891
13892         * shell/ev-view.c (ev_view_set_document): don't connect to "found"
13893         unless the document implements the EvDocumentFind interface.
13894
13895 2005-01-08  Satoru SATOH <ss@gnome.gr.jp>
13896
13897         * configure.ac: Added ja to ALL_LINGUAS.
13898
13899 2005-01-07  Marco Pesenti Gritti  <marco@gnome.org>
13900
13901         * pdf/xpdf/pdf-document.cc:
13902
13903         add a FIXME. We should probably not allocate
13904         a bookmark object every time
13905
13906 2005-01-07  Marco Pesenti Gritti  <marco@gnome.org>
13907
13908         * shell/ev-application.c: (ev_application_open),
13909         (ev_application_open_bookmark):
13910         * shell/ev-application.h:
13911         
13912         Add a way to open bookmarks
13913
13914         * backend/ev-bookmark.c: (ev_bookmark_get_uri),
13915         (ev_bookmark_set_uri), (ev_bookmark_get_property),
13916         (ev_bookmark_set_property), (ev_bookmark_class_init),
13917         (ev_bookmark_new_title), (ev_bookmark_new_link),
13918         (ev_bookmark_new_external):
13919
13920         Support for external uris, better constructors.
13921
13922         * backend/ev-bookmark.h:
13923         * pdf/xpdf/pdf-document.cc:
13924         * shell/ev-sidebar-bookmarks.c: (selection_changed_cb):
13925
13926         Handle external uris
13927
13928 2005-01-07  Marco Pesenti Gritti  <marco@gnome.org>
13929
13930         * shell/ev-sidebar-bookmarks.c: (selection_changed_cb),
13931         (ev_sidebar_bookmarks_construct), (do_one_iteration):
13932
13933         Hook up bookmarks navigation
13934
13935 2005-01-07  Marco Pesenti Gritti  <marco@gnome.org>
13936
13937         * backend/Makefile.am:
13938         * backend/ev-bookmark.c: (ev_bookmark_type_get_type),
13939         (ev_bookmark_get_title), (ev_bookmark_set_title),
13940         (ev_bookmark_get_bookmark_type), (ev_bookmark_set_bookmark_type),
13941         (ev_bookmark_get_page), (ev_bookmark_set_page),
13942         (ev_bookmark_get_property), (ev_bookmark_set_property),
13943         (ev_window_dispose), (ev_bookmark_init), (ev_bookmark_class_init),
13944         (ev_bookmark_new):
13945         * backend/ev-bookmark.h:
13946         * backend/ev-document-bookmarks.c:
13947         (ev_document_bookmarks_get_bookmark):
13948         * backend/ev-document-bookmarks.h:
13949         * pdf/xpdf/pdf-document.cc:
13950         * shell/ev-sidebar-bookmarks.c: (do_one_iteration):
13951
13952         Add a bookmark object to the backend and use it instead of get_values
13953
13954 2005-01-07  Marco Pesenti Gritti  <marco@gnome.org>
13955
13956         * data/evince-ui.xml:
13957
13958         Cleanup and add select all.
13959
13960         * shell/ev-view.c: (ev_view_select_all),
13961         (ev_view_button_press_event):
13962         * shell/ev-view.h:
13963         * shell/ev-window.c: (ev_window_cmd_edit_select_all):
13964
13965         Add select all.
13966         Clear selection on click.
13967
13968 Fri Jan  7 01:28:58 2005  Jonathan Blandford  <jrb@redhat.com>
13969
13970         * shell/ev-sidebar-thumbnails.c
13971         (ev_sidebar_thumbnails_set_document): forgot to unref the
13972         loading_icon.
13973
13974 Fri Jan  7 01:22:48 2005  Jonathan Blandford  <jrb@redhat.com>
13975
13976         * shell/ev-sidebar-thumbnails.c: fill in the thumbnails starting
13977         at the visible page, not just linearly.  This makes it look fast.
13978
13979 Thu Jan  6 18:48:11 2005  Jonathan Blandford  <jrb@redhat.com>
13980
13981         * backend/ev-document-misc.c
13982         (ev_document_misc_get_thumbnail_frame): fill in the thumbnail with
13983         white.
13984         * backend/ev-document-thumbnails.h: New interface to get the size
13985         of a page.
13986
13987 2005-01-06  Jeremy Katz  <katzj@redhat.com>
13988
13989         * shell/Makefile.am (evince_SOURCES): Add ev-utils.[ch] so that
13990         make dist works
13991
13992 Wed Jan  5 15:38:28 2005  Jonathan Blandford  <jrb@redhat.com>
13993
13994         * pdf/xpdf/pdf-document.cc (bitmap_to_pixbuf): bypass
13995         GDKSplashOutputDev and just use a normal SplashOutputDev.  Speeds
13996         things up a bit.
13997
13998         * shell/ev-sidebar-thumbnail.c: start of some profiling code.
13999
14000 2005-01-05  Martin Kretzschmar  <martink@gnome.org>
14001
14002         * pdf/xpdf/GlobalParams.cc (displayFontTabFc): match only outline
14003         fonts. Should fix font problems on systems that have the base
14004         fonts in bitmap format. Reported by James Henstridge
14005         <james@jamesh.id.au>.
14006
14007 2005-01-05  Marco Pesenti Gritti  <marco@gnome.org>
14008
14009         * pdf/xpdf/Gfx.cc:
14010         * pdf/xpdf/GfxState.cc:
14011
14012         Fix for CAN-2004-1125
14013
14014 2005-01-05  Marco Pesenti Gritti  <marco@gnome.org>
14015
14016         * shell/ev-view.c: (ev_view_copy):
14017         * shell/ev-view.h:
14018         * shell/ev-window.c: (ev_window_cmd_edit_copy):
14019
14020         Implement Edit->Copy
14021
14022 2005-01-05  Marco Pesenti Gritti  <marco@gnome.org>
14023
14024         * backend/ev-document.c: (ev_document_get_text):
14025         * backend/ev-document.h:
14026         * pdf/xpdf/pdf-document.cc:
14027         * shell/ev-view.c: (ev_view_realize), (expose_bin_window),
14028         (ev_view_primary_get_cb), (ev_view_primary_clear_cb),
14029         (ev_view_update_primary_selection), (ev_view_button_press_event),
14030         (ev_view_motion_notify_event), (ev_view_button_release_event):
14031
14032         Beginnings of clipboard support. Incomplete but primary sort
14033         of work.
14034
14035 2005-01-05  Marco Pesenti Gritti  <marco@gnome.org>
14036
14037         * shell/ev-view.c: (ev_gdk_color_to_rgb), (draw_rubberband),
14038         (expose_bin_window):
14039
14040         Nicer rubberband drawing, from GtkIconView.
14041
14042 2005-01-05  Marco Pesenti Gritti  <marco@gnome.org>
14043
14044         * backend/ev-document.c: (ev_document_save):
14045         * backend/ev-document.h:
14046         * data/evince-ui.xml:
14047         * pdf/xpdf/pdf-document.cc:
14048         * shell/ev-window.c: (save_error_dialog), (ev_window_cmd_save_as):
14049
14050         Implement "Save a copy..." menu item
14051
14052 2005-01-05  Marco Pesenti Gritti  <marco@gnome.org>
14053
14054         * shell/ev-view.c: (ev_view_zoom):
14055
14056         Queue a resize when zoom changes
14057
14058 Wed Jan  5 02:33:06 2005  Jonathan Blandford  <jrb@redhat.com>
14059
14060         * backend/ev-document-misc.[ch]: New misc file to do simple drop
14061         shadows.
14062
14063         * pdf/xpdf/pdf-document.cc: use the drop shadows in both types of
14064         thumbnails..
14065
14066 Tue Jan  4 22:32:32 2005  Jonathan Blandford  <jrb@redhat.com>
14067
14068         * pdf/xpdf/pdf-document.cc
14069         (pdf_document_thumbnails_get_page_pixbuf): poor man's dropshadow.
14070
14071 Tue Jan  4 21:25:05 2005  Jonathan Blandford  <jrb@redhat.com>
14072
14073         * pdf/xpdf/pdf-document.cc: Do real thumbnailing of PDF files.
14074         It's slow, but I'll speed it up next!
14075
14076 2005-01-04  Jeff Muizelaar  <jrmuizel@nit.ca>
14077
14078         * shell/main.c (load_files):
14079
14080         use gnome_vfs_make_uri_from_shell_arg so that relative paths work
14081         from the command line and because it seems more appropriate.
14082
14083 2005-01-04  Marco Pesenti Gritti  <marco@gnome.org>
14084
14085         * data/evince-ui.xml:
14086         * shell/ev-window.c: (update_action_sensitivity),
14087         (ev_window_cmd_go_page_up), (ev_window_cmd_go_page_down):
14088
14089         s/next page/page down
14090         s/previous page/page up
14091
14092 2005-01-04  Marco Pesenti Gritti  <marco@gnome.org>
14093
14094         * data/evince-ui.xml:
14095
14096         Change the layout to match clarkbw design.
14097
14098         * shell/Makefile.am:
14099         * shell/ev-navigation-action.c: (build_menu), (menu_activated_cb),
14100         (set_tooltip_cb), (connect_proxy), (ev_navigation_action_init),
14101         (ev_navigation_action_finalize),
14102         (ev_navigation_action_set_property),
14103         (ev_navigation_action_get_property),
14104         (ev_navigation_action_class_init):
14105         * shell/ev-navigation-action.h:
14106
14107         Implement clarkbw toolbar navigation controls (incomplete)
14108
14109         * shell/ev-page-action.c: (update_label), (update_spin),
14110         (value_changed_cb), (create_tool_item), (connect_proxy),
14111         (ev_page_action_init), (ev_page_action_finalize),
14112         (ev_page_action_set_property), (ev_page_action_get_property),
14113         (ev_page_action_set_current_page),
14114         (ev_page_action_set_total_pages), (ev_page_action_class_init):
14115         * shell/ev-page-action.h:
14116
14117         Implement a page switcher in the toolbar
14118
14119         * shell/ev-view.c: (ev_view_scroll_view):
14120         * shell/ev-window.c: (update_total_pages), (ev_window_open),
14121         (update_current_page), (view_page_changed_cb), (goto_page_cb),
14122         (register_custom_actions), (ev_window_init):
14123
14124         Change page on PageUp/Down.
14125
14126 Tue Jan  4 03:22:56 2005  Jonathan Blandford  <jrb@redhat.com>
14127
14128         * pdf/xpdf/pdf-document.cc
14129         (pdf_document_thumbnails_get_thumbnail): initial stab at
14130         implementing thumbnail support for pdfs.  It only does documents
14131         with precached pdfs now.
14132
14133 Mon Jan  3 17:22:25 2005  Jonathan Blandford  <jrb@redhat.com>
14134
14135         * shell/ev-sidebar-thumbnails.c (do_one_iteration): move the
14136         thumbnail code into a time-based idle as well.  Also, turn off the
14137         shadow temporarily as it's really slow.
14138
14139 2005-01-03  Marco Pesenti Gritti  <marco@gnome.org>
14140
14141         * backend/ev-document.c: (ev_document_class_init):
14142         * pdf/xpdf/pdf-document.cc:
14143         * shell/ev-window.c: (ev_window_open):
14144
14145         Fix document title bugs and fallback to
14146         filename when not available.
14147
14148 2005-01-03  Marco Pesenti Gritti  <marco@gnome.org>
14149
14150         * backend/ev-document.c: (ev_document_get_type),
14151         (ev_document_class_init), (ev_document_load),
14152         (ev_document_get_title):
14153         * backend/ev-document.h:
14154         * pdf/xpdf/pdf-document.cc:
14155         * ps/ps-document.c: (ps_document_set_property),
14156         (ps_document_get_property), (ps_document_class_init),
14157         (document_load):
14158         * ps/ps-document.h:
14159         * ps/ps.h:
14160         * shell/ev-window.c: (update_window_title), (ev_window_open),
14161         (ev_window_init):
14162
14163         Initial support for document title. Not working yet.
14164
14165 2005-01-02  Marco Pesenti Gritti  <marco@gnome.org>
14166
14167         * shell/ev-view.c: (ev_view_realize), (ev_view_button_press_event):
14168
14169         Grab focus on the view when clicking it
14170
14171 2005-01-02  Marco Pesenti Gritti  <marco@gnome.org>
14172
14173         * shell/ev-marshal.list:
14174         * shell/ev-view.c: (ev_view_realize), (add_scroll_binding),
14175         (ev_view_scroll_view), (ev_view_class_init), (ev_view_init):
14176
14177         Add key bindings to the view. Now if the focus would work
14178         right...
14179
14180 2005-01-02  Marco Pesenti Gritti  <marco@gnome.org>
14181
14182         * Makefile.am:
14183         * backend/Makefile.am:
14184         * data/Makefile.am:
14185         * dvi/Makefile.am:
14186         * dvi/dvilib/Makefile.am:
14187         * pdf/xpdf/Makefile.am:
14188         * po/POTFILES.in:
14189         * ps/Makefile.am:
14190
14191         Fix distcheck
14192
14193 2005-01-01  Marco Pesenti Gritti  <marco@gnome.org>
14194
14195         * shell/ev-view.c: (ev_view_realize):
14196
14197         Fix mouse wheel scrolling
14198
14199 2005-01-01  Marco Pesenti Gritti  <marco@gnome.org>
14200
14201         * ps/Makefile.am:
14202         * ps/gstypes.h:
14203         * ps/gtkgs.c:
14204         * ps/gtkgs.h:
14205         * ps/ps-document.c: (catchPipe), (ps_document_init),
14206         (ps_document_class_init), (ps_document_cleanup),
14207         (ps_document_finalize), (send_ps), (ps_document_get_orientation),
14208         (set_up_page), (close_pipe), (is_interpreter_ready),
14209         (interpreter_failed), (output), (input), (start_interpreter),
14210         (stop_interpreter), (file_length), (file_readable),
14211         (check_filecompressed), (check_pdf), (compute_xdpi),
14212         (compute_ydpi), (compute_size), (ps_document_enable_interpreter),
14213         (ps_document_get_type), (ps_document_emit_error_msg),
14214         (document_load), (ps_document_next_page),
14215         (ps_document_get_current_page), (ps_document_get_page_count),
14216         (ps_document_goto_page), (ps_document_set_page_size),
14217         (ps_document_zoom_to_fit), (ps_document_set_zoom),
14218         (ps_document_load), (ps_document_get_n_pages),
14219         (ps_document_set_page), (ps_document_get_page),
14220         (ps_document_widget_event), (ps_document_set_target),
14221         (ps_document_set_scale), (ps_document_set_page_offset),
14222         (ps_document_get_page_size), (ps_document_render),
14223         (ps_document_document_iface_init):
14224         * ps/ps-document.h:
14225         * ps/ps.c:
14226         * shell/ev-window.c: (ev_window_open):
14227
14228         Rename GtkGS to PSDocument
14229
14230 2005-01-01  Marco Pesenti Gritti  <marco@gnome.org>
14231
14232         * ps/gtkgs.c: (gtk_gs_class_init):
14233         * ps/gtkgs.h:
14234
14235         Some more leftover...
14236
14237 2005-01-01  Marco Pesenti Gritti  <marco@gnome.org>
14238
14239         * ps/gtkgs.c: (gtk_gs_class_init), (gtk_gs_get_orientation),
14240         (output), (stop_interpreter), (gtk_gs_emit_error_msg),
14241         (gtk_gs_zoom_to_fit), (gtk_gs_set_zoom):
14242         * ps/gtkgs.h:
14243
14244         Remove unused code and make a lot of stuff private
14245
14246 2005-01-01  Marco Pesenti Gritti  <marco@gnome.org>
14247
14248         * ps/gsdefaults.c: (gtk_gs_defaults_gconf_client),
14249         (gtk_gs_defaults_changed):
14250         * ps/gsdefaults.h:
14251         * ps/gtkgs.c:
14252         * ps/gtkgs.h:
14253         * ps/ps.h:
14254
14255         Cleanup headers dependencies
14256
14257 2005-01-01  Marco Pesenti Gritti  <marco@gnome.org>
14258
14259         * ps/Makefile.am:
14260         * ps/ggvutils.c:
14261         * ps/ggvutils.h:
14262         * ps/gsdefaults.c: (gtk_gs_defaults_get_paper_sizes):
14263         * ps/gsdefaults.h:
14264         * ps/gtkgs.c: (file_length), (file_readable),
14265         (check_filecompressed), (check_pdf), (gtk_gs_load),
14266         (gtk_gs_get_postscript):
14267
14268         Get rid of ggvutils
14269
14270 2004-12-31  Marco Pesenti Gritti  <marco@gnome.org>
14271
14272         * ps/ggvutils.c:
14273         * ps/ggvutils.h:
14274         * ps/gsio.h:
14275         * ps/gtkgs.c: (gtk_gs_set_zoom):
14276
14277         Cleanups
14278
14279 2004-12-31  Marco Pesenti Gritti  <marco@gnome.org>
14280
14281         * ps/gtkgs.c: (gtk_gs_set_zoom), (gtk_gs_set_zoom_mode):
14282
14283         Ensure the page is rerendered when changing zoom
14284
14285 2004-12-31  Marco Pesenti Gritti  <marco@gnome.org>
14286
14287         * backend/ev-document.c: (ev_document_base_init),
14288         (ev_document_changed):
14289         * backend/ev-document.h:
14290
14291         Add a changed event that is emitted when the page content
14292         changes. This is necessary to deal with the fact that
14293         in ps backend rendering happen asycrounously.
14294         This makes the ps backend mostly work.
14295
14296         * pdf/xpdf/pdf-document.cc:
14297
14298         Emit changed event
14299
14300         * ps/gtkgs.c: (set_up_page), (gtk_gs_widget_event),
14301         (ps_document_set_target):
14302
14303         Emit changed event
14304
14305         * shell/ev-view.c: (document_changed_callback),
14306         (ev_view_set_document), (ev_view_set_page):
14307
14308         Redraw on the changed signal
14309
14310 2004-12-25  Raphael Higino  <raphaelh@cvs.gnome.org>
14311
14312         * configure.ac: Added pt_BR to ALL_LINGUAS.
14313
14314 Fri Dec 24 00:48:44 2004  Jonathan Blandford  <jrb@redhat.com>
14315
14316         * backend/ev-document-bookmarks.c:
14317         (ev_document_bookmarks_get_child): *
14318         backend/ev-document-bookmarks.h: * pdf/xpdf/Makefile.am: *
14319         pdf/xpdf/pdf-document.cc: * pdf/xpdf/pdf-document.h: *
14320         shell/Makefile.am: * shell/ev-sidebar-bookmarks.c:
14321         (ev_sidebar_bookmarks_destroy),
14322         (ev_sidebar_bookmarks_class_init),
14323         (ev_sidebar_bookmarks_construct), (stack_data_free),
14324         (do_one_iteration), (populate_bookmarks_idle),
14325         (ev_sidebar_bookmarks_clear_document),
14326         (ev_sidebar_bookmarks_set_document): *
14327         shell/ev-sidebar-bookmarks.h: * shell/ev-sidebar.c:
14328         (ev_sidebar_add_page),
14329         (ev_sidebar_set_document): * shell/ev-window.c: (ev_window_open):
14330         Initial stab at a bookmarks sidebar.  It doesn't navigate yet, but
14331         it displays both the topics and the page numbers.
14332
14333 2004-12-23  Kristian Høgsberg  <krh@redhat.com>
14334
14335         * shell/ev-window.c (ev_window_view_sidebar_cb): Hook up sidebar
14336         toggle.
14337         * shell/ev-window.c (toggle_entries): Set sidebar default value to
14338         visible.
14339
14340 2004-12-23  Adam Weinberger  <adamw@gnome.org>
14341
14342         * configure.ac: Added en_CA to ALL_LINGUAS.
14343
14344 2004-12-23  Martin Kretzschmar  <martink@gnome.org>
14345
14346         * ChangeLog: replace bottom of this ChangeLog (merged history of
14347         ggv and gpdf; where all paths were wrong and most of the files are
14348         not even in this tree) with ChangeLog (from arch) of the shell
14349         code.
14350
14351 2004-12-23  Havoc Pennington  <hp@redhat.com>
14352
14353         * shell/ev-window.c: hook up potentially-questionable "find
14354         results status text" feature - something involving the sidebar or
14355         scrollbar or a continuous all-pages-on-giant-roll-of-paper-view
14356         might be better in the end.
14357
14358         * shell/ev-view.c (ev_view_get_find_status_message): new function, 
14359         with corresponding signal when it should be updated
14360
14361         * shell/eggfindbar.c (egg_find_bar_set_status_text): new function
14362
14363 2004-12-22  Havoc Pennington  <hp@redhat.com>
14364
14365         * pdf/xpdf/pdf-document.cc (pdf_document_find_begin): make search
14366         find stuff on other pages, sort of (only returns one result on
14367         invisible pages, to show they have results; updates full results
14368         for a page when you view it). Currently repaints the current page
14369         every time a new result is found on any page, which isn't so nice.
14370
14371 2004-12-22  Havoc Pennington  <hp@redhat.com>
14372
14373         * shell/ev-window.c (ev_window_cmd_edit_find): display an error if
14374         the document doesn't support find (better ideas?)
14375         (find_bar_search_changed_cb): handle missing document or document
14376         that doesn't support find
14377
14378         * pdf/xpdf/pdf-document.cc: port to implement the new
14379         EvDocumentFindIface
14380
14381         * backend/ev-document-find.c: create a new interface for searching
14382
14383         * backend/ev-document.h, backend/ev-document.c: delete the find stuff
14384
14385 2004-12-23  Martin Kretzschmar  <martink@gnome.org>
14386
14387         * pdf/xpdf/Makefile.am (libpdfdocument_la_LIBADD): add
14388         libevbackend.la.
14389
14390         * shell/ev-window.c (ev_window_print): add GnomePrintJob to
14391         EvPrintJob constructor arguments.
14392
14393         * backend/ev-ps-exporter.c, backend/ev-ps-exporter.h: interface
14394         for documents that can export PostScript (page by page).
14395
14396         * backend/Makefile.am (libevbackend_la_SOURCES): add them.
14397         
14398         * pdf/xpdf/pdf-document.cc (pdf_document_ps_export_begin)
14399         (pdf_document_ps_export_do_page, pdf_document_ps_export_end)
14400         (pdf_document_ps_exporter_iface_init:
14401         Implement EvPSExporter.
14402
14403         * pdf/xpdf/Makefile.am (libxpdf_la_SOURCES): build PSOutputDev.
14404
14405 2004-12-22  Anders Carlsson  <andersca@gnome.org>
14406
14407         * backend/Makefile.am:
14408         * backend/ev-document-thumbnails.c:
14409         (ev_document_thumbnails_get_type),
14410         (ev_document_thumbnails_get_thumbnail):
14411         * backend/ev-document-thumbnails.h:
14412         * pixbuf/pixbuf-document.c: (G_DEFINE_TYPE_WITH_CODE),
14413         (pixbuf_document_thumbnails_get_thumbnail),
14414         (pixbuf_document_document_thumbnails_iface_init):
14415         * shell/Makefile.am:
14416         * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_destroy),
14417         (ev_sidebar_thumbnails_class_init), (ev_sidebar_thumbnails_init),
14418         (populate_thumbnails), (ev_sidebar_thumbnails_set_document):
14419         * shell/ev-sidebar-thumbnails.h:
14420         * shell/ev-sidebar.c: (ev_sidebar_init), (ev_sidebar_add_page),
14421         (ev_sidebar_set_document):
14422         * shell/ev-utils.c: (gaussian), (create_blur_filter),
14423         (create_shadow), (ev_pixbuf_add_shadow):
14424         * shell/ev-utils.h:
14425         Add thumbnail support.
14426         
14427 2004-12-22  Martin Kretzschmar  <martink@gnome.org>
14428
14429         * shell/ev-window.c (ev_window_cmd_file_print, ev_window_print)
14430         (using_postscript_printer): Set up a print dialog for "PostScript
14431         injection" method.
14432
14433         * shell/ev-print-job.h, shell/ev-print-job.c: stub classes for
14434         EvPrintJob.
14435
14436         * shell/Makefile.am (evince_SOURCES): add ev-print-job.[ch]
14437
14438 2004-12-22  Marco Pesenti Gritti  <marco@gnome.org>
14439
14440         * ps/gtkgs.c: (gtk_gs_init), (set_up_page),
14441         (ps_document_set_target), (ps_document_get_page_size),
14442         (ps_document_render):
14443         * ps/gtkgs.h:
14444
14445         Fix a few bugs
14446
14447 2004-12-22  Christian Rose  <menthos@menthos.com>
14448
14449         * configure.ac: Added "sv" to ALL_LINGUAS.
14450
14451 Wed Dec 22 14:47:38 2004  Jonathan Blandford  <jrb@redhat.com>
14452
14453         * backend/ev-document-bookmarks.[ch]: new interface to indicate
14454         document supports bookmarks.
14455
14456 2004-12-22  Marco Pesenti Gritti  <marco@gnome.org>
14457
14458         * ps/ggvutils.c: (ggv_file_readable):
14459         * ps/ggvutils.h:
14460         * ps/gtkgs.c: (check_filecompressed), (check_pdf),
14461         (gtk_gs_get_postscript):
14462
14463         Remove unused utils
14464
14465 2004-12-22  Marco Pesenti Gritti  <marco@gnome.org>
14466
14467         * ps/gtkgs.c: (gtk_gs_init), (gtk_gs_class_init), (gtk_gs_cleanup),
14468         (gtk_gs_finalize), (gtk_gs_set_center), (set_up_page), (output),
14469         (start_interpreter), (compute_size), (gtk_gs_enable_interpreter),
14470         (gtk_gs_get_type), (gtk_gs_new), (gtk_gs_reload),
14471         (gtk_gs_emit_error_msg), (gtk_gs_disable_interpreter),
14472         (gtk_gs_load), (gtk_gs_goto_page), (gtk_gs_set_page_size),
14473         (gtk_gs_set_override_orientation), (gtk_gs_set_override_size),
14474         (gtk_gs_set_zoom), (gtk_gs_set_default_orientation),
14475         (gtk_gs_set_antialiasing), (ps_document_load),
14476         (ps_document_render):
14477         * ps/gtkgs.h:
14478
14479         Another check point for the ps backend. Now I can get it to show
14480         pages!
14481
14482 Wed Dec 22 13:41:01 2004  Jonathan Blandford  <jrb@redhat.com>
14483
14484         * shell/ev-sidebar.c (ev_sidebar_set_document): initial sidebar
14485         document setting code.
14486
14487 2004-12-22  Anders Carlsson  <andersca@gnome.org>
14488
14489         * shell/eggfindbar.c: (entry_activate_callback):
14490         Animate the next button when activate is pressed.
14491         
14492 2004-12-22  Anders Carlsson  <andersca@gnome.org>
14493
14494         * shell/ev-window.c: (ev_window_cmd_edit_find),
14495         (update_fullscreen_popup), (ev_window_fullscreen),
14496         (ev_window_unfullscreen), (ev_window_state_event_cb),
14497         (ev_window_focus_out_cb), (find_bar_close_cb), (ev_window_init):
14498         Fix bugs in fullscreen code.
14499         
14500 2004-12-22  Anders Carlsson  <andersca@gnome.org>
14501
14502         * Makefile.am:
14503         * configure.ac:
14504         * pixbuf/Makefile.am:
14505         * pixbuf/pixbuf-document.c: (G_DEFINE_TYPE_WITH_CODE),
14506         (pixbuf_document_load), (pixbuf_document_get_n_pages),
14507         (pixbuf_document_set_page), (pixbuf_document_get_page),
14508         (pixbuf_document_set_target), (pixbuf_document_set_scale),
14509         (pixbuf_document_set_page_offset), (pixbuf_document_get_page_size),
14510         (pixbuf_document_render), (pixbuf_document_begin_find),
14511         (pixbuf_document_end_find), (pixbuf_document_finalize),
14512         (pixbuf_document_class_init),
14513         (pixbuf_document_document_iface_init), (pixbuf_document_init):
14514         * pixbuf/pixbuf-document.h:
14515         * shell/Makefile.am:
14516         * shell/ev-application.c: (ev_application_open):
14517         * shell/ev-window.c: (mime_type_supported_by_gdk_pixbuf),
14518         (ev_window_open):
14519         Add pixbuf backend.
14520         
14521 Tue Dec 21 21:45:43 2004  Soeren Sandmann  <sandmann@redhat.com>
14522
14523         * Makefile.am: 
14524         * dvi/dvilib/Makefile.am:
14525         * dvi/Makefile.am:
14526         * configure.ac: Auto*ify dvi and dvi/dvilib
14527
14528         * dvi/Makefile: Remove from CVS
14529         
14530         * dvi/dvilib/dl-pkfont.cc (unpack_bitmap): Fix uchar/uint
14531         confusion.
14532
14533         * dvi/dvilib/dl-fontdefinition.{cc,hh}: New DviFontMap class
14534         
14535         * dvi/dvilib/dl-vffont.{cc,hh}: Many bugfixes to VF code.
14536         
14537 2004-12-22  Marco Pesenti Gritti  <marco@gnome.org>
14538
14539         * ps/Makefile.am:
14540         * ps/gtkgs.c: (gtk_gs_class_init), (gtk_gs_finalize),
14541         (gtk_gs_value_adjustment_changed), (compute_size),
14542         (gtk_gs_get_type), (gtk_gs_new), (gtk_gs_new_from_file),
14543         (gtk_gs_center_page), (gtk_gs_load), (gtk_gs_set_page_size),
14544         (gtk_gs_set_override_orientation), (gtk_gs_set_override_size),
14545         (gtk_gs_set_zoom), (gtk_gs_set_default_orientation),
14546         (gtk_gs_start_scroll), (gtk_gs_get_postscript),
14547         (gtk_gs_set_adjustments), (gtk_gs_set_available_size),
14548         (ps_document_load), (ps_document_get_n_pages),
14549         (ps_document_set_page), (ps_document_get_page),
14550         (ps_document_set_target), (ps_document_set_scale),
14551         (ps_document_set_page_offset), (ps_document_get_page_size),
14552         (ps_document_render), (ps_document_begin_find),
14553         (ps_document_end_find), (ps_document_document_iface_init):
14554         * ps/gtkgs.h:
14555         * shell/Makefile.am:
14556         * shell/ev-window.c: (ev_window_open):
14557
14558         Some work to integrate gtkgs with EvDocument
14559
14560 2004-12-22  Anders Carlsson  <andersca@gnome.org>
14561
14562         * shell/ev-window.c: (update_fullscreen_popup),
14563         (screen_size_changed_cb), (destroy_exit_fullscreen_popup),
14564         (exit_fullscreen_button_clicked_cb),
14565         (fullscreen_popup_size_request_cb), (ev_window_fullscreen),
14566         (ev_window_unfullscreen), (ev_window_cmd_view_fullscreen),
14567         (ev_window_state_event_cb), (ev_window_init):
14568         Add fullscreen support from Epiphany.
14569         
14570 2004-12-22  Mark McLoughlin  <mark@skynet.ie>
14571
14572         * data/ev-stock-zoom-fit-width.png: fit-width
14573         stock icon from gpdf.
14574         
14575         * shell/ev-stock-icons.[ch]: copied from gpdf.
14576         
14577         * shell/main.c: (main): init stock icons.
14578         
14579         * shell/ev-window.c: use the fit-width icon.
14580         
14581         * data/evince-ui.xml: add zooming toolbar items.
14582
14583 2004-12-22  Mark McLoughlin  <mark@skynet.ie>
14584
14585         * shell/ev-view.c: 
14586         (ev_view_best_fit), (ev_view_fit_width): because
14587         get_page_size() returns the scaled page size, we
14588         need to calculate the scale factor relative to
14589         the previous scale factor. Should really just
14590         add get_real_page_size().
14591
14592 2004-12-22  Mark McLoughlin  <mark@skynet.ie>
14593
14594         * shell/ev-view.[ch]:
14595         (ev_view_zoom), (ev_view_zoom_in), (ev_view_zoom_out),
14596         (ev_view_normal_size), (ev_view_best_fit), (ev_view_fit_width):
14597         add zooming.
14598         
14599         * shell/ev-window.c: (ev_window_cmd_view_zoom_in),
14600         (ev_window_cmd_view_zoom_out), (ev_window_cmd_view_normal_size),
14601         (ev_window_cmd_view_best_fit), (ev_window_cmd_view_page_width):
14602         hook it up.
14603         
14604         * pdf/xpdf/pdf-document.cc:
14605         (pdf_document_begin_find),
14606         (pdf_document_end_find): make static.
14607
14608 2004-12-22  Martin Kretzschmar  <martink@gnome.org>
14609
14610         * pdf/xpdf/GlobalParams.h (setupBaseFontsFc): add prototype.
14611
14612         * pdf/xpdf/GlobalParams.cc (displayFontTabFc): maps base font
14613         names to fontconfig patterns.
14614         (setupBaseFontsFc): setupBaseFonts reimplemented using fontconfig.
14615
14616         * pdf/xpdf/pdf-document.cc (pdf_document_load): use
14617         setupBaseFontsFc.
14618
14619 2004-12-22  Marco Pesenti Gritti  <marco@gnome.org>
14620
14621         * Makefile.am:
14622         * configure.ac:
14623         * ps/Makefile.am:
14624         * ps/ggvutils.c:
14625         * ps/ggvutils.h:
14626         * ps/gsdefaults.c:
14627         * ps/gsdefaults.h:
14628         * ps/gsio.c:
14629         * ps/gsio.h:
14630         * ps/gtkgs.c:
14631         * ps/gtkgs.h:
14632         * ps/ps.c:
14633         * ps/ps.h:
14634
14635         Import ggv backend. Not hooked up yet.
14636
14637 2004-12-22  Mark McLoughlin  <mark@skynet.ie>
14638
14639         * shell/main.c: (load_files), (main): load files
14640         from the command line.
14641
14642 2004-12-22  Mark McLoughlin  <mark@skynet.ie>
14643
14644         * configure.ac: don't require bonobo.
14645         
14646         * cut-n-paste/recent-files/*: kill bonobo recent
14647         view.
14648
14649         * shell/ev-window.c:
14650         (ev_window_is_empty): upd.
14651         (unable_to_load), (ev_window_open): load backend
14652         based on the mime type.
14653
14654 2004-12-22  Martin Kretzschmar  <martink@gnome.org>
14655
14656         * backend/.cvsignore: ignore generated marshalers source.
14657
14658         * shell/main.c (main): this is not epiphany.
14659
14660 2004-12-22  Havoc Pennington  <hp@redhat.com>
14661
14662         * shell/ev-view.c (ev_view_set_document): connect to "found" signal
14663         (expose_bin_window): draw find highlights
14664
14665         * shell/ev-window.c (find_bar_search_changed_cb): implement 
14666         
14667         * pdf/xpdf/pdf-document.cc (pdf_document_begin_find) 
14668         (pdf_document_end_find): implement this interface
14669
14670         * backend/ev-document.c (ev_document_found): add this to emit
14671         signal
14672
14673 Tue Dec 21 23:57:37 2004  Owen Taylor  <otaylor@redhat.com>
14674
14675         * data/evince-ui.xml: Add a few more toolbar items.
14676
14677         * shell/ev-window.c: Hook up page navigation toolbar 
14678         items.
14679
14680         * shell/ev-view.[ch]: add ev_view_set/get_page and 
14681         a page-changed signal.
14682
14683         * backend/ev-document.{h,cc} pdf/xpdf/pdf-document.cc::
14684         Add ev_document_get_page().
14685
14686         * shell/ev-window.c: Sensitize/desensitize navigation
14687         actions.
14688
14689 2004-12-21  Havoc Pennington  <hp@redhat.com>
14690
14691         * backend/ev-backend-marshal.c,
14692         backend/ev-backend-marshalers.list, backend/Makefile.am: add
14693         marshaler-generator thingy. I'm sure there's a better way to do
14694         this in the modern world.
14695
14696         * backend/ev-document.h (struct _EvDocumentIface): add begin_find,
14697         end_find methods and "found" signal.
14698
14699         * configure.ac: find glib-genmarshal
14700
14701 Tue Dec 21 23:20:35 2004  Jonathan Blandford  <jrb@redhat.com>
14702
14703         * shell/ev-sidebar.c: Construct an actual sidebar.
14704         * shell/ev-sidebar-bookmarks.[ch]:
14705         * shell/ev-sidebar-thumbnails.[ch]: Stub out sidebars.
14706
14707 Tue Dec 21 23:05:51 2004  Owen Taylor  <otaylor@redhat.com>
14708
14709         * backend/ev-document.{h,cc} pdf/xpdf/pdf-document.cc:
14710         Redo size handling.
14711         
14712         * shell/ev-view.c: Track the size from the document.
14713
14714 Tue Dec 21 22:17:04 2004  Owen Taylor  <otaylor@redhat.com>
14715
14716         * pdf/xpdf/pdf-document.cc (pdf_document_load): PDFDoc
14717         constructor assumes ownership of the string passed in.
14718         
14719         * shell/ev-window.c (ev_window_open): Destroy the error
14720         dialog once we've displayed it.
14721
14722 Tue Dec 21 21:58:56 2004  Owen Taylor  <otaylor@redhat.com>
14723
14724         * pdf/xpdf/pdf-document.cc shell/ev-view.c: Hook things up 
14725         a bit, it works! (sort of)
14726
14727         * pdf/xpdf/Makefile.am pdf/xpdf/pdf-document.cc:
14728         Move to .cc since we need to use C++ in the implementation.
14729
14730         * shell/dummy.cc: Add a CC file to force evince
14731         to be linked as a C++ program.
14732
14733 Tue Dec 21 21:07:55 2004  Owen Taylor  <otaylor@redhat.com>
14734
14735         * shell/ev-view.[ch]: Start of content-area widget.
14736
14737         * shell/ev-window.c: Create a EvView, update it
14738         as we change documents.
14739
14740         * shell/Makefile.am shell/ev-marshal.list: Add
14741         generated marshalers.
14742
14743 Tue Dec 21 20:28:11 2004  Jonathan Blandford  <jrb@redhat.com>
14744
14745         * Makefile.am (SUBDIRS): move shell.
14746
14747 Tue Dec 21 19:28:55 2004  Owen Taylor  <otaylor@redhat.com>
14748
14749         * pdf/{goo,fofi,splash,xpdf}/Makefile.am: Switch from
14750         .a to libtool convenience libraries.
14751
14752         * shell/ev-window.c (ev_window_open): Hard code loading
14753         a PDF document.
14754         
14755         * backend/ev-document.h: Add a boolean return to load(),
14756         fix GError * to GError **.
14757
14758         * pdf/xpdf/pdf-document.[ch] Makefile.am: Add a stub
14759         object for a PDF backend EvDocument.
14760
14761 Tue Dec 21 18:55:06 2004  Søren Sandmann  <sandmann@redhat.com>
14762
14763         * dvi/*: New directory with the beginning of a .dvi backend.
14764
14765 2004-12-21  Havoc Pennington  <hp@redhat.com>
14766
14767         * shell/eggfindbar.c (egg_find_bar_init): change buttons to
14768         previous/next instead of back/forward
14769
14770 Tue Dec 21 18:26:24 2004  Owen Taylor  <otaylor@redhat.com>
14771
14772         * backend/ev-document.[ch]: Fix a couple of problems so
14773         it compile.
14774
14775 Tue Dec 21 18:20:40 2004  Owen Taylor  <otaylor@redhat.com>
14776
14777         * viewer/* backend/* configure.ac Makefile.am: Move viewer directory 
14778         to backend/ directory, rename EvViewer to EvDocument.
14779
14780 2004-12-21  Havoc Pennington  <hp@redhat.com>
14781
14782         * shell/ev-window.c: hook up the find bar widget; now we just need
14783         a document to find things in
14784
14785         * shell/eggfindbar.c: a find bar widget
14786
14787 Tue Dec 21 17:20:16 2004  Jonathan Blandford  <jrb@redhat.com>
14788
14789         * shell/ev-sidebar.[ch]: initial sidebar boilerplate.
14790
14791 Tue Dec 21 16:30:58 2004  Owen Taylor  <otaylor@redhat.com>
14792
14793         * pdf/**: Import of xpdf code from gpdf. 
14794
14795         * pdf/xpdf/xpdfconfig.h: Move the non-config.h config.h to xpdfconfig.h
14796
14797         * pdf/splash/SplashFTFont.{cc,h} pdf/splash/SplashFTFont.h
14798         pdf/splash/SplashFTFontEngine.h pdf/splash/SplashFTFontFile.h: 
14799         Fix FreeType includes.
14800
14801         * pdf/xpdf/{Error.h GnomeVFSStream.cc ImageOutputDev.cc PDFDoc.cc\
14802         pdffonts.cc pdfimages.cc pdfinfo.cc pdftoppm.cc pdftops.cc
14803         pdftotext.cc PSOutputDev.cc PSOutputDev.h SplashOutputDev.h
14804         Stream.cc TextOutputDev.cc XPDFApp.cc xpdf.cc XPDFViewer.cc
14805         pdf/xpdf/Error.h PSOutputDev.h SplashOutputDev.h}:
14806         Include xpdfconfig.h
14807         
14808 Tue Dec 21 16:08:17 2004  Jonathan Blandford  <jrb@redhat.com>
14809
14810         * shell/ev-window.c (ev_window_dispose): dispose can be called
14811         multiple times.
14812
14813 2004-12-21  Havoc Pennington  <hp@redhat.com>
14814
14815         * shell/ev-window.c (ev_window_init): set title to Document Viewer
14816         rather than Evince
14817
14818         * data/evince-ui.xml, shell/ev-window.c: add a bunch of stub menu
14819         items; really they should be synced with the strings, etc. from
14820         current gpdf, but just getting the boring typing out of the way 
14821
14822 2004-12-21  Marco Pesenti Gritti  <marco@gnome.org>
14823
14824         * po/POTFILES.in:
14825         * shell/ev-application.c: (window_destroy_cb):
14826         * shell/ev-window.c:
14827         * shell/main.c: (main):
14828
14829         Actually show the window...
14830
14831 2004-12-21  Marco Pesenti Gritti  <marco@gnome.org>
14832
14833         * Makefile.am:
14834         * shell/Makefile.am:
14835         * shell/ev-application.c: (ev_application_class_init):
14836         * shell/ev-window.c: (ev_window_dispose), (ev_window_class_init):
14837
14838         Make it build again
14839
14840 2004-12-21  Marco Pesenti Gritti  <marco@gnome.org>
14841
14842         Import to gnome cvs.
14843         
14844         * Remove copies of gpdf and ggv trees.
14845         * Rip out all the recursive configure code.
14846         * Remove bonobo machinery.
14847         * viewer/*: GInterfaces that backends should/can implement.
14848
14849 2004-11-09  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14850
14851         * shell/ev-window.c (ev_window_cmd_help_about): fix "documentors"
14852         typo
14853
14854 2004-10-28  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14855
14856         * shell/ev-application.c (EV_APPLICATION_GET_PRIVATE)
14857         (ev_application_finalize, ev_application_class_init)
14858         (ev_application_init): use GType instance private data for priv.
14859
14860         * shell/ev-window.c (EV_WINDOW_GET_PRIVATE)
14861         (ev_window_finalize, ev_window_class_init)
14862         (ev_window_init): ditto.
14863
14864 2004-10-27  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14865
14866         * shell/ev-application.c (ev_application_new_window): make public
14867         (ev_application_show_initial_window): kill.
14868
14869         * shell/ev-application.h: update prototypes.
14870
14871         * shell/main.cc (main): inline ev_application_show_initial_window.
14872
14873 2004-10-27  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14874
14875         * shell/ev-application.c (ev_application_new_window): impl.
14876         (ev_application_show_initial_window): use it.
14877         (is_window_empty, ev_application_get_empty_window): returns an
14878         existing empty window or a new one.
14879         (ev_application_open): from ev_window_cmd_file_open.
14880
14881         * shell/ev-application.h: update prototypes
14882
14883         * shell/ev-window.c (ev_window_is_empty): impl.
14884         (ev_window_open): make public.
14885         (ev_window_cmd_file_open): use ev_application_open
14886
14887         * shell/ev-window.h: update prototypes, remove unused.
14888
14889 2004-10-26  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14890
14891         * shell/ev-window.c (ev_window_destroy, ev_window_class_init):
14892         move destroy handler out of here...
14893
14894         * shell/ev-application.c, shell/ev-application.h: ...into this new
14895         class. Also handles initial window creation.
14896
14897         * shell/main.cc (main): use EvApplication to create initial
14898         window.
14899
14900 2004-10-26  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14901
14902         * Makefile.am (SUBDIRS): add cut-n-paste
14903
14904         * cut-n-paste/Makefile.am: add
14905
14906         * configure.ac: generate Makefiles in cut-n-paste
14907
14908 2004-10-26  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14909
14910         * shell/ev-window.c (ev_window_dispose): new, unref the ui_manager
14911         (ev_window_class_init): install ev_window_dispose.
14912
14913 2004-10-25  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14914
14915         * shell/ev-window.h, shell/ev-window.c: replace gchar with
14916         char (gchar looks stupid).
14917
14918 2004-10-25  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14919
14920         * po/de.po: updated German translation.
14921
14922 2004-10-25  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14923
14924         * configure.ac: add more pkg-config library checks for gnome-vfs,
14925         bonobo etc.
14926
14927         * gpdf/configure.in: temporarily disable libpaper
14928         checks. Otherwise I'd have to add the checks for the shell, too.
14929
14930 2004-10-24  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14931
14932         * shell/ev-window.c (ev_window_cmd_file_open): add ps+pdf, ps, pdf
14933         and * file filters to the file choose.
14934
14935 2004-10-24  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14936
14937         * po/de.po: Updated German translation.
14938
14939 2004-10-24  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14940
14941         * shell/ev-window.c: use "S" as mnemonic for Statusbar.
14942
14943 2004-10-24  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14944
14945         * data/evince-ui.xml: add View->Toolbar and View->Statusbar.
14946
14947         * shell/ev-window.c (menu_item_select_cb, menu_item_select_cb)
14948         (ev_window_init): implement those menuitems.
14949
14950 2004-10-24  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14951
14952         * data/evince-ui.xml: add a toolbar (with FileOpen action)
14953
14954         * shell/ev-window.c (ev_window_init): use the toolbar.
14955
14956 2004-10-24  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14957
14958         * shell/ev-window.c (ev_window_init): use menu translations
14959
14960 2004-10-24  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14961
14962         * configure.ac: add "de" to ALL_LINGUAS.
14963
14964         * po/de.po: add German translation.
14965
14966 2004-10-24  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14967
14968         * Makefile.am (SUBDIRS): add po
14969
14970         * configure.ac: check intltool, glib-gettext etc, generate
14971         po/Makefile.in
14972
14973         * po, po/POTFILES.in, po/POTFILES.skip: new.
14974
14975 2004-10-24  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14976
14977         * shell/Makefile.am (INCLUDES): define GNOMELOCALEDIR which we
14978         already use (#ifdef ENABLE_NLS)
14979
14980         * shell/ev-window.c (ev_window_cmd_help_about): fix two star
14981         pointer indirection thinko.
14982
14983         * shell/main.c: include gi18n.h for bindtextdomain etc.
14984
14985 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14986
14987         * shell/ev-window.c (menu_item_select_cb, menu_item_deselect_cb)
14988         (connect_proxy_cb, disconnect_proxy_cb, ev_window_init): show
14989         tooltips for menu items in the statusbar.
14990
14991 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14992
14993         * configure.ac, data/Makefile.am, shell/Makefile.am: use
14994         pkgdatadir drop UIDIR
14995
14996 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net>
14997
14998         * data/evince-ui.xml: Add File->Open menu item
14999
15000         * shell/ev-window.c (ev_window_cmd_file_open): impl. (shows a file
15001         chooser), hook it up in the ui manager.
15002
15003 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net>
15004
15005         * shell/ev-window.c: fix Help->About tooltip.
15006
15007 2004-10-23 Martin Kretzschmar  <m_kretzschmar@gmx.net>
15008
15009         * configure.ac: set CFLAGS for libevprivate.
15010
15011         * lib/ev-stock-icons.h, lib/ev-stock-icons.c: stock icon
15012         definitions, factory etc.
15013
15014         * lib/Makefile.am: build libevprivate.a (only stock icon code).
15015
15016         * shell/Makefile.am: link against libevprivate.a.
15017
15018         * shell/ev-window.c (entries): add stock icon to Help->About.
15019
15020         * shell/main.c (main): init stock icon code.
15021
15022 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net>
15023
15024         * lib/recent-files: egg recent files code
15025
15026         * lib/Makefile.am: add.
15027
15028         * Makefile.am: add lib subdir.
15029
15030         * configure.ac: gen. lib/Makefile and lib/recent-files/Makefile,
15031         set CFLAGS for recent-files.
15032
15033 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net>
15034
15035         * configure.ac: disable -ansi and -pedantic gcc flags. They
15036         disable POSIX stuff in stdio.h, but egg-recent uses them.
15037
15038 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net> 
15039
15040         * configure.ac: add --disable-deprecated flag (defaults to on in
15041         "cvs" builds).
15042
15043         * shell/Makefile.am (INCLUDES): use it.
15044
15045 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net>
15046
15047         * shell/main.c: add missing #include.
15048
15049         * shell/ev-window.c: fix for pedantic gcc.
15050         (ev_window_cmd_help_about): split license into paragraphs for
15051         translators and pedantic compilers.
15052
15053 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net>
15054
15055         * configure.ac: add more warning flags if compiling with gcc from
15056         cvs (or explicitly requested with --enable-more-warnings).
15057
15058 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net>
15059
15060         * data/evince-ui.xml: add File and File->Close menu.
15061
15062         * shell/ev-window.c (ev_window_cmd_file_close_window): impl.
15063         (ev_window_destroy): quit after destroy.
15064         (ev_window_class_init): override GtkObject::destroy.
15065         (entries): install close_window callback.
15066
15067 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net>
15068
15069         * Makefile.am (SUBDIRS): add data subdir.
15070
15071         * configure.ac (UIDIR): gen data/Makefile, define UIDIR.  Require
15072         gtk+ 2.5.0 for GtkAboutDialog.
15073
15074         * data/Makefile.am, data/evince-ui.xml: add, ui definition for the
15075         main window.
15076
15077         * shell/Makefile.am (INCLUDES): propagate UIDIR definition.
15078
15079         * shell/ev-window.c (ev_window_init): create a menubar, using a ui
15080         manager.
15081         (ev_window_cmd_help_about): about command, using GtkAboutDialog.
15082
15083 2004-10-23  Martin Kretzschmar  <m_kretzschmar@gmx.net>
15084
15085         * shell/ev-window.c, shell/ev-window.h: Created an EvWindow class.
15086
15087 2004-10-22  Martin Kretzschmar  <m_kretzschmar@gmx.net>
15088
15089         * shell/main.c: make it a trivial gtk+ program, adjust configure.ac
15090
15091 2004-10-22  Martin Kretzschmar  <m_kretzschmar@gmx.net>
15092
15093         * shell/*: Added shell directory boilerplate, build it.
15094
15095 2004-10-22  Martin Kretzschmar  <m_kretzschmar@gmx.net>
15096
15097         * configure.ac, Makefile.am: Added top-level configure.ac and
15098         Makefile.am