Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
Commit message (Collapse)AuthorAgeFilesLines
* Run evince instances in different processes instead of single instanceCarlos Garcia Campos2009-10-207-647/+831
| | | | | | | | | | | | - When built with DBus support a daemon is used to keep track of opened documents and reload them when reopened. - Crash recovery code has been removed. - Metadata migration code has been moved from main.c to ev-daemon.c, so that it's only run once on daemon startup. Fixes bgo#583680, bgo#434966, bgo#497388, bgo#524633 and bgo#586087.
* Make sure metadata exists before reference it when opening a copyCarlos Garcia Campos2009-10-111-1/+2
|
* Remove ev-metadata-managerCarlos Garcia Campos2009-10-113-790/+0
|
* [shell] Use EvMetadata to get/set gvfs metadataCarlos Garcia Campos2009-10-112-213/+209
|
* [metadata] Run evince-convert-metadata tool at startup when neededCarlos Garcia Campos2009-10-112-0/+81
| | | | This will migrate the old metadata file to gvfs metadata
* [metadata] Add EvMetadata to handle gvfs metadataCarlos Garcia Campos2009-10-113-0/+377
|
* [metadata] Add evince-convert-metadata toolCarlos Garcia Campos2009-10-112-0/+310
| | | | It converts the old xml based metadata file into gvfs metadata.
* [shell] Make sure total_num_bytes > 0 before using it in progress callbacksCarlos Garcia Campos2009-10-071-2/+11
| | | | Fixes bgo#597691
* [shell] Escape uri before showing it in progress areaCarlos Garcia Campos2009-10-071-1/+3
| | | | See bgo#597691.
* [utils] Remove escape_uri_for_display() in favor of g_uri_unescape_string()Carlos Garcia Campos2009-10-072-42/+0
|
* [shell] Use g_uri_unescape_string() instead of our own implementationCarlos Garcia Campos2009-10-072-2/+2
|
* [shell] Remove progress message area when document download finishesCarlos Garcia Campos2009-10-071-1/+2
|
* [shell] Fix a crash due to an uninitialized variableCarlos Garcia Campos2009-10-071-1/+1
| | | | Fixes bgo#597154.
* [thumbnails] Remarks the selected thumbnail after rotationJuanjo MarĂ­n2009-09-271-0/+2
| | | | Fixes bgo#595548.
* Do not try to recover invalid or unneeded filesCarlos Garcia Campos2009-09-251-45/+85
| | | | | Files that no longer exist or that are already in the command line. Fixes bgo#595887
* Fix thumbnails rotation when loading a rotated documentCarlos Garcia Campos2009-09-201-0/+1
| | | | Fixes bgo#595718.
* Use EvInfoBar instead of GeditMessageAreaCarlos Garcia Campos2009-09-184-41/+63
| | | | Fixes bug #592785
* Use model instead of view to handle continuous, dual-page and fullscreenCarlos Garcia Campos2009-09-151-68/+57
|
* [shell] Remove unneeded call to ev_view_set_screen_dpi()Carlos Garcia Campos2009-09-151-2/+0
|
* [shell] Make sure to not open a document on the last pageCarlos Garcia Campos2009-09-151-14/+7
| | | | It was actually broken since commit 0e064f5e.
* [shell] Use ev_window_open_document() to open a copy instead of using a symlinkCarlos Garcia Campos2009-09-151-125/+10
|
* [shell] Add ev_window_open_document()Carlos Garcia Campos2009-09-152-12/+86
| | | | It allows open an already loaded document in an EvWindow
* Remove EvPageCache and use EvDocumentModel insteadCarlos Garcia Campos2009-09-1513-335/+448
| | | | | | | EvView is now another view for the common model EvDocumentModel. Now it's possible to have several windows for the same document without the symlink hack. Every window has its own model, while the document object is shared.
* Remove zoom-invalid signal from EvViewCarlos Garcia Campos2009-09-151-40/+0
| | | | | | | | | It was used by EvView when sizing mode was best-fit or fit-width to request the window for its content size. This is not needed at all, since we already call size_allocate on parent class. GtkScrolledWindow takes into account the shadow type and scrollbars visibility in its size_allocate method, so we can just take the allocation returned to calculate the zoom in case of best-fit or fit-width.
* Move ev_page_cache_check_dimensions() to EvDocumentCarlos Garcia Campos2009-09-152-5/+5
|
* Move thumbnails page sizes cache from EvPageCache to EvSidebarThumbnailsCarlos Garcia Campos2009-09-151-3/+149
|
* [shell] Add missing castCarlos Garcia Campos2009-09-151-1/+1
|
* Move part of the EvPageCache to EvDocumentCarlos Garcia Campos2009-09-156-97/+72
| | | | The static data about the document is stored now in EvDocument class
*