office-gobmx/svtools
Stephan Bergmann f2a3a51482 -Werror,-Wunused-private-field
Change-Id: Ic7164539420890a1dfef6ece37a1f549bced3d0e
2018-11-19 13:38:48 +01:00
..
inc Adapt to C++2a char_t 2018-11-17 17:17:26 +01:00
langsupport tdf#42949 Fix IWYU warnings in include/comphelper/[m-z]* 2018-10-08 12:16:44 +02:00
qa drop SvMemoryStream::GetBuffer 2018-10-04 15:03:06 +02:00
source -Werror,-Wunused-private-field 2018-11-19 13:38:48 +01:00
uiconfig/ui Related: tdf#121181 basic input box used to have a very wide edit widget 2018-11-08 18:29:11 +01:00
util
AllLangMoTarget_svt.mk
CppunitTest_svtools_dialogs_test.mk
CppunitTest_svtools_graphic.mk
CppunitTest_svtools_html.mk
Executable_langsupport.mk
JunitTest_svtools_unoapi.mk Simplify and fix Java UNO API test makefiles 2018-11-09 07:37:00 +01:00
Library_svt.mk move fmtfield 2018-11-14 13:48:40 +01: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.