summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/drawing
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-27 23:14:19 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:01 +0200
commit4bb43e1612ea3737fe53bb28ac830810b0a6a028 (patch)
treebd4949cc9c236626941b7995fb390a7090db37b9 /offapi/com/sun/star/drawing
parentea71a05840f53158f669182c6e93de9f8348bbe5 (diff)
*api: replace <member>Foo</member>
These member variables need a # prefix. sed -i "s,<member>\([^<:]\+[^)]\)</member>,#\1,g" Change-Id: I721b90f4edae32b5a362479bdbd60423f6427364
Diffstat (limited to 'offapi/com/sun/star/drawing')
-rw-r--r--offapi/com/sun/star/drawing/FillProperties.idl38
-rw-r--r--offapi/com/sun/star/drawing/Shape.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/ConfigurationChangeEvent.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/TabBarButton.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationController.idl16
5 files changed, 31 insertions, 31 deletions
diff --git a/offapi/com/sun/star/drawing/FillProperties.idl b/offapi/com/sun/star/drawing/FillProperties.idl
index ee29072c73ac..a9470fe58563 100644
--- a/offapi/com/sun/star/drawing/FillProperties.idl
+++ b/offapi/com/sun/star/drawing/FillProperties.idl
@@ -40,7 +40,7 @@ published service FillProperties
*/
[property] FillStyle FillStyle;
- /** If the property <member>FillStyle</member> is set to <const>
+ /** If the property #FillStyle is set to <const>
FillStyle::SOLID</const>, this is the color used.
*/
[property] com::sun::star::util::Color FillColor;
@@ -64,24 +64,24 @@ published service FillProperties
*/
[optional, property] com::sun::star::awt::Gradient FillTransparenceGradient;
- /** If the property <member>FillStyle</member> is set to <const>
+ /** If the property #FillStyle is set to <const>
FillStyle::GRADIENT</const>, this is the name of the used fill
gradient style.
*/
[property] string FillGradientName;
- /** If the property <member>FillStyle</member> is set to <const>
+ /** If the property #FillStyle is set to <const>
FillStyle::GRADIENT</const>, this describes the gradient used.
*/
[optional, property] com::sun::star::awt::Gradient FillGradient;
- /** If the property <member>FillStyle</member> is set to <const>
+ /** If the property #FillStyle is set to <const>
FillStyle::HATCH</const>, this is the name of the used fill hatch
style.
*/
[property] string FillHatchName;
- /** If the property <member>FillStyle</member> is set to <const>
+ /** If the property #FillStyle is set to <const>
FillStyle::HATCH</const>, this describes the hatch used.
*/
[optional, property] Hatch FillHatch;
@@ -91,18 +91,18 @@ published service FillProperties
*/
[property] boolean FillBackground;
- /** If the property <member>FillStyle</member> is set to <const>
+ /** If the property #FillStyle is set to <const>
FillStyle::BITMAP</const>, this is the name of the used fill bitmap
style.
*/
[property] string FillBitmapName;
- /** If the property <member>FillStyle</member> is set to <const>
+ /** If the property #FillStyle is set to <const>
FillStyle::BITMAP</const>, this is the bitmap used.
*/
[optional, property] com::sun::star::awt::XBitmap FillBitmap;
- /** If the property <member>FillStyle</member> is set to <const>
+ /** If the property #FillStyle is set to <const>
FillStyle::BITMAP</const>, this is a URL to the bitmap used.
*/
[optional, property] string FillBitmapURL;
@@ -136,8 +136,8 @@ published service FillProperties
/** specifies if the size is given in percentage or as an absolute value.
- <p>If this is <TRUE/>, the properties <member>FillBitmapSizeX</member>
- and <member>FillBitmapSizeY</member> contain the size of the tile in
+ <p>If this is <TRUE/>, the properties #FillBitmapSizeX
+ and #FillBitmapSizeY contain the size of the tile in
percent of the size of the original bitmap. If this is <FALSE/>, the
size of the tile is specified with 1/100th mm.
*/
@@ -145,14 +145,14 @@ published service FillProperties
/** This is the width of the tile for filling.
- <p>Depending on the property <member>FillBitmapLogicalSize</member>,
+ <p>Depending on the property #FillBitmapLogicalSize,
this is either relative or absolute.
*/
[property] long FillBitmapSizeX;
/** This is the height of the tile for filling.
- <p>Depending on the property <member>FillBitmapLogicalSize</member>,
+ <p>Depending on the property #FillBitmapLogicalSize,
this is either relative or absolute.
*/
[property] long FillBitmapSizeY;
@@ -160,7 +160,7 @@ published service FillProperties
/** this enum selects how a area is filled with a single bitmap.
<p>This property corresponds to the properties <member>
- FillBitmapStretch</member> and <member>FillBitmapTile</member>.</p>
+ FillBitmapStretch</member> and #FillBitmapTile.</p>
<p>If set to <const>BitmapMode::REPEAT</const>, the property
FillBitmapStretch is set to <FALSE/>, and the property FillBitmapTile
@@ -178,34 +178,34 @@ published service FillProperties
/** if set, the fill bitmap is stretched to fill the area of the shape.
<p>This property should not be used anymore and is included here for
- completeness. The <member>FillBitmapMode</member> property can be used
+ completeness. The #FillBitmapMode property can be used
instead to set all supported bitmap modes.</p>
<p>If set to <TRUE/>, the value of the FillBitmapMode property changes
to <const>BitmapMode::STRETCH</const>. BUT: behavior is undefined, if
- the property <member>FillBitmapTile</member> is <TRUE/> too.</p>
+ the property #FillBitmapTile is <TRUE/> too.</p>
<p>If set to <FALSE/>, the value of the FillBitmapMode property
changes to <const>BitmapMode::REPEAT</const> or <const>
BitmapMode::NO_REPEAT</const>, depending on the current value of the
- <member>FillBitmapTile</member> property.</p>
+ #FillBitmapTile property.</p>
*/
[optional, property] boolean FillBitmapStretch;
/** if set, the fill bitmap is repeated to fill the area of the shape.
<p>This property should not be used anymore and is included here for
- completeness. The <member>FillBitmapMode</member> property can be used
+ completeness. The #FillBitmapMode property can be used
instead to set all supported bitmap modes.</p>
<p>If set to <TRUE/>, the value of the FillBitmapMode property changes
to <const>BitmapMode::REPEAT</const>. BUT: behavior is undefined, if
- the property <member>FillBitmapStretch</member> is <TRUE/> too.</p>
+ the property #FillBitmapStretch is <TRUE/> too.</p>
<p>If set to <FALSE/>, the value of the FillBitmapMode property
changes to <const>BitmapMode::STRETCH</const> or <const>
BitmapMode::NO_REPEAT</const>, depending on the current value of the
- <member>FillBitmapStretch</member> property.</p>
+ #FillBitmapStretch property.</p>
*/
[optional, property] boolean FillBitmapTile;
diff --git a/offapi/com/sun/star/drawing/Shape.idl b/offapi/com/sun/star/drawing/Shape.idl
index 91c296827e13..4d45ed58a255 100644
--- a/offapi/com/sun/star/drawing/Shape.idl
+++ b/offapi/com/sun/star/drawing/Shape.idl
@@ -94,7 +94,7 @@ published service Shape
/** If this is <FALSE/>, the Shape is not visible
on screen outputs. Please note that the Shape may still
- be visible when printed, see <member>Printable</member>.
+ be visible when printed, see #Printable.
*/
[optional, property] boolean Visible;
diff --git a/offapi/com/sun/star/drawing/framework/ConfigurationChangeEvent.idl b/offapi/com/sun/star/drawing/framework/ConfigurationChangeEvent.idl
index f32a5f3cc030..db5008de129e 100644
--- a/offapi/com/sun/star/drawing/framework/ConfigurationChangeEvent.idl
+++ b/offapi/com/sun/star/drawing/framework/ConfigurationChangeEvent.idl
@@ -65,7 +65,7 @@ struct ConfigurationChangeEvent
*/
com::sun::star::uno::XInterface ResourceObject;
- /** Each listener is called with exactly the <member>UserData</member>
+ /** Each listener is called with exactly the #UserData
that was given when the listener was registered.
*/
any UserData;
diff --git a/offapi/com/sun/star/drawing/framework/TabBarButton.idl b/offapi/com/sun/star/drawing/framework/TabBarButton.idl
index 769296496737..c9565ca1f72b 100644
--- a/offapi/com/sun/star/drawing/framework/TabBarButton.idl
+++ b/offapi/com/sun/star/drawing/framework/TabBarButton.idl
@@ -27,9 +27,9 @@ interface XResourceId;
/** Descriptor of a tab bar button. Tab bar buttons are typically used to
offer the user the choice between different views to be displayed in
one pane.
- <p>For identification only the <member>ResourceId</member> is used, so for
+ <p>For identification only the #ResourceId is used, so for
some methods of the XTabBar interface only the
- <member>ResourceId</member> member is evaluated.</p>
+ #ResourceId member is evaluated.</p>
*/
struct TabBarButton
{
diff --git a/offapi/com/sun/star/drawing/framework/XConfigurationController.idl b/offapi/com/sun/star/drawing/framework/XConfigurationController.idl
index edd1efbd452b..46176fb622b0 100644
--- a/offapi/com/sun/star/drawing/framework/XConfigurationController.idl
+++ b/offapi/com/sun/star/drawing/framework/XConfigurationController.idl
@@ -103,38 +103,38 @@ interface XResource;
configuration change request is executed, not when the
<member>requestResourceActivation()</member> call is made.</p>
<p>The <member scope="ConfigurationChangeEvent">ResourceId</member> member is set to the requested
- resource. The <member>ResourceObject</member> member is not
+ resource. The #ResourceObject member is not
set.</p></li>
<li><const>ResourceDeactivationRequested</const> is sent when the
deactivation of a resource has been requested and the resource is active
in the requested configuration. The event is sent when the
configuration change request is executed that is created when for
example <member>requestResourceDeactivation()</member> is called.</p>
- <p>The <member>ResourceId</member> member is set to the requested
- resource. The <member>ResourceObject</member> member is not
+ <p>The #ResourceId member is set to the requested
+ resource. The #ResourceObject member is not
set.</p></li>
<li><const>ConfigurationUpdateStart</const> is sent before the update of
the current configuration starts.</p>
<p>The requested configuration is available in the <member
scope="ConfigurationChangeEvent">Configuration</member> member. The
- <member>ResourceId</member> and <member>ResourceObject</member> members
+ #ResourceId and #ResourceObject members
are not set.</p></li>
<li><const>ConfigurationUpdateEnd</const> is sent after the update of
the current configuration ends.</p>
<p>The requested configuration is
available in the <member scope="ConfigurationChangeEvent"
- >Configuration</member> member. The <member>ResourceId</member> and
- <member>ResourceObject</member> members are not set.</p></li>
+ >Configuration</member> member. The #ResourceId and
+ #ResourceObject members are not set.</p></li>
<li><const>ResourceActivation</const> is sent when a resource is
activated, i.e. when a new object of a resource is created (or taken
from a cash).</p>
- <p>The <member>ResourceId</member> and <member>ResourceObject</member>
+ <p>The #ResourceId and #ResourceObject
members are set to the XResourceId and object reference of
the activated resource.</p></li>
<li><const>ResourceDeactivation</const> is sent when a resource is
deactivated, i.e. when an object that previously was part of the
configuration is removed from the configuration.</p>
- <p>The <member>ResourceId</member> and <member>ResourceObject</member>
+ <p>The #ResourceId and #ResourceObject
members are set to XResourceId and object reference of the
deactivated resource.</p></li>
</ul></p>