office-gobmx/vcl
Luboš Luňák 43f3be84c2 include PCH headers for headers changes
Change-Id: Id94a4322428e27010757ef36b166f8b01697778f
2013-01-10 22:45:42 +01:00
..
android
aqua/source More fallout from the ImplFontAttributes privatisation 2013-01-08 11:45:20 +02:00
generic maName is now private, use GetFamilyName() 2013-01-10 12:24:44 +00:00
headless
inc include PCH headers for headers changes 2013-01-10 22:45:42 +01:00
ios/source I don't think InitSalMain() needs to do anything on iOS 2013-01-06 16:01:06 +02:00
null
prj
qa Make LO buildable again after the GraphicFilter move. 2013-01-04 22:02:51 +01:00
source export cleaned up dotted version in environment and GtkWindow user-data. 2013-01-10 17:39:04 +00:00
test
uiconfig/ui
unx export cleaned up dotted version in environment and GtkWindow user-data. 2013-01-10 17:39:04 +00:00
win/source second try with wcscpy() 2013-01-09 21:30:24 +01:00
workben
AllLangResTarget_vcl.mk
CppunitTest_vcl_filters_test.mk Make LO buildable again after the GraphicFilter move. 2013-01-04 22:02:51 +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
Library_desktop_detector.mk
Library_vcl.mk fdo#54165: Allow localized shortcut names on Windows 2013-01-08 13:04:31 +01: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
Library_vclplug_tde.mk
Makefile
Module_vcl.mk Make LO buildable again after the GraphicFilter move. 2013-01-04 22:02:51 +01:00
Package_inc.mk Make LO buildable again after the GraphicFilter move. 2013-01-04 22:02:51 +01:00
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.