summaryrefslogtreecommitdiff
path: root/cocoa/apple_image.m
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-255/+0
|
* fix missing struct on http parameter declaration due to header changeVincent Sanders2016-04-181-1/+1
|
* Fix several warnings in cocoa frontendVincent Sanders2015-06-181-106/+95
|
* move scheduleing into browser operation tableVincent Sanders2014-03-091-5/+6
|
* reduce talloc usage to box tree layout onlyVincent Sanders2012-10-031-5/+4
|
* Make llcache_handle_get_url return a nsurl.Michael Drake2011-09-281-1/+1
| | | | svn path=/trunk/netsurf/; revision=12905
* Virtualise content handler finalisation calls. Remove pointless implementations.John Mark Bell2011-09-151-4/+0
| | | | svn path=/trunk/netsurf/; revision=12797
* Clean up content_factory_register_handler API -- content handlers no longer ↵John Mark Bell2011-09-151-7/+1
| | | | | | use the mime type, so don't require it to be interned up front svn path=/trunk/netsurf/; revision=12796
* Remove mime_type parameter from content handler content_type callback APIJohn Mark Bell2011-09-031-2/+2
| | | | svn path=/trunk/netsurf/; revision=12704
* fix apple image content handlerVincent Sanders2011-08-311-3/+4
| | | | svn path=/trunk/netsurf/; revision=12687
* refactor bitmap out of generic content structureVincent Sanders2011-08-311-4/+19
| | | | svn path=/trunk/netsurf/; revision=12686
* Remove plotter table global. Pass a redraw context around redraw functions. ↵Michael Drake2011-06-301-3/+3
| | | | | | Knockout could be handled better. Note: untested on most front ends. svn path=/trunk/netsurf/; revision=12543
* Fix up apple image content handler.Michael Drake2011-06-291-13/+8
| | | | svn path=/trunk/netsurf/; revision=12540
* Handling animations in apple_image.m. Loop counts are ignored for nowSven Weidauer2011-05-191-0/+41
| | | | svn path=/trunk/netsurf/; revision=12433
* Reverting r12367, cannot get incremental image loading to work correctly.Sven Weidauer2011-05-191-54/+9
| | | | svn path=/trunk/netsurf/; revision=12432
* Using the file name and size of an image as title.Sven Weidauer2011-05-101-3/+3
| | | | svn path=/trunk/netsurf/; revision=12370
* Stop keeping all lwc strings for mime types in apple_image.mSven Weidauer2011-05-101-38/+5
| | | | svn path=/trunk/netsurf/; revision=12369
* Incremental loading images using ImageIOSven Weidauer2011-05-101-9/+54
| | | | svn path=/trunk/netsurf/; revision=12367
* Remove NSLog calls (unnecessary)Sven Weidauer2011-05-101-1/+0
| | | | svn path=/trunk/netsurf/; revision=12366
* Don't say "registering" when we actually skipped the type...François Revel2011-05-091-1/+1
| | | | svn path=/trunk/netsurf/; revision=12355
* Skip image/gif when registering Apple Image handlers, to give precedence to ↵François Revel2011-05-091-0/+6
| | | | | | nsgif since it handles animated GIF. svn path=/trunk/netsurf/; revision=12354
* Registering all image types NSBitmapImageRep can load and using ImageIO ↵Sven Weidauer2011-05-091-33/+60
| | | | | | | | instead of other image libraries by default. Regression: animated GIF doesn’t work anymore. svn path=/trunk/netsurf/; revision=12350
* Use named initializers.François Revel2011-05-091-15/+7
| | | | svn path=/trunk/netsurf/; revision=12343
* Fix the apple_image handler to only have a redraw method that also does tiling.François Revel2011-05-091-18/+1
| | | | svn path=/trunk/netsurf/; revision=12342
* Partial Cocoa build fix: missing definition of NOF_ELEMENTS.François Revel2011-05-061-0/+1
| | | | svn path=/trunk/netsurf/; revision=12285
* Merge branches/jmb/content-factory to trunkJohn Mark Bell2011-05-061-5/+137
| | | | svn path=/trunk/netsurf/; revision=12283
* Created content handler CONTENT_APPLE_IMAGE for Mac OS X that can handle all ↵Sven Weidauer2011-03-051-0/+117
image file formats supported by Apples ImageIO framework. Right now used only for JPEG to get rid of libjpeg dependency. svn path=/trunk/netsurf/; revision=11911