| /AOO42X/main/offapi/com/sun/star/style/ |
| H A D | CharacterProperties.idl | 49 /** This is a set of properties to describe the style of characters.@see ParagraphProperties 55 /** This property specifies the name of the font style. 63 /** This property contains the name of the font style. 65 <p>This property may be empty.</p> 71 /** This property contains font family. 78 /** This property contains the text encoding of the font. 85 /** This property contains the font pitch. 92 /** This property contains the value of the text color. 109 /** This value contains the height of the characters in point. 115 /** This property contains the value for the character underline. [all …]
|
| H A D | CharacterPropertiesAsian.idl | 39 /** This is a set of properties to describe the style of characters in asian texts. 44 /** This value contains the height of the characters in point. 48 /** This property contains the value of the font weight.@see com::sun::star::awt::FontWeight 52 /** This property specifies the name of the font style. 57 /** This property contains the name of the font style. 58 <p>This property may be empty.</p> 62 /** This property contains font family as specified in 67 /** This property contains the text encoding of the font as specified in 72 /** This property contains the font pitch as specified in com.sun.star.awt.FontPitch. 76 …/** This property contains the value of the posture of the document.@see com::sun::star::awt::Font…
|
| H A D | CharacterPropertiesComplex.idl | 39 /** This is a set of properties to describe the style of characters in complex texts. 44 /** This value contains the height of the characters in point. 48 /** This property contains the value of the font weight.@see com::sun::star::awt::FontWeight 52 /** This property specifies the name of the font style. 57 /** This property contains the name of the font style. 58 <p>This property may be empty.</p> 62 /** This property contains font family as specified in 67 /** This property contains the text encoding of the font as specified in 72 /** This property contains the font pitch as specified in com.sun.star.awt.FontPitch. 76 …/** This property contains the value of the posture of the document.@see com::sun::star::awt::Font…
|
| /AOO42X/main/instsetoo_native/inc_openoffice/windows/msi_languages/ |
| H A D | UIText.ulf | 35 en-US = "This feature will not be available." 38 en-US = "This feature will be installed when required." 41 en-US = "This feature, and all subfeatures, will be installed to run from the CD." 44 en-US = "This feature, and all subfeatures, will be installed on local hard drive." 47 en-US = "This feature, and all subfeatures, will be installed to run from the network." 50 en-US = "This feature will be installed to run from CD." 53 en-US = "This feature will be installed on local hard drive." 56 en-US = "This feature will be installed to run from network." 62 en-US = "This feature will remain uninstalled." 65 en-US = "This feature will be set to be installed when required." [all …]
|
| /AOO42X/main/offapi/com/sun/star/text/ |
| H A D | BibliographyDataField.idl | 42 /** This field contains a unique identifier for the bibliographic data. 47 /** This field contains the type of the bibliographic reference. It is of the 54 /** This field contains the address of the publisher. 59 /** This field contains an annotation. 64 /** This field contains the name(s) of the author(s) 69 /** This field contains the title of the book. 74 /** This field contains the name or number of the chapter. 79 /** This field contains the number or name of the edition. 84 /** This field contains the name(s) of the editor(s) 89 /** This field contains a description of the type of the publishing. [all …]
|
| H A D | MailMerge.idl | 89 <p>This service describe the interaction between all data access related properties, 132 on such a <type scope="com::sun::star::sdb">RowSet</type>. This becomes important in 153 <p>This property is relevant in conjunction with the <member>ResultSet</member> 201 <p>This property will automatically be set to the documents model 222 <p>This property is only evaluated for printer output.</p> 233 <p>This property is only evaluated for file output.</p> 242 <p>This property is only evaluated for file output.</p> 255 <p>This property is only evaluated for file output.</p> 264 <p>This property is only evaluated for e-Mail output.</p> 275 <p>This property is only evaluated for e-Mail output.</p> [all …]
|
| /AOO42X/main/sal/rtl/source/ |
| H A D | ustrbuf.c | 81 (rtl_uString ** This, sal_Int32* capacity, sal_Int32 minimumCapacity) in rtl_uStringbuffer_ensureCapacity() argument 85 rtl_uString * pTmp = *This; in rtl_uStringbuffer_ensureCapacity() 87 *capacity = ((*This)->length + 1) * 2; in rtl_uStringbuffer_ensureCapacity() 93 pNew->length = (*This)->length; in rtl_uStringbuffer_ensureCapacity() 94 *This = pNew; in rtl_uStringbuffer_ensureCapacity() 96 rtl_copyMemory( (*This)->buffer, pTmp->buffer, pTmp->length * sizeof(sal_Unicode) ); in rtl_uStringbuffer_ensureCapacity() 104 void SAL_CALL rtl_uStringbuffer_insert( rtl_uString ** This, in rtl_uStringbuffer_insert() argument 115 if (*capacity < (*This)->length + len) in rtl_uStringbuffer_insert() 116 rtl_uStringbuffer_ensureCapacity( This, capacity, (*This)->length + len ); in rtl_uStringbuffer_insert() 122 nOldLen = (*This)->length; in rtl_uStringbuffer_insert() [all …]
|
| H A D | strbuf.c | 80 (rtl_String ** This, sal_Int32* capacity, sal_Int32 minimumCapacity) in rtl_stringbuffer_ensureCapacity() argument 84 rtl_String * pTmp = *This; in rtl_stringbuffer_ensureCapacity() 86 *capacity = ((*This)->length + 1) * 2; in rtl_stringbuffer_ensureCapacity() 92 pNew->length = (*This)->length; in rtl_stringbuffer_ensureCapacity() 93 *This = pNew; in rtl_stringbuffer_ensureCapacity() 95 rtl_copyMemory( (*This)->buffer, pTmp->buffer, pTmp->length ); in rtl_stringbuffer_ensureCapacity() 103 void SAL_CALL rtl_stringbuffer_insert( rtl_String ** This, in rtl_stringbuffer_insert() argument 114 if (*capacity < (*This)->length + len) in rtl_stringbuffer_insert() 115 rtl_stringbuffer_ensureCapacity( This, capacity, (*This)->length + len ); in rtl_stringbuffer_insert() 121 nOldLen = (*This)->length; in rtl_stringbuffer_insert() [all …]
|
| H A D | locale.c | 320 rtl_uString * SAL_CALL rtl_locale_getLanguage( rtl_Locale * This ) in rtl_locale_getLanguage() argument 322 rtl_uString_acquire(This->Language); in rtl_locale_getLanguage() 323 return This->Language; in rtl_locale_getLanguage() 329 rtl_uString * SAL_CALL rtl_locale_getCountry( rtl_Locale * This ) in rtl_locale_getCountry() argument 331 rtl_uString_acquire(This->Country); in rtl_locale_getCountry() 332 return This->Country; in rtl_locale_getCountry() 338 rtl_uString * SAL_CALL rtl_locale_getVariant( rtl_Locale * This ) in rtl_locale_getVariant() argument 340 rtl_uString_acquire(This->Variant); in rtl_locale_getVariant() 341 return This->Variant; in rtl_locale_getVariant() 347 sal_Int32 SAL_CALL rtl_locale_hashCode( rtl_Locale * This ) in rtl_locale_hashCode() argument [all …]
|
| /AOO42X/main/ |
| H A D | NOTICE | 5 This product includes software developed at 32 This product includes software developed by 45 This product includes software developed by 52 This software contains code derived from the RSA Data Security 55 This software contains code derived from UNIX V7, Copyright(C) 62 This product includes software developed by 69 This software contains code derived from the RSA Data Security 78 This product includes software developed by 91 This product includes software developed by 97 This product includes software developed by [all …]
|
| /AOO42X/main/offapi/com/sun/star/rendering/ |
| H A D | XTextLayout.idl | 67 /** This is the central interface for text layouting.<p> 69 This is the central interface for text-related tasks more 142 This method returns a sequence of advancements, one for each 165 This method applies the specified advancements to every 168 multiple input characters per glyph). This is useful to 189 This method is similar to 202 This method is the core of the <type>XTextLayout</type> 208 width or height, depending on the writing mode). This 228 This method can be used to combine the layout of a text line 229 into a single justification run. This is e.g. useful if the [all …]
|
| H A D | FloatingPointBitmapLayout.idl | 35 /** This structure describes the memory layout of a bitmap having 38 This structure collects all necessary information to describe the 47 This value must not be negative 53 This value must not be negative 59 This value is permitted to be negative, denoting a bitmap 66 This value is permitted to be negative. If this value is zero, 78 // and half float formats. This maybe translates to the bitmap 89 This value must not be negative 95 This value must be one of the <type>Endianness</type> constants 101 This value must be one of the
|
| /AOO42X/main/offapi/com/sun/star/drawing/ |
| H A D | LineProperties.idl | 39 /** This is a set of properties to describe the style for rendering a Line. 45 /** This property contains the type of the line. 51 /** This property contains the dash of the line. 57 /** This property contains the name of the dash of the line. 63 /** This property contains the line color. 69 /** This property contains the extent of transparency. 75 /** This property contains the width of the line in 1/100th mm. 81 /** This property defines the rendering of joints between thick lines 87 /** This property defines the rendering of ends of thick lines 93 /** This property contains the name of the line start poly polygon bezier. [all …]
|
| H A D | MeasureProperties.idl | 45 /** This service describes a <type>MeasureShape</type>. 56 /** This is the length of the first help line. 61 /** This is the length of the second help line. 66 /** This is the distance from the measure line to the start of the 72 /** This is the overhang of the two help lines. 77 /** This enumeration specifies the <type>MeasureKind</type>. 82 /** This is the distance from the reference edge to the measure line. 87 /** This is the overhang of the reference line over the help lines. 102 /** This is the automatic angle. 107 /** This is the fixed angle. [all …]
|
| H A D | EnhancedCustomShapePath.idl | 52 This service may be represented by a ::com::sun::star::beans::PropertyValue []. 57 /** This property is specifying the points that makes the geometry of the shape 61 /** This property specifies the commands and the way the Coordinates have to be interpreted. 65 …/** This property specifies the horizontal StretchPoint that has to be used. No stretching is used… 70 …/** This property specifies the vertical StretchPoint that has to be used. No stretching is used if 75 /** This property specifies the text frames that can be used with the shape. In general 81 /** This property specifies custom glue points 85 /** This property specifies GluePoint leaving directions. 89 /** This property defines the GluePoint type. The values that can be used are 94 /** This property specifies if this shape supports the EnhancedCustomShapeExtrusion [all …]
|
| H A D | EnhancedCustomShapeGeometry.idl | 48 This service may be represented by a ::com::sun::star::beans::PropertyValue []. 54 The Type attribute contains the name of a shape type. This name can be 62 /** This property describes the user space of the shape in its canonical form 66 /** This property specifies if the orientation of the shape is horizontal mirrored. 70 /** This property specifies if the orientation of the shape is vertical mirrored. 74 /** This property specifies the text rotation angle in degrees. The text rotation is added 79 /** This property specifies a sequence of Adjustment values. 83 /** This property sequence is including the extrusion description, the properties 88 /** This property sequence is including the path description, the properties 93 /** This property sequence is including the textpath description, the properties [all …]
|
| H A D | PolygonKind.idl | 34 /** This enumeration defines the type of polygon. 41 /** This is the PolygonKind for a LineShape. 48 /** This is the PolygonKind for a PolyPolygonShape. 55 /** This is the PolygonKind for a PolyLineShape. 62 /** This is the PolygonKind for an OpenBezierShape. 69 /** This is the PolygonKind for a ClosedBezierShape. 76 /** This is the PolygonKind for an OpenFreeHandShape. 83 /** This is the PolygonKind for a ClosedFreeHandShape. 90 /** This is the PolygonKind for a PolyPolygonPathShape. 97 /** This is the PolygonKind for a PolyLinePathShape.
|
| H A D | TextProperties.idl | 89 /** This is a set of properties to describe the style for rendering the 197 /** This is the distance from the left edge of the <type>Shape</type> 199 <p>This is only useful if <member>Text::TextHorizontalAdjust</member> is 207 /** This is the distance from the right edge of the <type>Shape</type> 210 <p>This is only useful if <member>Text::TextHorizontalAdjust</member> is 218 /** This is the distance from the upper edge of the <type>Shape</type> to 221 <p>This is only useful if <member>Text::TextVerticalAdjust</member> is 229 /** This is the distance from the lower edge of the <type>Shape</type> to the 234 <p>This is only useful if <member>Text::TextVerticalAdjust</member> is 274 /** This is the number of pixels the text is moved in each animation step. [all …]
|
| H A D | EnhancedCustomShapeExtrusion.idl | 57 This service may be represented by a ::com::sun::star::beans::PropertyValue []. 62 /** This property specifies if extrusion is displayed. The default for this property 67 /** This attribute specifies the brightness of a scene in percent. 77 /** This attribute specifies the amount of diffusion reflected by the shape 119 /** This property defines the shade mode. 123 /** This attributes specifies the rotation angle about the x-axis in grad. 129 /** This attribute specifies the position of the rotate center 145 /** This attribute specifies the specularity of an extrusion object in percent. 149 /** This property defines the projection mode. 153 /** This attribute specifies the viewpoint of the observer. [all …]
|
| /AOO42X/main/offapi/com/sun/star/report/ |
| H A D | XReportControlFormat.idl | 199 /** This is the additional height used for subscript or superscript 245 /** This attribute specifies the name of the font style. 258 /** This attribute contains the name of the font style. 260 <p>This attribute may be empty.</p> 269 /** This attribute contains font family as specified in 279 /** This attribute contains the text encoding of the font as specified in 289 /** This attribute contains the font pitch as specified in com.sun.star.awt.FontPitch. 315 /** This value contains the height of the characters in point. 325 …/** This attribute contains the value for the character underline.@see com::sun::star::awt::FontUn… 335 /** This attribute contains the value of the font weight.@see com::sun::star::awt::FontWeight [all …]
|
| /AOO42X/main/offapi/com/sun/star/ui/ |
| H A D | ItemStyle.idl | 62 <p>This style is only valid for an item which describes a statusbar item. 69 <p>This style is only valid for an item which describes a statusbar item. 76 <p>This style is only valid for an item which describes a statusbar item. 83 <p>This style is only valid for an item which describes a statusbar item. 89 <p>This style is only valid for an item which describes a statusbar item. 95 <p>This style is only valid for an item which describes a statusbar item. 102 <p>This style is only valid if the item describes a statusbar item.</p> 109 <p>This style is only valid if the item describes a toolbar or statusbar item.</p> 115 <p>This style is only valid if the item describes a toolbar item.</p> 121 <p>This style is only valid if the item describes a toolbar item and visible if [all …]
|
| /AOO42X/main/offapi/com/sun/star/presentation/ |
| H A D | EffectNodeType.idl | 32 /** This constants defines a type for an animation effect node. 34 This is stored with the name <i>node-type</i> inside the 37 This does not manipulate the timing or synchronization. 44 /** This node has no special meaning. 48 /** This node contains an effect that starts on click. 52 /** This node contains an effect that starts with a previous effect. 56 /** This node contains an effect that starts after a previous effect has finished. 60 /** This is the main sequence for effects that is automatically started. 64 /** This is the root sequence. 68 /** This is a sequence with effects that starts due to user interaction.
|
| H A D | XSlideShow.idl | 67 This interface provides the necessary methods to run and control a 80 This method triggers the next effect on the currently 87 triggered. This method returns <FALSE>, if there is no show 106 triggered. This method returns <FALSE/>, if there is no show 115 This method starts an animation or activity intrinsic to the 128 This method stops an animation or activity intrinsic to the 141 This method ends all effects on the current slide, displays a 170 are triggered. This is typically used when going back one 179 is any, is not displayed. This is typically used when going 195 This method either pauses the slide show (all currently [all …]
|
| /AOO42X/main/xmerge/source/palmtests/ |
| H A D | README | 6 1. POSE: the Palm OS Emulator. This is available from the PalmOS website. 9 4. Xerces.jar: required by the xmerge framework. This is available from org.apache.com. 15 This test environment consists on 3 directories. 16 …1. bin : This contains some helper scripts that are used by the test environment but can be used i… 17 …2. qa : This directory contains the files necessary to run the POSE emulator and to compare this r… 18 …3. qa-wrapper: This directory contains some wrapper scripts and environment files, that allow a us… 22 …particular users environment, by editing or creating an environment file. This files are usually k… 26 …n by executing the "run-convtest" script in the qa-wrapper/bin directory. This file takes the foll… 31 optional <RUNNAME> This can be the name of the user running the scripts. This is used to name a dir…
|
| /AOO42X/main/offapi/com/sun/star/ucb/ |
| H A D | Content.idl | 48 <p>This interface is required. 67 <p>This interface is required. 83 <p>This interface is required.</p> 102 <td>This command obtains an interface which allows to query 110 <td>This command obtains an interface which allows to query 118 <td>This command obtains property values from the content. 131 <td>This command sets property values of the content. 136 <p>This command returns a sequence< any > which has exactly the same number 258 This command creates a new <b>non-persistent</b> content of a given type. 259 <p>This command must be supported by every <type>Content</type> [all …]
|