office-gobmx/svl
Stephan Bergmann e41ca15fd6 DdeInitializeW, DdeGetLastError, etc. use UINT as status return type
(As a follow-up, DdeConnection::GetError should probably also be changed from
returning tools::Long to something like sal_uInt32.)

Change-Id: I3eb4afe66e7a5f4e24a77c52e901163c2d8354e2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106581
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2020-11-25 14:10:00 +01:00
..
inc/pch TabPage no longer needs to inherit from VclBuilderContainer 2020-09-04 22:22:16 +02:00
qa tdf#123936 Formatting files in module svl with clang-format 2020-11-16 11:44:30 +01:00
source DdeInitializeW, DdeGetLastError, etc. use UINT as status return type 2020-11-25 14:10:00 +01:00
unx/source/svdde loplugin:stringviewparam extend to constructors 2020-11-17 12:12:03 +01:00
util
AllLangMoTarget_svl.mk
CppunitTest_svl_inetcontenttype.mk
CppunitTest_svl_itempool.mk
CppunitTest_svl_items.mk
CppunitTest_svl_lngmisc.mk
CppunitTest_svl_lockfiles.mk Fix more new dependencies on boost_headers 2019-12-07 09:00:26 +01:00
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 replace usage of blacklist with excludelist for IWYU 2020-07-10 02:03:40 +02:00
JunitTest_svl_complex.mk
Library_fsstorage.mk
Library_passwordcontainer.mk
Library_svl.mk tdf#128136: Build curl, nss, and xmlsec for iOS, too 2020-09-23 07:47:55 +02:00
Makefile
Module_svl.mk Drop needless junit and python make conditionals 2020-02-17 02:45:56 +01:00
README

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.