Kaydet (Commit) 48661084 authored tarafından Michael Stahl's avatar Michael Stahl

*api: fix unterminated tags

Change-Id: Iff23e173e4726682c719c5de303fded0bc671bd3
üst 44404b7a
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
RepeatTiming RepeatTiming
<b> <b>
The deprecated <code>repeat</code> is not supported. The deprecated <code>repeat</code> is not supported.
</b>
</li> </li>
<li>RestartDefault</li> <li>RestartDefault</li>
<li>RestartTiming</li> <li>RestartTiming</li>
......
...@@ -58,7 +58,7 @@ interface XPackageRegistry ...@@ -58,7 +58,7 @@ interface XPackageRegistry
The implementation must ensure that there is only one instance of The implementation must ensure that there is only one instance of
XPackage for the same <code>url</code> at any XPackage for the same <code>url</code> at any
time. Therefore calling bindPackage() again with the same time. Therefore calling bindPackage() again with the same
<code>url</code> but different <code>mediaType<code> (the exception is, <code>url</code> but different <code>mediaType</code> (the exception is,
if previously an empty string was provided to cause the determination if previously an empty string was provided to cause the determination
of the media type) or <code>removed</code> parameters will cause an of the media type) or <code>removed</code> parameters will cause an
exception. An com::sun::star::lang::IllegalArgumentException will be exception. An com::sun::star::lang::IllegalArgumentException will be
......
...@@ -64,7 +64,7 @@ interface XPrimitive2D : ::com::sun::star::uno::XInterface ...@@ -64,7 +64,7 @@ interface XPrimitive2D : ::com::sun::star::uno::XInterface
/** Retrieve bound rect of primitive /** Retrieve bound rect of primitive
This method calculates the actual bound rect of the area in This method calculates the actual bound rect of the area in
<em>world coordinates<em>. Note that for view-dependent primitives, <em>world coordinates</em>. Note that for view-dependent primitives,
the necessary pixel adjustments are taken into account. For that reason the necessary pixel adjustments are taken into account. For that reason
the ViewParameters need to be given. the ViewParameters need to be given.
......
...@@ -51,7 +51,7 @@ interface XPrimitive3D : ::com::sun::star::uno::XInterface ...@@ -51,7 +51,7 @@ interface XPrimitive3D : ::com::sun::star::uno::XInterface
/** Retrieve bound rect of primitive /** Retrieve bound rect of primitive
This method calculates the actual bound rect of the area in This method calculates the actual bound rect of the area in
<em>world coordinates<em>. Note that for view-dependent primitives, <em>world coordinates</em>. Note that for view-dependent primitives,
the necessary pixel adjustments are taken into account. For that reason the necessary pixel adjustments are taken into account. For that reason
the ViewParameters need to be given. the ViewParameters need to be given.
......
...@@ -77,7 +77,8 @@ constants PropertyControlType ...@@ -77,7 +77,8 @@ constants PropertyControlType
/** denotes a control which allows the user to enter a list of single-line strings /** denotes a control which allows the user to enter a list of single-line strings
<p>Controls of type #StringListField exchange their values as <code>sequence&lt; string &gt;<code>.</p> <p>Controls of type #StringListField exchange their values as
<code>sequence&lt; string &gt;</code>.</p>
*/ */
const short StringListField = 6; const short StringListField = 6;
......
...@@ -184,27 +184,26 @@ interface XGraphicDevice : ::com::sun::star::uno::XInterface ...@@ -184,27 +184,26 @@ interface XGraphicDevice : ::com::sun::star::uno::XInterface
internally generate optimized parametric polygons, which can internally generate optimized parametric polygons, which can
be used more directly for e.g. texturing operations. be used more directly for e.g. texturing operations.
<pre>
Available services (all canvas implementations should provide Available services (all canvas implementations should provide
this minimal set, though are free to add more; just check the this minimal set, though are free to add more; just check the
getAvailableServiceNames() on the returned interface): getAvailableServiceNames() on the returned interface):
- Gradients - all gradients need to support two construction - Gradients - all gradients need to support two construction
parameters, "Colors" being a `sequence<Color>` parameters, "Colors" being a `sequence&lt; Color &gt;`
and "Stops" being a `sequence<double>`. Both must and "Stops" being a `sequence&lt; double &gt;`. Both must
have the same length, and at least two elements. See have the same length, and at least two elements. See
http://www.w3.org/TR/SVG11/pservers.html#GradientStops for http://www.w3.org/TR/SVG11/pservers.html#GradientStops for
the semantics of gradient stops and colors. the semantics of gradient stops and colors.
Required gradient services: Required gradient services:
* "LinearGradient" - the gradient varies linearly between - "LinearGradient" - the gradient varies linearly between
the given colors. without coordinate system the given colors. without coordinate system
transformation, the color interpolation happens in transformation, the color interpolation happens in
increasing x direction, and is constant in y increasing x direction, and is constant in y
direction. Equivalent to svg linear gradient direction. Equivalent to svg linear gradient
http://www.w3.org/TR/SVG11/pservers.html#LinearGradients http://www.w3.org/TR/SVG11/pservers.html#LinearGradients
* "EllipticalGradient" - this gradient has zeroth color - "EllipticalGradient" - this gradient has zeroth color
index in the middle, and varies linearly between center index in the middle, and varies linearly between center
and final color. The services takes an additional and final color. The services takes an additional
parameter named "AspectRatio" of double parameter named "AspectRatio" of double
...@@ -218,7 +217,7 @@ interface XGraphicDevice : ::com::sun::star::uno::XInterface ...@@ -218,7 +217,7 @@ interface XGraphicDevice : ::com::sun::star::uno::XInterface
gradient gradient
http://www.w3.org/TR/SVG11/pservers.html#RadialGradients http://www.w3.org/TR/SVG11/pservers.html#RadialGradients
* "RectangularGradient" - this gradient has zeroth color - "RectangularGradient" - this gradient has zeroth color
index in the middle, and varies linearly between center index in the middle, and varies linearly between center
and final color via rectangular boxes and final color via rectangular boxes
around the center point. The services takes an additional around the center point. The services takes an additional
...@@ -232,16 +231,15 @@ interface XGraphicDevice : ::com::sun::star::uno::XInterface ...@@ -232,16 +231,15 @@ interface XGraphicDevice : ::com::sun::star::uno::XInterface
- Hatch patterns - Required hatch services: - Hatch patterns - Required hatch services:
* "VerticalLineHatch" - this hatching consists of vertical lines - "VerticalLineHatch" - this hatching consists of vertical lines
* "OrthogonalLinesHatch" - this hatching consists of - "OrthogonalLinesHatch" - this hatching consists of
crossing vertical and horizontal lines crossing vertical and horizontal lines
* "ThreeCrossingLinesHatch" - this hatching consists of - "ThreeCrossingLinesHatch" - this hatching consists of
vertical and horizontal lines plus diagonal lines from vertical and horizontal lines plus diagonal lines from
left, top to bottom, right. left, top to bottom, right.
* "FourCrossingLinesHatch" - this hatching consists of - "FourCrossingLinesHatch" - this hatching consists of
vertical and horizontal lines plus diagonal lines in both vertical and horizontal lines plus diagonal lines in both
directions. directions.
</pre>
*/ */
com::sun::star::lang::XMultiServiceFactory getParametricPolyPolygonFactory(); com::sun::star::lang::XMultiServiceFactory getParametricPolyPolygonFactory();
......
...@@ -160,7 +160,7 @@ published interface XParametersSupplier; ...@@ -160,7 +160,7 @@ published interface XParametersSupplier;
<code>relative</code>, <code>previous</code>, <code>beforeFirst</code>, <code>afterLast</code></dt> <code>relative</code>, <code>previous</code>, <code>beforeFirst</code>, <code>afterLast</code></dt>
<dd>will let the deleted row vanish from the result set. As a consequence, the #RowCount <dd>will let the deleted row vanish from the result set. As a consequence, the #RowCount
will decrease when you do such a move operation after deleting a row.<br/> will decrease when you do such a move operation after deleting a row.<br/>
A special case to note is the <code>next<code> call: When you delete row, say, A special case to note is the <code>next</code> call: When you delete row, say,
<code>15</code>, followed by <code>next</code>, then your RowSet afterwards <code>15</code>, followed by <code>next</code>, then your RowSet afterwards
still is on row 15, since the deleted row vanished with the move operation.</dd> still is on row 15, since the deleted row vanished with the move operation.</dd>
......
...@@ -67,7 +67,7 @@ service ModuleWindowStateConfiguration ...@@ -67,7 +67,7 @@ service ModuleWindowStateConfiguration
floating size in pixel of the window.</li> floating size in pixel of the window.</li>
<li><b>Style</b><br>a long which specifies the style of the window. A toolbar support the <li><b>Style</b><br>a long which specifies the style of the window. A toolbar support the
following values: 0 = icons, 1 = text, 2 = text+icons.</li> following values: 0 = icons, 1 = text, 2 = text+icons.</li>
<li><b>UIName</br><br>a localized string which specifies the default window title.</li> <li><b>UIName</b><br>a localized string which specifies the default window title.</li>
</ul> </ul>
The key to a user interface element is the resource URL which has The key to a user interface element is the resource URL which has
the following syntax "private:resource/$type/$name". For example "private:resource/toolbar/standardbar" the following syntax "private:resource/$type/$name". For example "private:resource/toolbar/standardbar"
......
...@@ -71,9 +71,9 @@ interface XUIConfigurationManager : ::com::sun::star::uno::XInterface ...@@ -71,9 +71,9 @@ interface XUIConfigurationManager : ::com::sun::star::uno::XInterface
com::sun::star::beans::PropertyValue entries com::sun::star::beans::PropertyValue entries
are defined inside the sequence for every user interface element. are defined inside the sequence for every user interface element.
<ul> <ul>
<li><b>ResourceURL<b/>specifies the unique resource URL for <li><b>ResourceURL</b>specifies the unique resource URL for
the user interface element.</li> the user interface element.</li>
<li><b>UIName<b/>specifies the user interface name for the <li><b>UIName</b>specifies the user interface name for the
user interface element. Not all user interface elements have user interface element. Not all user interface elements have
set UIName. At least menubars do not.</li> set UIName. At least menubars do not.</li>
</ul> </ul>
......
...@@ -38,7 +38,7 @@ module com { module sun { module star { module xforms { ...@@ -38,7 +38,7 @@ module com { module sun { module star { module xforms {
/** provide several helper methods for the UI /** provide several helper methods for the UI
<b>This interfaces is for UI use only, and will likely be unsupported in <b>This interfaces is for UI use only, and will likely be unsupported in
future versions.</p> future versions.</b></p>
*/ */
interface XFormsUIHelper1 interface XFormsUIHelper1
{ {
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
module com { module sun { module star { module io { module com { module sun { module star { module io {
/** is thrown when the <code>EOF/code> is reached during reading a datatype /** is thrown when the <code>EOF</code> is reached during reading a datatype
(<code>long</code>, <code>string</code>, etc.). (<code>long</code>, <code>string</code>, etc.).
*/ */
published exception UnexpectedEOFException: com::sun::star::io::IOException published exception UnexpectedEOFException: com::sun::star::io::IOException
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment