office-gobmx/vcl
Thorsten Behrens c2530b0231 Band-aid fix for bnc#795857 and the pdf export black background.
Problem is the general un-awareness of the code base for inline
alpha. Needs larger rework eventually.

Change-Id: I01430d9087f98615819f0a7085b93f1c318e8b0b
2013-05-31 09:36:28 +02:00
..
android
aqua/source Resolves: #i120481# Add registered transferable flavor... 2013-05-24 14:58:21 +01:00
coretext
generic Make use of IsStarSymbol() 2013-05-30 15:54:47 +00:00
headless
inc fix emf transparency handling (bnc#820385) 2013-05-28 14:11:24 +02:00
ios
null
qa
quartz Newer boost is more picky with null pointers 2013-05-24 12:40:46 +03:00
source Band-aid fix for bnc#795857 and the pdf export black background. 2013-05-31 09:36:28 +02:00
test
uiconfig/ui
unx Source files shouldn't have executable bit set. 2013-05-28 12:09:27 +00:00
win/source
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
Library_vclplug_gen.mk
Library_vclplug_gtk.mk
Library_vclplug_gtk3.mk
Library_vclplug_kde.mk
Library_vclplug_kde4.mk
Library_vclplug_svp.mk stop delivering freetype headers 2013-05-24 16:52:01 +02:00
Library_vclplug_tde.mk
Makefile
Module_vcl.mk
Package_osxres.mk
README
StaticLibrary_headless.mk add missing modelines 2013-05-24 16:52:01 +02:00
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

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).