office-gobmx/vcl
Takeshi Abe c7af37db60 deleting NULL is safe
Change-Id: I3748d0034b2c8e9d9122ad2a9001763eb1265e1d
2013-03-25 10:54:05 +09:00
..
android
aqua/source blind try to fix MacOs building 2013-03-22 21:48:29 +01:00
coretext Re-work the vcl aspects of the iOS port 2013-03-21 13:28:32 +02:00
generic deleting NULL is safe 2013-03-25 10:54:05 +09:00
headless Re-work the vcl aspects of the iOS port 2013-03-21 13:28:32 +02:00
inc remove unused member maHelpFile and its getter/setter 2013-03-25 00:09:06 +00:00
ios Re-work the vcl aspects of the iOS port 2013-03-21 13:28:32 +02:00
null
qa fdo#61847 - add test file of png image with invalid final chunk length. 2013-03-22 11:39:31 +00:00
quartz Re-work the vcl aspects of the iOS port 2013-03-21 13:28:32 +02:00
source Fix wrong copy paste, should be UNDERLINE_DASHDOT and not UNDERLINE_DOTTED 2013-03-23 13:39:17 +01:00
test
uiconfig/ui
unx Fix force-choosing gtk3 backend. 2013-03-21 11:29:28 +01:00
win/source fdo#39468 Translate German comments - vcl/win/source/gdi/ 2013-03-23 21:26:13 +00:00
workben General comment cleanup for demo/test vcl apps 2013-03-23 09:11:56 +00:00
AllLangResTarget_vcl.mk
CppunitTest_vcl_filters_test.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 Re-work the vcl aspects of the iOS port 2013-03-21 13:28:32 +02: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
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).

source/
	+ the main cross-platform chunk of source

inc/
	+ cross-platform abstraction headers
	vcl/
		+ public headers ("public" to the rest of LibreOffice, that is)

generic/
	+ shared helper code for *some* of the backends, actually built into vcl.

headless/
	+ a backend renderer that draws to bitmaps

android/
	+ Android backend (work in progress, does work to some extent)

aqua/
	+ OS X backend

ios/
	+ iOS backend (work in progres, does not work, needs re-think
	and re-write)

win/
	+ Windows backend

unx/
	+ X11 backend 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 X11 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.

Note: references to "SV" in the code mean StarView, which was a
portable C++ class library for GUIs, with very old roots, that was
developed by StarDivision. Nowadays it is not used by anything except
LibreOffice (and OpenOffice).