office-gobmx/vcl
David Tardon 845456565d DO NOT use internal headers of jpeg
They ARE NOT available when using system jpeg.

Apart of that, I am not sure if it is all right to include parts of jpeg
directly into our code.

Change-Id: Ic19a22e73094d452ffd072b819020e4a46256406
2013-04-22 08:14:46 +02:00
..
android Small refactoring of the Android "desktop app" code, no functional change 2013-04-19 18:50:36 +03:00
aqua/source remove unused component_canUnload functions 2013-04-19 16:52:03 +02:00
coretext
generic Related: rhbz#761009 lp#766153 lp#892904 HandleFontOptions crash 2013-04-18 13:25:16 +01:00
headless
inc canBeRotated added to ask if native rotation can be performed. 2013-04-21 21:55:46 +02:00
ios Add pan gesture handling 2013-04-19 00:18:33 +03:00
null
qa
quartz
source DO NOT use internal headers of jpeg 2013-04-22 08:14:46 +02:00
test
uiconfig/ui
unx fdo#63154: Change Min/Max/Abs for std::min/max/abs 2013-04-20 11:09:54 +00:00
win/source fdo#63154: Change Min/Max/Abs for std::min/max/abs 2013-04-20 11:09:54 +00:00
workben
AllLangResTarget_vcl.mk
CppunitTest_vcl_filters_test.mk
CustomTarget_afm_hash.mk
CustomTarget_kde4_moc.mk
CustomTarget_kde_moc.mk
CustomTarget_tde_moc.mk
Executable_kdefilepicker.mk
Executable_tdefilepicker.mk
Executable_ui-previewer.mk
Library_desktop_detector.mk
Library_vcl.mk Exif reading/writing and Jpeg lossless transformations support. 2013-04-21 21:55:45 +02:00
Library_vclplug_gen.mk
Library_vclplug_gtk.mk move gtkframe to gtksalframe to match class name 2013-04-17 16:25:57 +02:00
Library_vclplug_gtk3.mk
Library_vclplug_kde.mk
Library_vclplug_kde4.mk
Library_vclplug_svp.mk
Library_vclplug_tde.mk
Makefile
Module_vcl.mk
Package_inc.mk Exif reading/writing and Jpeg lossless transformations support. 2013-04-21 21:55:45 +02:00
README
StaticLibrary_headless.mk
StaticLibrary_vclmain.mk
UIConfig_vcl.mk
vcl.android.component
vcl.headless.component
vcl.ios.component
vcl.macosx.component
vcl.unx.component
vcl.windows.component
WinResTarget_vcl.mk
Zip_osxres.mk

Visual Components Library is responsible for the widgets (windowing, buttons, controls, file-pickers etc.) operating system abstraction, including basic rendering (e.g. the output device).

VCL provides a graphical toolkit similar to gtk+, Qt, SWING etc.

source/
	+ the main cross-platform chunk of source

inc/
	+ cross-platform abstraction headers
	vcl/
		+ public headers ("public" to the rest of LibreOffice, that is)

generic/
	+ shared helper code for *some* of the backends, actually built into vcl.

headless/
	+ a backend renderer that draws to bitmaps

android/
	+ Android backend (work in progress, does work to some extent)

aqua/
	+ OS X backend

ios/
	+ iOS backend (work in progres, does not work, needs re-think
	and re-write)

win/
	+ Windows backend

unx/
	+ X11 backend and its sub-platforms

	plugadapt/
		+ pluggable framework to select correct unx backend
	gtk/
		+ GTK2 support
	gtk3/
		+ GTK3.2+ support
	kde/
		+ KDE3 support
	kde4/
		+ KDE4 support
	generic/
		+ raw X11 support


How the platform abstraction works

	+ InitVCL calls 'CreateSalInstance'
		+ ths is implemented by the compiled-in platform backend
		+ it stores various bits of global state in the
		  'SalData' (inc/saldatabasic.hxx) structure but:
	+ the SalInstance vtable is the primary outward facing gateway
	  API for platform backends
		+ It is a factory for:
		  SalFrames, SalVirtualDevices, SalPrinters,
		  Timers, the SolarMutexe, Drag&Drop and other
		  objects, as well as the primary event loop wrapper.

Note: references to "SV" in the code mean StarView, which was a
portable C++ class library for GUIs, with very old roots, that was
developed by StarDivision. Nowadays it is not used by anything except
LibreOffice (and OpenOffice).