office-gobmx/vcl
2012-04-14 20:59:57 +04:00
..
android Drop unused EGL stuff 2012-04-11 19:10:44 +03:00
aqua/source
generic Some vcl cleaning 2012-04-14 07:45:27 +02:00
headless Remove using directives from svpgid.cxx... 2012-04-10 15:38:36 +02:00
inc Some vcl cleaning 2012-04-14 07:45:27 +02:00
ios/source
null
prj
qa/complex
source vcl: hack: pData->aSz.Width() is set only for MenuBar, use aOutSz.Width() 2012-04-14 20:59:56 +04:00
test
unx gtk3: add approved theme color fetch / selection. 2012-04-14 13:43:24 +02:00
win/source vcl: win: adjust some coordinates 2012-04-14 20:59:57 +04:00
workben
AllLangResTarget_vcl.mk add package deps for resources 2012-04-09 10:09:23 +02:00
CustomTarget_afm_hash.mk enforce only one possible use of gb_CustomTarget 2012-04-09 21:04:39 +02:00
CustomTarget_kde4_moc.mk enforce only one possible use of gb_CustomTarget 2012-04-09 21:04:39 +02:00
CustomTarget_kde_moc.mk enforce only one possible use of gb_CustomTarget 2012-04-09 21:04:39 +02:00
Executable_kdefilepicker.mk
Library_desktop_detector.mk
Library_vcl.mk Drop unused EGL stuff 2012-04-11 19:10:44 +03: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_inc.mk
README update vcl readme wrt. fpickers 2012-04-14 01:35:00 +02:00
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, 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.