office-gobmx/vcl
David Tardon 7d6eb69950 rename functions for consistency with the rest of gbuild
Change-Id: I572a8a6dc9da4f63b7c937748b3013bab60bb6bb
2012-05-29 07:33:59 +02:00
..
android android: fix mouse click positioning, add more keymappings, fix focus. 2012-05-28 14:51:19 +01:00
aqua/source Use normal font in tab headers 2012-05-27 04:27:32 -05:00
generic
headless
inc removed dead code 2012-05-29 00:11:30 +09:00
ios/source Use normal font in tab headers 2012-05-27 04:27:32 -05:00
null
prj break dep. cycle between vcl and fpicker 2012-05-27 12:36:45 +02:00
qa/complex
source valgrind: Related rhbz#820376 mnDestWidth used without initialization 2012-05-28 14:24:39 +01:00
test
unx break dep. cycle between vcl and fpicker 2012-05-27 12:36:45 +02:00
win/source
workben
AllLangResTarget_vcl.mk
CustomTarget_afm_hash.mk
CustomTarget_kde4_moc.mk
CustomTarget_kde_moc.mk
CustomTarget_tde_moc.mk
Executable_kdefilepicker.mk
Executable_tdefilepicker.mk
Library_desktop_detector.mk
Library_vcl.mk
Library_vclplug_gen.mk
Library_vclplug_gtk.mk
Library_vclplug_gtk3.mk
Library_vclplug_kde.mk simplify by using externals 2012-05-29 07:33:55 +02:00
Library_vclplug_kde4.mk set all kde4 libs in configure 2012-05-29 07:33:57 +02:00
Library_vclplug_svp.mk
Library_vclplug_tde.mk break dep. cycle between vcl and fpicker 2012-05-27 12:36:45 +02:00
Makefile
Module_vcl.mk
Package_inc.mk break dep. cycle between vcl and fpicker 2012-05-27 12:36:45 +02:00
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 rename functions for consistency with the rest of gbuild 2012-05-29 07:33:59 +02:00
Zip_osxres.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).

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.