summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/drawing/Shape.idl
AgeCommit message (Collapse)Author
2023-07-05tdf#138504 svx,etc.: decorative flag on SdrObject shapesMichael Stahl
* SdrObject new member m_IsDecorative * new Undo SdrUndoObjDecorative * surprising amount of changes in sw including additional SwUndoFlyDecorative * svx API SvxShape property "Decorative" * UI checkbox "Decorative" * ODF import/export as loext:decorative on style:graphic-properties * PDF/UA export: ViewObjectContcat tag shapes with this flag as Artifact Change-Id: I37f7a0597eab92c6c6aff94fad6c16c59b231c80 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154063 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-07-05offapi: add Title/Description properties from CWS aw038 (OOo 2.2)Michael Stahl
Change-Id: I2a851ef76b840d1fa5479dcb182a63590a2d4065 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154052 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2022-06-13Drop obsolete preprocessor directives from UNOIDL filesStephan Bergmann
...which were used by ildc, which is gone since a8485d558fab53291e2530fd9a1be581c1628deb "[API CHANGE] Remove deprecated idlc and regmerge from the SDK", and have always been ignored as legacy by its unoidl-write replacement. This change has been carried out (making use of GNU sed extensions) with > for i in $(git ls-files \*.idl); do sed -i -z -E -e 's/\n\n((#[^\n]*\n)+\n)*(#[^\n]*\n)+\n?/\n\n/g' -e 's/\n(#[^\n]*\n)+/\n/g' "$i"; done && git checkout extensions/source/activex/so_activex.idl odk/examples/OLE/activex/so_activex.idl which apparently happened to do the work. (The final two files are not UNOIDL source files.) Change-Id: Ic9369e05d46e8f7e8a304ab01740b171b92335cd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135683 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2021-09-17tdf#143550 - use the term "gluepoints" consistentlyrocso
Change-Id: Id10dc2ef13f54a148a800003cc4bd88ca1a0056f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122233 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2014-02-24offapi: document the 4 new properties which are no longer read-onlyMiklos Vajna
Change-Id: Ia2844af91159bf4a512fcb70883fc6a1eddfce35
2013-09-05svx: new InteropGrabBag UNO prop in Shape serviceAndres Gomez
Added the new InteropGrabBag property to the Shape service and modified the JUnit UNO unit tests for it. Added specific implementation in the svx module for the SvxShape class. This new property is intended by now for its usage on preserving OOX's Smart-Art but it could also be used for preserving other attributes for interoperability among document formats. Change-Id: Idc7a8e91592399ff05effd4da6eaa2935f8f4d42 Reviewed-on: https://gerrit.libreoffice.org/5769 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
2013-06-04*api: convert <TRUE/> <FALSE/> <VOID/> <NULL/>Michael Stahl
sed -i 's,<\(TRUE\|FALSE\|VOID\|NULL\)/>,`\1`,g' Change-Id: Ia4df97ca809b00993530d67203bbe4ba7a072201
2013-06-04*api: replace <member>Foo</member>Michael Stahl
These member variables need a # prefix. sed -i "s,<member>\([^<:]\+[^)]\)</member>,#\1,g" Change-Id: I721b90f4edae32b5a362479bdbd60423f6427364
2013-06-04*api: convert <member>method</member> to method()Michael Stahl
Doxygen will only recognize a un-qualified method name as such if it is followed by "()". sed -i "s,<member>\([a-z][^<]\+[^)]\)</member>,\1(),g" Change-Id: I69bc17849e76f3a3d91c6daf0f1be8168a83cfc5
2013-06-04*api: convert <type scope="bar">Foo</type>Michael Stahl
This looks much better now. sed -i 's,<type scope="\([^"]*\)">\([^<]\+\)</type>,\1::\2,g' Change-Id: I94cd0f93afa89855b62dadeb229d2b2e1775cd80
2013-06-04*api: convert <type>Foo</type>Michael Stahl
Doxygen does not know type element and will recognize strings that contain capital letter (all API types do) automatically as type. This patch removes 15k doxygen warnings. git ls-files | grep \\.idl | xargs sed -i "s,<type>\([^<]\+\)</type>,\1," Change-Id: I45c07cf0b115d5fb5353f4aa9719839615ea1150
2012-09-27re-base on ALv2 code. Includes:Michael Meeks
linecap: Reintegrating finished LineCap feature Work contributed by Regina Henschel http://svn.apache.org/viewvc?view=revision&revision=1232507 i118815 - Deprecate service due to removed implementation Patch contributed by Ariel Constenla-Haile http://svn.apache.org/viewvc?view=revision&revision=1233320 i118814 - Allow set timeout in Mail API Patch contributed by Ariel Constenla-Haile http://svn.apache.org/viewvc?view=revision&revision=1235679 included in the Apache baseline: dr80: #i117511# remove some assertions in xlsx/xlsb import filters Patch contributed by Daniel Rentz
2012-08-12Remove comment art from offapi and udkapiJean-Tiare LE BIGOT
I used this "one-liner" to detect comment lines containing only spaces and '=' or '-' $ find . -name "*.*" -exec sed -i '/^\s*\/\/\s*[-=]*\s*$/d' {} \; Change-Id: Iac589765c8c2e7c3ad9c487d57e48b4fd4439f07
2012-01-05add mode-lines to .idl filesCaolán McNamara
2011-04-02Strip include guards in idl filesJulien Nabet
2011-01-25Some fixes to documentation (part 1)Aurimas Fišeras
Fixes many spelling errors (checked with en_US spell checker). Unifies spelling of some common words. Replaces single quotes ('') with double quotes (""). Fixes several other errors.
2010-10-13initial commit for vba blob ( not including container_control stuff )Noel Power
2010-03-04#i161701# fixing documentation issueChristian Lippka
2010-03-02added Visible property for shapesChristian Lippka
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2008-04-10INTEGRATION: CWS changefileheader (1.19.156); FILE MERGEDRüdiger Timm
2008/03/31 15:59:39 rt 1.19.156.1: #i87441# Change license header to LPGL v3.
2007-08-28INTEGRATION: CWS navorder (1.18.316); FILE MERGEDVladimir Glazounov
2007/06/21 13:40:16 cl 1.18.316.1: #i68097# added navigation order to shapes
2005-09-07INTEGRATION: CWS ooo19126 (1.17.52); FILE MERGEDRüdiger Timm
2005/09/05 12:18:21 rt 1.17.52.1: #i54170# Change license header: remove SISSL
2005-03-23INTEGRATION: CWS calcuno01 (1.15.206); FILE MERGEDVladimir Glazounov
2004/10/13 16:12:07 sab 1.15.206.3: RESYNC: (1.15-1.16); FILE MERGED 2004/01/06 11:39:17 sab 1.15.206.2: #i22706#; add new interface XTolerantMultiPropertySet 2004/01/05 16:02:58 sab 1.15.206.1: #i22706#; add new interface XTolerantMultiPropertySet
2004-06-03INTEGRATION: CWS sb18 (1.15.328); FILE MERGEDOliver Bolte
2004/05/21 14:58:09 sb 1.15.328.1: #i21150# Added published flag.
2003-03-26MWS_SRX644: migrate branch mws_srx644 -> HEADJens-Heiner Rechtien
2003-01-16#55857# broken linksMichael Hönnig
2002-10-02*** empty log message ***Michael Hönnig
2001-10-16#91486# added xml alien attributesChristian Lippka
2001-08-24#88186# updated documentation for connectorsChristian Lippka
2001-08-15#86668# made layer properties non-readonlyChristian Lippka
2001-06-07#84377# ZOrder is now optional (charts do not support this property)Björn Milcke
2001-04-23modified spellingarellano
2001-03-06cleanup of shape servicesChristian Lippka
2000-12-21@see interface/service/... ident -> @see ident - for new docu generatorMichael Hönnig
2000-12-19documentations syntax errors fixedMichael Hönnig
2000-11-23#80679# added ZOrder property for shapesChristian Lippka
2000-11-08moved from apiMichael Hönnig
2000-11-06moved from apiMichael Hönnig
2000-11-06moved from apiMichael Hönnig