office-gobmx/vcl
Noel Power 2bc2d09bba additional fix for fdo#51336 for radiobuttons
Change-Id: Ib35d27962b2c63221e1967886236547b3b1047d6
2012-07-06 14:38:51 +01:00
..
android
aqua/source vcl: CTRL_FIXEDBORDER is dead since ef877aab7e 2012-07-01 15:21:41 +04:00
generic Remove unused defines 2012-07-02 17:46:25 +02:00
headless Resolves: fdo#51693 use fontconfig font/glyph substitution in headless mode 2012-07-03 21:24:36 +01:00
inc additional fix for fdo#51336 for radiobuttons 2012-07-06 14:38:51 +01:00
ios/source vcl: CTRL_FIXEDBORDER is dead since ef877aab7e 2012-07-01 15:21:41 +04:00
null
prj
qa/complex re-base on ALv2 code. 2012-06-26 11:33:02 +01:00
source additional fix for fdo#51336 for radiobuttons 2012-07-06 14:38:51 +01:00
test some pesky XubStrings 2012-06-29 11:20:32 +01:00
unx typo in Norwegian translations of keyboard shortcuts (fdo#50415) 2012-07-02 15:58:14 +02:00
win/source vcl: CTRL_FIXEDBORDER is dead since ef877aab7e 2012-07-01 15:21:41 +04:00
workben some pesky XubStrings 2012-06-29 11:20:32 +01: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
Library_desktop_detector.mk targetted improvement of UNO API includes / usage 2012-07-02 14:43:34 +01:00
Library_vcl.mk targetted improvement of UNO API includes / usage 2012-07-02 14:43:34 +01:00
Library_vclplug_gen.mk targetted improvement of UNO API includes / usage 2012-07-02 14:43:34 +01:00
Library_vclplug_gtk.mk targetted improvement of UNO API includes / usage 2012-07-02 14:43:34 +01:00
Library_vclplug_gtk3.mk targetted improvement of UNO API includes / usage 2012-07-02 14:43:34 +01:00
Library_vclplug_kde.mk targetted improvement of UNO API includes / usage 2012-07-02 14:43:34 +01:00
Library_vclplug_kde4.mk targetted improvement of UNO API includes / usage 2012-07-02 14:43:34 +01:00
Library_vclplug_svp.mk targetted improvement of UNO API includes / usage 2012-07-02 14:43:34 +01:00
Library_vclplug_tde.mk targetted improvement of UNO API includes / usage 2012-07-02 14:43:34 +01:00
Makefile
Module_vcl.mk
Package_inc.mk
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
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.