office-gobmx/vcl
2012-01-19 19:15:08 +01:00
..
android android: tweak headless, expand docs, and start custom android backend 2012-01-18 17:07:55 +00:00
aqua/source vcl: introduce crystal clear separation between X11 Screens and DisplayScreens 2012-01-16 09:28:29 +00:00
generic remove unused methods 2012-01-17 17:01:26 +01:00
headless android: use config_host.mk for unit test goodness 2012-01-18 17:16:53 +00:00
inc WaE: fix misc. SvStream operator problems. 2012-01-19 10:00:32 +00:00
ios/source vcl: introduce crystal clear separation between X11 Screens and DisplayScreens 2012-01-16 09:28:29 +00:00
null
prj
qa/complex
source remove unused methods 2012-01-19 19:15:08 +01:00
test
unx fdo#37740 remove duplicate icons from soffice.bin/soffice.exe 2012-01-18 19:16:06 +01:00
win/source vcl: introduce crystal clear separation between X11 Screens and DisplayScreens 2012-01-16 09:28:29 +00:00
workben
AllLangResTarget_vcl.mk
Library_desktop_detector.mk
Library_vcl.mk android: tweak headless, expand docs, and start custom android backend 2012-01-18 17:07:55 +00:00
Library_vclplug_gen.mk
Library_vclplug_gtk.mk
Library_vclplug_gtk3.mk
Library_vclplug_kde.mk
Library_vclplug_kde4.mk
Library_vclplug_svp.mk
Makefile
Module_vcl.mk
Package_afmhash.mk
Package_inc.mk
Package_kde4moc.mk
Package_osx.mk
README vcl: expand the documentation in README 2012-01-17 18:03:51 +00:00
StaticLibrary_vclmain.mk
vcl.android.component
vcl.ios.component
vcl.macosx.component
vcl.unx.component
vcl.windows.component
WinResTarget_vcl.mk

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.