Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libview/ev-pixbuf-cache.c
Commit message (Collapse)AuthorAgeFilesLines
* [libview] Fix a crash when loading document with inverted colors enabledCarlos Garcia Campos2010-07-271-3/+3
|
* Add EvMappingList data struct instead of using a GListCarlos Garcia Campos2010-07-121-4/+0
| | | | It just wraps the GList and adds reference counting
* Switch to GTK+ 3Carlos Garcia Campos2010-07-081-30/+30
|
* [libview] Do nothing if don't have a job_list yetCarlos Garcia Campos2010-06-021-0/+6
| | | | The job_list isn't created in the init anymore, so it might be NULL.
* [libview] Don't pass rotation and scale to pixbuf-cacheCarlos Garcia Campos2010-05-311-6/+7
|
* [libview] Use g_slice_alloc0/free1 instead of g_new0/freeCarlos Garcia Campos2010-05-311-9/+35
|
* Use a dynamic pixbuf cache size based on document page sizeCarlos Garcia Campos2010-05-311-23/+139
| | | | | | | Instead of using a static number of pages to cache, we use a size in bytes, and the number of pages that will be cached depends on the current zoom level. It allows us caching more pages for lower scale factors and increase zoom level by caching fewer pages. See bug #303365.
* [libview] Fix most of the GSEAL build issuesCarlos Garcia Campos2010-05-101-7/+9
| | | | Still pending GTK_WINDOW (toplevel)->group in ev-view-presentation
* Replace GTK_WIDGET_HAS_FOCUS() with gtk_widget_has_focus()Hib Eris2010-03-311-1/+1
|
* [libview] Remove RenderContext from CacheJobInfoCarlos Garcia Campos2009-12-091-31/+11
|
* [libview] Split EvPixbufCache into dynamic and static dataCarlos Garcia Campos2009-12-091-286/+55
| | | | | | | | | Dynamic page data (page surfaces and selections) that depend on current scale/rotation, keep in EvPixbufCache with the current cache approach. Static page data (links, annots, images, text and forms) that don't depend on current scale/rotation, have been moved to EvPageCache and they are never removed from the cache. Fixes bgo#602405.
*