Miklos Vajna 5e43b9a9a0 SdrMarkView tiled rendering: fix unexpected empty graphic selection events
There are a number of mark views, but we're only interested in the one
that belongs to the editing window. Ignore the virtual device of the
slide sorter and everything else.

With this, a shape remains selected after resized, and can be resized
multiple times again properly.

Change-Id: I7f31c72567b9d01aaa75871ff5d1efdb3151a0e4
2015-03-30 09:23:48 +02:00
2015-03-30 09:23:46 +02:00
2015-03-29 20:56:05 +02:00
2015-03-27 10:51:08 +02:00
2015-03-30 04:30:48 +02:00
2015-02-16 13:15:31 +00:00
2015-03-29 14:48:05 +02:00
2015-03-25 20:42:37 +01:00
2015-03-25 21:19:59 +01:00
2015-03-27 10:51:08 +02:00
2015-03-29 20:36:55 +02:00
2015-03-29 21:28:27 +02:00
2015-01-13 10:19:47 +00:00
2015-03-27 10:51:08 +02:00
2015-03-25 21:12:16 +01:00
2015-03-09 22:04:31 +00:00
2015-03-26 00:00:27 +00:00
2015-03-29 20:36:55 +02:00
2015-03-24 11:13:19 +02:00
2015-03-30 04:34:34 +02:00
2015-03-25 20:42:37 +01:00
2015-02-20 18:27:21 +01:00
2015-02-18 21:59:02 +01:00
2015-03-29 23:03:26 +03:00
2015-03-25 20:42:37 +01:00
2015-03-29 22:26:59 +02:00
2015-03-23 23:54:01 +02:00
2015-03-02 11:04:37 +00:00
2015-03-27 23:13:59 +01:00
2015-03-25 21:12:16 +01:00
2015-03-29 23:51:03 +03:00
2015-03-25 20:42:37 +01:00
2015-03-04 13:07:40 +00:00
2015-03-19 22:09:16 +00:00
2015-03-09 22:04:31 +00:00
2015-03-03 22:07:23 +01:00
2015-03-27 10:51:08 +02:00
2015-03-09 22:04:31 +00:00
2015-03-01 00:50:51 +01:00
2015-03-26 09:22:45 +01:00
2015-02-17 04:43:39 +00:00
2015-03-22 21:21:57 -06:00

A quick overview of the LibreOffice code structure.

Overview

You can develop for LibreOffice in one of two ways, one recommended and one much less so. First the somewhat less recommended way: it is possible to use the SDK, for which you can read the API docs here. This re-uses the (extremely generic) APIs we provide for macro scripting in StarBasic.

The best way to add a generally useful feature to LibreOffice is to work on the code base however. Overall this way makes it easier to compile and build your code, it avoids any arbitrary limitations of our scripting APIs, and in general is far more simple and intuitive - if you are a reasonably able C++ programmer.

The important bits of code

Each module should have a README file inside it which has some degree of documentation for that module; patches are most welcome to improve those. We have those turned into a web page here:

http://docs.libreoffice.org/

However, there are two hundred modules, many of them of only peripheral interest for a specialist audience. So - where is the good stuff, the code that is most useful. Here is a quick overview of the most important ones:

Module Description
sal/ this provides a simple System Abstraction Layer
tools/ this provides basic internal types: 'Rectangle', 'Color' etc.
vcl/ this is the widget toolkit library and one rendering abstraction
svx/ graphics related helper code, including much of 'draw' / 'impress'
sfx2/ core framework: document model / load/save / signals for actions etc.
framework UNO wrappers around the core framework, responsible for building toolbars, menus, status bars, and the chrome around the document using widgets from VCL, and XML descriptions from */uiconfig/ files

Then applications

Module Description
desktop/ this is where the 'main' for the application lives, init / bootstrap. the name dates back to an ancient StarOffice that also drew a desktop
sw/ writer.
sc/ calc
sd/ draw / impress

There are several other libraries that are helpful from a graphical perspective:

Module Description
basebmp/ enables a VCL compatible rendering API to render to bitmaps, as used for LibreOffice Online, Android, iOS, etc.
basegfx/ algorithms and data-types for graphics as used in the canvas
canvas/ new (UNO) canvas rendering model with various backends
cppcanvas/ C++ helper classes for using the UNO canvas
drawinglayer/ code to render and manage document drawing shapes and break them down into primitives we can render more easily.

Finding out more

Beyond this, you can read the README files, send us patches, ask on the mailing list libreoffice@lists.freedesktop.org (no subscription required) or poke people on IRC #libreoffice-dev on irc.freenode.net - we're a friendly and generally helpful mob. We know the code can be hard to get into at first, and so there are no silly questions.

Description
LibreOffice mirror (not auto-updating).
Readme 1.9 GiB
Languages
C++ 82.4%
Java 5.3%
Rich Text Format 2.3%
PostScript 1.9%
Python 1.9%
Other 5.7%