office-gobmx/vcl
Stephan Bergmann eb7ccf863c Remove unused DeInitSalMain
Change-Id: I8fd733fe6535cc4f9f299f53adc1821ce344a85c
2013-01-30 13:50:25 +01:00
..
android Remove unused DeInitSalMain 2013-01-30 13:50:25 +01:00
aqua/source Remove unused DeInitSalMain 2013-01-30 13:50:25 +01:00
coretext Cosmetics and more informative SAL_INFO output from InitGIA() 2013-01-30 09:49:15 +02:00
generic
headless Remove unused DeInitSalMain 2013-01-30 13:50:25 +01:00
inc Remove unused DeInitSalMain 2013-01-30 13:50:25 +01:00
ios/source Remove unused DeInitSalMain 2013-01-30 13:50:25 +01:00
null
prj
qa
quartz
source Remove unused DeInitSalMain 2013-01-30 13:50:25 +01:00
test
uiconfig/ui
unx Remove unused DeInitSalMain 2013-01-30 13:50:25 +01:00
win/source Remove unused DeInitSalMain 2013-01-30 13:50:25 +01:00
workben
AllLangResTarget_vcl.mk
CppunitTest_vcl_filters_test.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
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 gbuild: remove various pointless calls that don't add anything 2013-01-26 22:20:07 +01:00
Library_desktop_detector.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
Library_vcl.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
Library_vclplug_gen.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
Library_vclplug_gtk.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
Library_vclplug_gtk3.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
Library_vclplug_kde.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
Library_vclplug_kde4.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
Library_vclplug_svp.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
Library_vclplug_tde.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
Makefile
Module_vcl.mk
Package_inc.mk
README
StaticLibrary_headless.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
StaticLibrary_vclmain.mk
UI_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 gbuild: fix silly "expandtabs" in makefile VIM modelines 2013-01-26 22:20:07 +01:00

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

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.