Test repository to check push and ssh key
Find a file
Todor Balabanov 763149e2f4 Double values comparison changed to compare method.
Using the Double.compare() method is often preferred over the == comparison
operator for comparing double values due to several reasons:

Handling NaN (Not-a-Number) values: The Double.compare() method correctly
handles NaN values, while the == operator does not. If either of the operands
is NaN, the == operator will always return false, regardless of the other
operand. In contrast, Double.compare() will correctly evaluate NaN values
according to the IEEE 754 floating-point standard.

Handling positive and negative zero: The == operator treats positive zero and
negative zero as equal, whereas they are distinct values in IEEE 754
floating-point representation. Double.compare() correctly distinguishes
between positive and negative zero.

Robustness against rounding errors: Floating-point arithmetic can introduce
rounding errors, causing two double values that should be equal to differ
slightly. Directly comparing them with the == operator might yield unexpected
results due to these small differences. Double.compare() allows you to define
a tolerance level if necessary, providing more control over how equality is
determined.

Consistent behavior: The behavior of Double.compare() is consistent and
predictable across different platforms and JVM implementations, as it follows
the IEEE 754 standard. On the other hand, the behavior of the == operator
might vary depending on the platform and compiler optimizations.

Suitability for sorting: Double.compare() returns an integer value that can
be directly used for sorting double values in ascending or descending order.
This makes it convenient for sorting arrays or collections of double values.

Overall, while the == operator might work in some cases, using
Double.compare() provides more robust and predictable behavior, especially
when dealing with floating-point numbers in Java.

