office-gobmx/vcl
2012-02-05 19:34:05 -06:00
..
android
aqua/source Simplify code by making getProcessComponentContext() implicit. 2012-01-31 17:26:57 +01:00
generic Fix for fdo43460 Part LVII getLength() to isEmpty() 2012-01-31 19:58:51 -02:00
headless vcl: Remove unused GetSymbolKeyName 2012-01-28 11:07:11 +01:00
inc Better optimal combobox width 2012-02-04 15:01:41 +01:00
ios/source vcl: Remove unused GetSymbolKeyName 2012-01-28 11:07:11 +01:00
null
prj
qa/complex
source Better optimal combobox width 2012-02-04 15:01:41 +01:00
test
unx Fix for fdo43460 Part LIX getLength() to isEmpty() 2012-02-02 19:53:07 -02:00
win/source Try to fix the MinGW build with a simple solution 2012-02-02 12:00:30 +01:00
workben
AllLangResTarget_vcl.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
Makefile switch to include-based build rather than sourced-based build 2012-02-05 19:34:05 -06:00
Module_vcl.mk
Package_afmhash.mk
Package_inc.mk
Package_kde4moc.mk
Package_osx.mk
README
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.