office-gobmx/svtools
Gleb Mishchenko a97b392879 tdf#94698 cleanup Makefiles. Get rid of udkapi and offapi
This patch changes occurences in makefiles
from
$(eval $(call gb_CppunitTest_use_api,comphelper_test_config, \
	udkapi \
	offapi \
))

to
$(eval $(call gb_CppunitTest_use_sdk_api,comphelper_test_config))

(corrected instead of abandon, jani)

Change-Id: Ic96ec65d82d7452e288f05a8b6d576ef543b068e
Reviewed-on: https://gerrit.libreoffice.org/23426
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: jan iversen <jani@documentfoundation.org>
Tested-by: jan iversen <jani@documentfoundation.org>
2016-06-09 09:47:11 +00:00
..
inc vcl: replace boost::dynamic_bitset with boost::optional<std::bitset> 2016-05-25 20:15:46 +00:00
langsupport
qa Convert GRAPHIC to scoped enum 2016-05-27 12:59:23 +00:00
source Let loplugin:passstuffbyref also look at fn defn not preceded by any decl 2016-06-08 17:14:34 +02:00
uiconfig/ui resort restart reasons 2016-05-23 08:54:04 +00:00
util
AllLangResTarget_svt.mk
CppunitTest_svtools_graphic.mk tdf#94698 cleanup Makefiles. Get rid of udkapi and offapi 2016-06-09 09:47:11 +00:00
CppunitTest_svtools_html.mk tdf#94698 cleanup Makefiles. Get rid of udkapi and offapi 2016-06-09 09:47:11 +00:00
Executable_langsupport.mk
JunitTest_svtools_unoapi.mk
Library_svt.mk loplugin:unusedmethods 2016-05-31 06:28:41 +00:00
Makefile
Module_svtools.mk
README
UIConfig_svt.mk

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.