Change-Id: I5756936a0d2b4fe11b9113ddd33b6ae691f5103f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166796
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-04-29 15:40:27 +02:00
.git-hooks Revert "Drop allownonascii check from pre-commit checks" 2023-12-02 21:55:33 +01:00
.github workflows: Update dessant/repo-lockdown to v3 2023-04-22 03:27:06 +02:00
.vscode vscode-ide-integration: add license-header template (snippet) 2023-11-06 13:55:12 +01:00
accessibility [API CHANGE] a11y: Use XAccessible for relation targets 2024-04-24 23:04:35 +02:00
android Update translation files for android-viewer 2024-04-22 08:15:38 +02:00
animations tdf#146619 Recheck animations/ with IWYU 2024-03-08 09:13:28 +01:00
apple_remote Drop C/C++ DEBUG macro 2024-03-21 16:30:59 +01:00
avmedia loplugin:unusedmethods 2024-04-04 19:58:14 +02:00
basctl tdf#146619 Drop unused 'using namespace' in: basctl/ 2024-04-08 10:06:39 +02:00
basegfx loplugin:constantparam 2024-04-19 21:26:52 +02:00
basic Use Windows dllmgr-x64 also for aarch64 2024-04-26 12:43:59 +02:00
bean Updated README.md files to represent current code / use Markdown format 2021-04-07 17:47:16 +02:00
bin reduce symbol visibility 2024-04-29 12:54:43 +02:00
binaryurp Use less boost_headers in low level libraries 2024-03-06 21:23:17 +01:00
bridges Drop unused RETURN_KIND_HFA_FLOAT/DOUBLE from msvc_win32_arm64 UNO bridge 2024-04-26 14:01:54 +02:00
canvas Generalize basegfx::fround for templated return type 2024-04-15 06:34:33 +02:00
chart2 Extended loplugin:ostr manual changes 2024-04-28 11:29:52 +02:00
cli_ure simplify some sed rules/statements and use proper quoting 2024-04-26 14:01:19 +02:00
codemaker loplugin:ostr in codemaker,unoidl 2024-04-26 19:44:07 +02:00
comphelper Simplify a bit 2024-04-28 05:14:50 +02:00
compilerplugins Drop CacheConfiguration in favor of officecfg 2024-04-28 17:08:29 +02:00
config_host add UNLESS_MERGELIBS_MORE and use to reduce symbol visibility 2024-03-02 09:36:01 +01:00
configmgr configmgr: fix parse error if subelements of <info> used 2024-03-22 08:46:04 +01:00
connectivity Extended loplugin:ostr manual changes 2024-04-28 11:29:52 +02:00
cppcanvas Generalize basegfx::fround for templated return type 2024-04-15 06:34:33 +02:00
cppu loplugin:ostr in cppu,cppuhelper 2024-04-27 15:11:25 +02:00
cppuhelper loplugin:ostr in cppu,cppuhelper 2024-04-27 15:11:25 +02:00
cpputools loplugin:external -> loplugin:conststringvar -> loplugin:redundantstatic 2023-11-08 22:49:47 +01:00
cui tdf#99528 Properly layout vertical tabs without icons 2024-04-29 07:52:27 +02:00
dbaccess Extended loplugin:ostr manual changes 2024-04-28 11:29:52 +02:00
desktop cool#8066: calc: enable .uno:ToggleSheetGrid 2024-04-29 09:31:06 +02:00
dictionaries@8c5b63124f Update git submodules 2024-04-18 07:54:26 +02:00
distro-configs add --enable-hardening-flags to enable compiler hardening flags 2024-04-19 21:01:53 +02:00
docmodel cool#8327 use tools::JsonWriter for theme colors 2024-03-04 11:50:45 +01:00
drawinglayer tdf#157240: also set font color together with font 2024-04-26 05:50:27 +02:00
editeng run gperf via wsl in wsl-as-helper case 2024-04-26 14:01:51 +02:00
embeddedobj Use osl::ResettableMutexGuardScopedReleaser instead of ad-hoc guards 2024-04-04 13:21:14 +02:00
embedserv tdf#148251 Use std::swap instead of using temporary values 2024-04-08 20:45:39 +02:00
emfio ofz#68234 emf XForm isnan members 2024-04-23 13:20:54 +02:00
eventattacher tdf#146619 Drop unused 'using namespace' in: eventattacher/ 2024-03-30 10:03:30 +01:00
extensions tdf#148251 Use std::swap instead of using temporary values 2024-04-08 20:45:39 +02:00
external use strawberry perl in wsl-as-helper case for openssl 2024-04-26 14:02:29 +02:00
extras run zip via wsl in wsl-as-helper case 2024-04-26 14:01:43 +02:00
filter Configuration_filter.mk: create RESPONSEFILEs using gb_var2file 2024-04-26 15:02:37 +02:00
forms Fix typo: compytibility 2024-04-09 08:46:04 +02:00
formula tdf#126573 Add Excel2021 array function SEQUENCE to Calc 2024-04-26 09:33:23 +02:00
fpicker tdf#146619 Drop unused 'using namespace' in: fpicker/ 2024-03-31 19:22:40 +02:00
framework New Expert Configuration setting to not offer Safe Mode in the UI 2024-04-10 14:54:41 +02:00
helpcompiler Use less boost_headers in low level libraries 2024-03-06 21:23:17 +01:00
helpcontent2@db688bf5d4 Update git submodules 2024-04-25 18:23:35 +02:00
hwpfilter Use more o3tl::convert 2024-04-13 18:48:38 +02:00
i18nlangtag Drop C/C++ DEBUG macro 2024-03-21 16:30:59 +01:00
i18npool i18npool : remove useless stdio include generation 2024-04-29 14:21:32 +02:00
i18nutil Remove duplicate include 2024-04-14 10:30:49 +02:00
icon-themes tdf#50998 tdf#87892 Add sinusoid shape 2024-04-08 09:54:55 +02:00
idl tdf#143148 update all headers in idl/inc to use #pragma once 2024-03-16 20:20:21 +01:00
idlc/test/parser
include reduce symbol visibility 2024-04-29 12:54:43 +02:00
instsetoo_native use strawberry perl for installation packaging in wsl-as-helper case 2024-04-26 14:02:37 +02:00
io tdf#146619 Drop unused 'using namespace' in: io/ 2024-03-29 21:21:02 +01:00
ios
javaunohelper enable unchecked lint for our java code 2023-11-09 14:27:47 +01:00
jurt Fix Library_jpipe__staticsalhack 2023-02-26 22:07:57 +00:00
jvmaccess clang-tidy modernize-pass-by-value in jvmaccess 2022-05-23 11:46:13 +02:00
jvmfwk Tie javac -g option to --enable-symbols instead of gb_DEBUGLEVEL 2024-03-21 09:41:57 +01:00
l10ntools cid#1546281 COPY_INSTEAD_OF_MOVE 2023-12-10 11:57:12 +01:00
librelogo Revert "tdf#158803 remove some unused imports, unnecessary semicolons and related styling" 2024-03-28 10:10:32 +01:00
libreofficekit LOK: send inner text boundry information of shapes/textbox on change 2024-03-08 10:55:26 +01:00
lingucomponent tdf#146619 Drop unused 'using namespace' in: lingucomponent/ 2024-04-01 20:47:37 +02:00
linguistic Silence strange -Wmaybe-uninitialized with recent GCC 14 2024-04-05 20:06:08 +02:00
lotuswordpro Use more o3tl::convert in lotuswordpro 2024-04-14 06:57:06 +02:00
m4 Fix typo 2023-04-06 14:15:12 +02:00
msicreator createmsi: retrieve file handle explicitely so we can close it at the end 2023-11-17 17:34:52 +01:00
nlpsolver Double values comparison changed to compare method. 2024-04-29 15:40:27 +02:00
o3tl Use less boost_headers in low level libraries 2024-03-06 21:23:17 +01:00
odk run doxygen via wsl in wsl-as-helper case 2024-04-26 14:02:00 +02:00
offapi [API CHANGE] a11y: Use XAccessible for relation targets 2024-04-24 23:04:35 +02:00
officecfg Related tdf#87676 Enable text formatting toolbar when in a text box 2024-04-25 18:23:40 +02:00
oovbaapi tdf#150281: Fix CentimetersToPoints in Calc 2023-03-13 15:16:24 +00:00
oox mStyleIdMap can be static const 2024-04-26 12:09:27 +02:00
opencl Use less boost_headers in low level libraries 2024-03-06 21:23:17 +01:00
osx Add all source directories as folder references to the Xcode project 2023-07-05 10:30:37 +02:00
package tdf#146619 Drop unused 'using namespace' in: package/ 2024-03-31 09:41:32 +02:00
pch
postprocess fix mismatching gb_Trace_StartRange and gb_Trace_EndRage 2024-04-25 21:49:11 +02:00
pyuno minor fixes to officehelper.py 2024-04-03 17:50:11 +02:00
qadevOOo Tie javac -g option to --enable-symbols instead of gb_DEBUGLEVEL 2024-03-21 09:41:57 +01:00
readlicense_oo update credits 2024-03-19 12:24:43 +01:00
registry Use less boost_headers in low level libraries 2024-03-06 21:23:17 +01:00
remotebridges
reportbuilder reportbuilder: remove unused config files 2023-12-18 07:57:24 +01:00
reportdesign simplify OGenericUnoController init 2024-04-10 10:18:47 +02:00
ridljar Allow building with Java 8 2024-03-02 06:29:50 +01:00
sal Extended loplugin:ostr manual changes 2024-04-28 11:29:52 +02:00
salhelper Use less boost_headers in low level libraries 2024-03-06 21:23:17 +01:00
sax Extended loplugin:ostr manual changes 2024-04-28 11:29:52 +02:00
sc Extended loplugin:ostr manual changes 2024-04-28 11:29:52 +02:00
scaddins Use less boost_headers in low level libraries 2024-03-06 21:23:17 +01:00
sccomp convert SolverComponent to comphelper::WeakImplHelper 2024-03-29 07:42:41 +01:00
schema tdf#132599 cui offapi sw xmloff: add hyphenation-keep-type 2024-04-11 10:20:41 +02:00
scp2 MSI: Fix use of illegal character in table Binary 2024-04-26 13:11:34 +02:00
scripting tdf#146619 Drop unused 'using namespace' in: scripting/ 2024-04-09 18:53:50 +02:00
sd Use less ConfigurationAccess in favor of officecfg 2024-04-28 17:10:31 +02:00
sdext run gperf via wsl in wsl-as-helper case 2024-04-26 14:01:51 +02:00
setup_native MSI: Fix use of illegal character in table Binary 2024-04-26 13:11:34 +02:00
sfx2 cool#8066: calc: enable .uno:ToggleSheetGrid 2024-04-29 09:31:06 +02:00
shell tdf#146619 Drop unused 'using namespace' in: shell/ 2024-03-30 20:50:06 +01:00
slideshow Fix typo 2024-04-25 21:47:32 +02:00
smoketest
solenv ofz#68265 fix oss-fuzz build failure 2024-04-29 14:17:30 +02:00
soltools Drop C/C++ DEBUG macro 2024-03-21 16:30:59 +01:00
sot simplify SotTempStream and lifetime 2024-04-02 07:53:43 +02:00
starmath tdf#146619 Drop unused 'using namespace' in: starmath/ 2024-04-09 18:53:23 +02:00
static gb_Trace_EndRange MOC instead of CXX (CustomTarget_wasm-qt5-mandelbrot_moc) 2024-04-26 07:29:53 +02:00
stoc tdf#146619 Drop unused 'using namespace' in: stoc/ 2024-03-30 09:49:07 +01:00
store Use less boost_headers in low level libraries 2024-03-06 21:23:17 +01:00
svgio CppunitTest_svgio: fix mid-air collision 2024-04-25 09:21:03 +02:00
svl lok: save correct number format in multi-lang session 2024-04-29 07:58:52 +02:00
svtools loplugin:constantparam 2024-04-20 12:14:50 +02:00
svx svx: prefix members of SdrLayerAdmin 2024-04-29 10:10:37 +02:00
sw use more concrete UNO classes in writerfilter (SwXContentControl) 2024-04-29 15:36:11 +02:00
swext swext: MediaWiki: implement AllowInsecureProtocols 2023-11-09 16:53:55 +01:00
sysui Add missing file types to desktop files and alphabetize the lists 2024-04-29 08:13:36 +02:00
test [API CHANGE] a11y: Use XAccessible for relation targets 2024-04-24 23:04:35 +02:00
testtools cid#1545177 COPY_INSTEAD_OF_MOVE 2023-12-10 17:41:18 +01:00
toolkit [API CHANGE] a11y: Use XAccessible for relation targets 2024-04-24 23:04:35 +02:00
tools loplugin:singlevalfields 2024-04-23 11:28:55 +02:00
translations@b2b2c286fe Update git submodules 2024-04-22 13:59:11 +02:00
ucb loplugin:constantparam in ucb,unotools 2024-04-20 10:01:23 +02:00
ucbhelper tdf#146619 Drop unused 'using namespace' in: ucbhelper/ 2024-03-29 21:21:23 +01:00
udkapi Move org.libreoffice.embindtest from udkapi to offapi 2024-04-11 15:22:40 +02:00
uitest fix comparison of UIObject's inside UITests 2024-03-28 17:17:32 +01:00
UnoControls tdf#146619 Drop unused 'using namespace' in: UnoControls/ 2024-03-30 19:54:17 +01:00
unodevtools Don't use boost in code generated by uno-skeletonmaker 2023-12-22 11:17:45 +01:00
unoidl loplugin:ostr in codemaker,unoidl 2024-04-26 19:44:07 +02:00
unoil
unotest Embind: Test and Fix out-param handling 2024-04-20 11:57:28 +02:00
unotools loplugin:constantparam in ucb,unotools 2024-04-20 10:01:23 +02:00
unoxml tdf#146619 Drop unused 'using namespace' in: unoxml/ 2024-03-31 09:41:07 +02:00
ure Add a FunctionBasedURPConnection and a websocket URP connector 2023-09-01 16:55:37 +02:00
uui uui: show what is the unhandled result before asserting 2024-02-15 16:37:52 +01:00
vbahelper Extended loplugin:ostr manual changes 2024-04-28 11:29:52 +02:00
vcl tdf#99528 Properly layout vertical tabs without icons 2024-04-29 07:52:27 +02:00
winaccessibility [API CHANGE] a11y: Use XAccessible for relation targets 2024-04-24 23:04:35 +02:00
wizards Revert "tdf#158803 remove some unused imports, unnecessary semicolons and related styling" 2024-03-28 10:10:32 +01:00
writerperfect reduce symbol visibility in --enable-mergelibs=more mode 2024-03-13 08:14:38 +01:00
xmerge
xmlhelp Use less boost_headers in low level libraries 2024-03-06 21:23:17 +01:00
xmloff Fix dc:date export for midnight time 2024-04-27 06:21:58 +02:00
xmlreader Use less boost_headers in low level libraries 2024-03-06 21:23:17 +01:00
xmlscript tdf#146619 Drop unused 'using namespace' in: xmlscript/ 2024-04-01 10:03:25 +02:00
xmlsecurity Lazy load additional GPG key data. 2024-04-27 08:29:15 +02:00
.buckconfig Add build toolchain to upload LibreOffice API to Maven Central 2015-12-03 23:32:11 +00:00
.buckversion Add build toolchain to upload LibreOffice API to Maven Central 2015-12-03 23:32:11 +00:00
.clang-format Document that .clang-format would benefit from StatementMacros 2022-11-06 15:38:07 +01:00
.editorconfig We have some Objective-C source files, too 2017-12-01 12:59:43 +02:00
.git-blame-ignore-revs tdf#157638 Added to git blame ignore list 2023-12-29 17:01:32 +01:00
.gitattributes SVG is a textual XML format after all 2022-06-24 16:36:36 +02:00
.gitignore add secmod.db files to .gitignore 2024-01-15 08:48:52 +01:00
.gitmodules gitmodules: use relative paths 2020-10-21 21:51:54 +02:00
.gitpod.dockerfile Upgrade .gitpod.dockerfile to Ubuntu focal 2021-05-22 19:35:47 +02:00
.gitpod.yml Install C++ VSCode extension for Gitpod 2020-03-09 15:54:14 +01:00
.gitreview git-review: Use the hostname instead of alias. 2019-05-15 15:13:47 +02:00
antivirusDetection.vbs tdf#84553 Correctly handle failures while getting a WMI Object. 2020-02-12 09:14:03 +01:00
autogen.sh Remove support for AIX 2023-01-27 07:28:16 +00:00
BUCK Adapt buck build to jars merged into libreoffice.jar 2020-11-30 11:27:47 +01:00
config.guess Update config.guess & .sub to latest 2022-12-12 15:46:46 +00:00
config.sub Update config.guess & .sub to latest 2022-12-12 15:46:46 +00:00
config_host.mk.in fix some hardcoded use of wsl.exe and fix some typos 2024-04-27 10:16:39 +02:00
config_host_lang.mk.in don't export the various language lists and consolidate them 2022-12-15 21:07:37 +00:00
configure.ac fix some hardcoded use of wsl.exe and fix some typos 2024-04-27 10:16:39 +02:00
COPYING Licencing files 2011-01-11 21:49:39 +00:00
COPYING.LGPL Licencing files 2011-01-11 21:49:39 +00:00
COPYING.MPL Targetted text updates, with seasonable changes before l10n freeze. 2013-12-13 17:00:07 +00:00
cpp.hint Add some entries into cpp.hint 2024-04-24 09:43:42 +02:00
download.lst libgpg-error: Upgrade to 1.49 2024-04-26 12:47:24 +02:00
g git-hooks: remove hint in './g -z' 2023-04-01 13:28:14 +02:00
install-sh Fix typos 2019-08-12 22:12:57 +02:00
install_deps.sh Make some scripts more portable 2021-08-20 12:32:22 +02:00
leak-suppress.txt exclude more UNO type and crypto leaks 2021-06-30 13:22:32 +02:00
Library_merged.mk gbuild: Remove MSVC 2013 legacy code 2017-04-21 18:18:44 +02:00
logerrit When no branch is specified, fallback to the tracked branch first 2024-04-11 14:08:29 +02:00
Makefile.fetch Fail early when external tarball can't be fetched 2024-04-26 10:46:04 +02:00
Makefile.gbuild Create MAR updates from msi rather than from archive 2024-01-22 16:06:42 +01:00
Makefile.in add --with-keep-awake switch to prevent going into sleep/suspend 2024-04-26 23:10:22 +02:00
README.cross Add missing autogen.input entries to README.cross 2020-03-25 16:25:14 +01:00
README.help.md Fix typo 2022-07-30 23:26:39 +02:00
README.md fix broken link to OSI image in README.md 2024-04-22 23:26:08 +02:00
README.Solaris remove use of Archive::Zip 2016-06-04 08:09:56 +02:00
Repository.mk tdf#97448 Add helper script to generate Addons.xcu 2024-04-25 10:58:49 +02:00
RepositoryExternal.mk Revert "make skia into static library" 2024-03-16 16:02:31 +01:00
RepositoryFixes.mk Experimental support for latest Emscripten (and Qt6) 2024-01-29 19:51:57 +01:00
RepositoryModule_build.mk Extract embindmaker from cppumaker into its own tool 2024-01-21 15:51:39 +01:00
RepositoryModule_host.mk move writerfilter inside sw 2024-04-18 09:16:12 +02:00
sanitize-ubsan-excludelist replace usage of blacklist with denylist 2020-07-10 01:34:54 +02:00
setup.cfg pep8 -> pycodestyle 2018-10-16 14:29:06 +02:00
TEMPLATE.SOURCECODE.HEADER Make it clear that the text is in addition to the previous 2021-01-27 08:02:35 +01:00
tsan-suppress.txt update tsan suppressions 2023-12-06 20:27:49 +01:00

