office-gobmx/svl
Noel Grandin bfc1600c6a loplugin:indentation improve checks for brace alignment
Change-Id: I333100fda7e181f68f36b03279b3fbb8cb768310
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117615
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-06-28 10:47:34 +02:00
..
inc/pch update PCHs 2021-04-12 09:47:35 +02:00
qa Add an SvAddressParser unit test 2021-06-09 17:01:19 +02:00
source loplugin:indentation improve checks for brace alignment 2021-06-28 10:47:34 +02:00
unx/source/svdde tdf#96505 : Get rid of cargo cult long integer literals 2021-01-05 08:36:28 +01:00
util
AllLangMoTarget_svl.mk
CppunitTest_svl_adrparse.mk Add an SvAddressParser unit test 2021-06-09 17:01:19 +02:00
CppunitTest_svl_inetcontenttype.mk
CppunitTest_svl_itempool.mk ref-count SfxItemPool 2021-05-08 17:36:54 +02:00
CppunitTest_svl_items.mk ref-count SfxItemPool 2021-05-08 17:36:54 +02:00
CppunitTest_svl_lngmisc.mk
CppunitTest_svl_lockfiles.mk
CppunitTest_svl_notify.mk
CppunitTest_svl_qa_cppunit.mk Drop configurability of libnumbertext use 2020-06-11 16:23:52 +02:00
CppunitTest_svl_urihelper.mk
IwyuFilter_svl.yaml tdf#42949 Fix new IWYU warnings in directories s* 2020-12-01 14:56:43 +01:00
JunitTest_svl_complex.mk Drop juh.jar dependency from Java UNO tests 2018-12-06 17:40:33 +01:00
Library_fsstorage.mk
Library_passwordcontainer.mk
Library_svl.mk Select svl crypto backend in configure.ac 2021-05-28 20:28:17 +02:00
Makefile
Module_svl.mk Add an SvAddressParser unit test 2021-06-09 17:01:19 +02:00
README.md Updated README.md files to represent current code / use Markdown format 2021-04-07 17:47:16 +02:00

Non-Graphical Helper Code (svtools light)

Contains non-graphical helper code for office applications.

Specifically this module does not depend on or use includes from module vcl. Originally all code in svtools that did not depend on vcl was split off into this svl ("svtools light") module.

In particular the SfxItemSet is a property-bag like container that stores arbitrary sets of properties for everything from text run formats, to Chart regression line properties.

There are lots of other useful helpers in here for various office tasks; much of this code was originally moved from svx/sfx2.

Items, Pools and Sets

SfxPoolItem

A small reference counted piece of data. Many subclasses, each with a unique integer to identify its type (WhichId). Can be compared for equality (operator==), Clone()d, and converted to/from uno::Any (QueryValue/PutValue).

A pool item may have value semantics ("poolable"), meaning that there will generally be only one instance that compares equal per item pool, or not, in which case the item will be Clone()d quite a bit.

SfxItemPool

Usually there is one item pool per document, with a range of valid WhichIds that is specific to the type of document.

The item pool owns all instances of SfxPoolItem or its subclasses that have ever been added to an item set. It also contains a default item for every WhichId, which will be (depending on parameters) returned from item sets if the set does not contain an item at this WhichId.

SfxItemSet

The item set can be created with a user-supplied range of WhichIds; it will accept SfxPoolItems with matching WhichIds and ignore attempts to insert items with non-matching WhichIds.

Items that are successfully inserted into the set will be stored in the set's SfxItemPool, and for poolable items only a single instance that compares equal under the predicate operator== will be stored in the pool, regardless of how many sets contain it, thus conserving memory.

There are members m_pWhichRanges for the valid ranges (as pairs of WhichIds), m_nCount for the number of items contained, and m_pItems for the pointers to the actual items.