office-gobmx/svtools
Bryan Quigley 630ec7110e tdf#92925 Remove XPM export
XPM was used to create icons but isn't used much anymore.
Import supoort was tested and still works.

Change-Id: I50b15bc0938c114a432e93781a92e9db38810f49
Reviewed-on: https://gerrit.libreoffice.org/20341
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-12-02 06:34:54 +00:00
..
inc Fast PCH generator and optimized PCH files 2015-11-15 20:31:35 +00:00
langsupport coverity#1308588 Uncaught exception 2015-06-29 12:58:04 +01:00
qa loplugin:nullptr (automatic rewrite) 2015-11-10 10:31:48 +01:00
source tdf#92925 Remove XPM export 2015-12-02 06:34:54 +00:00
uiconfig/ui Add title to image export options dialog 2015-11-06 10:21:39 +00:00
util
AllLangResTarget_svt.mk
CppunitTest_svtools_graphic.mk
CppunitTest_svtools_html.mk
Executable_langsupport.mk
JunitTest_svtools_unoapi.mk
Library_svt.mk Move CommandInfoProvider to vcl and use it from there 2015-11-16 14:48:47 +00:00
Makefile
Module_svtools.mk
README
UIConfig_svt.mk Move remotefilesdialog.ui to where it belongs 2015-07-16 15:12:22 +03:00

Tools on top of VCL. Common dialogs, file and print dialogs, wizards, vcl filters, lots of helper code.


== Image swapping ==

LO has two kind of swapout mechanisms:

1) Size based auto swapping: when the size of all graphic objects reaches a configurable limit (20 MB by default)
then some of the graphics are saved to the local file system and freed in the memory.
Configure: Tools -> Options -> Memory -> GraphicsCache -> Use for LibreOffice

2) Time based auto swapping: after an image is swapped in / loaded a timer starts and when the timer (1 min by default)
has a time out this image is swapped out ( sometimes this time out is ignored when the image is in use ).
Configure: Tools -> Options -> Memory -> GraphicsCache -> Remove from memory after

Both swapping are done by GraphicObject and GraphicManager.