LibreOffice

Coverity Scan Build Status CII Best Practices Translation status

LibreOffice is an integrated office suite based on copyleft licenses and compatible with most document formats and standards. Libreoffice is backed by The Document Foundation, which represents a large independent community of enterprises, developers and other volunteers moved by the common goal of bringing to the market the best software for personal productivity. LibreOffice is open source, and free to download, use and distribute.

A quick overview of the LibreOffice code structure.

Overview

You can develop for LibreOffice in one of two ways, one recommended and one much less so. First the somewhat less recommended way: it is possible to use the SDK to develop an extension, for which you can read the API docs and Developers Guide. This re-uses the (extremely generic) UNO APIs that are also used by macro scripting in StarBasic.

The best way to add a generally useful feature to LibreOffice is to work on the code base however. Overall this way makes it easier to compile and build your code, it avoids any arbitrary limitations of our scripting APIs, and in general is far more simple and intuitive - if you are a reasonably able C++ programmer.

The Build Chain and Runtime Baselines

These are the current minimal operating system and compiler versions to run and compile LibreOffice, also used by the TDF builds:

  • Windows:
    • Runtime: Windows 7
    • Build: Cygwin + Visual Studio 2019 version 16.10
  • macOS:
    • Runtime: 10.15
    • Build: 12 (13 for aarch64) + Xcode 14
  • Linux:
    • Runtime: RHEL 8 or CentOS 8 and comparable
    • Build: either GCC 12; or Clang 12 with libstdc++ 10
  • iOS (only for LibreOfficeKit):
    • Runtime: 11.4 (only support for newer i devices == 64 bit)
    • Build: Xcode 9.3 and iPhone SDK 11.4
  • Android:
    • Build: NDK r23 and SDK 30.0.3
  • Emscripten / WASM:
    • Runtime: a browser with SharedMemory support (threads + atomics)
    • Build: Qt 5.15 with Qt supported Emscripten 1.39.8
    • See README.wasm

