Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
Commit message (Collapse)AuthorAgeFilesLines
* 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
*