office-gobmx/vcl
Matteo Casalin 53ad646f54 Enforce use of accessors on gen.hxx structures
Change-Id: Icd1b2937fdeaba6de1877258731f53ddf996002e
Reviewed-on: https://gerrit.libreoffice.org/936
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
2012-11-20 19:32:43 +00:00
..
android
aqua/source Enforce use of accessors on gen.hxx structures 2012-11-20 19:32:43 +00:00
generic use LanguageTag 2012-11-16 17:47:37 +01:00
headless
inc Bin pointless _SOLAR__PRIVATE which was always 1 anyway 2012-11-20 15:01:31 +02:00
ios/source Enforce use of accessors on gen.hxx structures 2012-11-20 19:32:43 +00:00
null
prj
qa fdo#51304: Remove @author annotation 2012-11-20 05:15:45 +00:00
source Enforce use of accessors on gen.hxx structures 2012-11-20 19:32:43 +00:00
test
uiconfig/ui
unx SalColormap: -Werror=conversion-null 2012-11-19 12:41:51 +01:00
win/source Enforce use of accessors on gen.hxx structures 2012-11-20 19:32:43 +00:00
workben Enforce use of accessors on gen.hxx structures 2012-11-20 19:32:43 +00:00
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
Executable_ui-previewer.mk
Library_desktop_detector.mk
Library_vcl.mk only enable unity integration with enabled dbus and gio 2012-11-14 13:53:01 +01:00
Library_vclplug_gen.mk
Library_vclplug_gtk.mk Trying to avoid dbus stuff when ENABLE_DBUS!=TRUE 2012-11-14 23:38:50 +01:00
Library_vclplug_gtk3.mk Added files to implement HUD awareness protocol support. 2012-11-14 13:52:59 +01:00
Library_vclplug_kde.mk
Library_vclplug_kde4.mk
Library_vclplug_svp.mk
Library_vclplug_tde.mk
Makefile
Module_vcl.mk
Package_inc.mk
README
StaticLibrary_headless.mk
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

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.