Java is required for building many parts of LibreOffice. In TDF Wiki article Development/Java, the exact modules that depend on Java are listed.

The baseline for Java is Java Development Kit (JDK) Version 17 or later.

If you want to use Clang with the LibreOffice compiler plugins, the minimal version of Clang is 12.0.1. Since Xcode doesn't provide the compiler plugin headers, you have to compile your own Clang to use them on macOS.

You can find the TDF configure switches in the distro-configs/ directory.

To setup your initial build environment on Windows and macOS, we provide the LibreOffice Development Environment (LODE) scripts.

For more information see the build instructions for your platform in the TDF wiki.

The Important Bits of Code

Each module should have a README.md file inside it which has some degree of documentation for that module; patches are most welcome to improve those. We have those turned into a web page here:

https://docs.libreoffice.org/

However, there are two hundred modules, many of them of only peripheral interest for a specialist audience. So - where is the good stuff, the code that is most useful. Here is a quick overview of the most important ones:

Module Description
sal/ this provides a simple System Abstraction Layer
tools/ this provides basic internal types: Rectangle, Color etc.
vcl/ this is the widget toolkit library and one rendering abstraction
framework/ UNO framework, responsible for building toolbars, menus, status bars, and the chrome around the document using widgets from VCL, and XML descriptions from /uiconfig/ files
sfx2/ legacy core framework used by Writer/Calc/Draw: document model / load/save / signals for actions etc.
svx/ drawing model related helper code, including much of Draw/Impress

Then applications

Module Description
desktop/ this is where the main() for the application lives, init / bootstrap. the name dates back to an ancient StarOffice that also drew a desktop
sw/ Writer
sc/ Calc
sd/ Draw / Impress

There are several other libraries that are helpful from a graphical perspective:

Module Description
basegfx/ algorithms and data-types for graphics as used in the canvas
canvas/ new (UNO) canvas rendering model with various backends
cppcanvas/ C++ helper classes for using the UNO canvas
drawinglayer/ View code to render drawable objects and break them down into primitives we can render more easily.

Rules for #include Directives (C/C++)

Use the "..." form if and only if the included file is found next to the including file. Otherwise, use the <...> form. (For further details, see the mail Re: C[++]: Normalizing include syntax ("" vs <>).)

The UNO API include files should consistently use double quotes, for the benefit of external users of this API.

loplugin:includeform (compilerplugins/clang/includeform.cxx) enforces these rules.

Finding Out More

Beyond this, you can read the README.md files, send us patches, ask on the mailing list libreoffice@lists.freedesktop.org (no subscription required) or poke people on IRC #libreoffice-dev on irc.libera.chat - we're a friendly and generally helpful mob. We know the code can be hard to get into at first, and so there are no silly questions.