office-gobmx/svtools
Gabor Kelemen f66ace21cd tdf#114124 Translate 'PNG Bitmap' string in Calc Paste dropdown
Change-Id: I8356f241d0742276cf32aa301c35055a7f3c5898
Reviewed-on: https://gerrit.libreoffice.org/45447
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2017-11-30 22:09:45 +01:00
..
inc Resolves: tdf#113835 add Fon [fon-BJ] to language list 2017-11-14 19:41:43 +01:00
langsupport add << operator for css::uno::Exception 2017-10-04 15:18:00 +02:00
qa loplugin:includeform: svtools 2017-10-23 22:45:51 +02:00
source tdf#114124 Translate 'PNG Bitmap' string in Calc Paste dropdown 2017-11-30 22:09:45 +01:00
uiconfig/ui Ditch now unused GraphicExportDialog, GraphicExportOptionsDialog 2017-09-22 13:28:31 +02:00
util
AllLangMoTarget_svt.mk migrate to boost::gettext 2017-07-21 08:20:50 +01:00
CppunitTest_svtools_dialogs_test.mk gbuild: Remove MSVC 2013 legacy code 2017-04-21 18:18:44 +02:00
CppunitTest_svtools_graphic.mk gbuild: Remove MSVC 2013 legacy code 2017-04-21 18:18:44 +02:00
CppunitTest_svtools_html.mk gbuild: Remove MSVC 2013 legacy code 2017-04-21 18:18:44 +02:00
Executable_langsupport.mk gbuild: Remove MSVC 2013 legacy code 2017-04-21 18:18:44 +02:00
JunitTest_svtools_unoapi.mk
Library_svt.mk drop now unused ToolPanelOpt 2017-11-15 21:48:00 +01:00
Makefile
Module_svtools.mk migrate to boost::gettext 2017-07-21 08:20:50 +01:00
README
UIConfig_svt.mk Ditch now unused GraphicExportDialog, GraphicExportOptionsDialog 2017-09-22 13:28:31 +02: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.