office-gobmx/vcl
2012-04-06 20:03:42 +02:00
..
android Add debugging output (this file is experimental anyway) 2012-04-04 22:29:13 +03:00
aqua/source Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator 2012-04-06 14:30:05 +02:00
generic Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator 2012-04-06 15:07:41 +02:00
headless Remove SO52 strict compatibility stuff 2012-03-14 21:20:43 +00:00
inc Remove unused code (vcl) 2012-04-06 12:41:38 +02:00
ios/source WaE fixes to the mostly dummy iOS code 2012-04-04 01:05:44 +03:00
null
prj
qa/complex chmod -x 2012-03-21 13:00:45 +02:00
source Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator 2012-04-06 20:03:42 +02:00
test
unx Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator 2012-04-06 20:03:42 +02:00
win/source emf+ on win: implement bitmap creation from bitmapcanvas 2012-03-29 14:37:31 +02:00
workben Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator 2012-04-06 20:03:42 +02:00
AllLangResTarget_vcl.mk
CustomTarget_afm_hash.mk vcl: use CustomTarget makefiles 2012-03-31 22:49:30 +02:00
CustomTarget_kde4_moc.mk vcl: use CustomTarget makefiles 2012-03-31 22:49:30 +02:00
CustomTarget_kde_moc.mk vcl: use CustomTarget makefile for kde_moc 2012-04-03 02:09:09 +02:00
Executable_kdefilepicker.mk vcl: use CustomTarget makefile for kde_moc 2012-04-03 02:09:09 +02:00
Library_desktop_detector.mk
Library_vcl.mk vcl: use CustomTarget makefiles 2012-03-31 22:49:30 +02:00
Library_vclplug_gen.mk
Library_vclplug_gtk.mk
Library_vclplug_gtk3.mk
Library_vclplug_kde.mk KDE3 file picker moved from fpicker to vcl 2012-04-02 18:30:40 +02:00
Library_vclplug_kde4.mk KDE4 file picker moved from fpicker to vcl 2012-04-02 18:30:40 +02:00
Library_vclplug_svp.mk
Makefile
Module_vcl.mk vcl: use CustomTarget makefile for kde_moc 2012-04-03 02:09:09 +02:00
Package_inc.mk
README
StaticLibrary_headless.mk
StaticLibrary_vclmain.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, etc.) operating system abstraction, including basic rendering (e.g. the output device).

Welcome to the Visual Class Libraries (vcl) code

source/
	+ the main cross-platform chunk of source
inc/
	+ cross-platform abstraction headers / definition
	vcl/
		+ external headers
generic/
	+ shared helper code for backends,
	  actually built into vcl
headless/
	+ a backend renderer that draws to bitmaps
aqua/
	+ OS/X backend
ios/
	+ skeleton Android backend
win/
	+ windows backend
unx/
	+ unix specific platform backend code 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 X 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.