From 9f12a9da8d91364d4d0865021adbe62bfa09148c Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Sat, 27 Apr 2013 21:58:51 +0200 Subject: *api: convert Foo This looks much better now. sed -i 's,\([^<]\+\),\1::\2,g' Change-Id: I94cd0f93afa89855b62dadeb229d2b2e1775cd80 --- offapi/com/sun/star/inspection/LineDescriptor.idl | 12 ++++++------ offapi/com/sun/star/inspection/ObjectInspector.idl | 6 +++--- offapi/com/sun/star/inspection/PropertyControlType.idl | 8 ++++---- offapi/com/sun/star/inspection/XNumericControl.idl | 8 ++++---- offapi/com/sun/star/inspection/XObjectInspector.idl | 8 ++++---- offapi/com/sun/star/inspection/XObjectInspectorModel.idl | 4 ++-- 6 files changed, 23 insertions(+), 23 deletions(-) (limited to 'offapi/com/sun/star/inspection') diff --git a/offapi/com/sun/star/inspection/LineDescriptor.idl b/offapi/com/sun/star/inspection/LineDescriptor.idl index fcfb133c774b..d2dc6bad9868 100644 --- a/offapi/com/sun/star/inspection/LineDescriptor.idl +++ b/offapi/com/sun/star/inspection/LineDescriptor.idl @@ -86,13 +86,13 @@ struct LineDescriptor /** describes the URL of an image to display on the primary button, if any. -

This URL will be used to obtain an actual XGraphic - object from an GraphicProvider.

+

This URL will be used to obtain an actual com::sun::star::graphic::XGraphic + object from an com::sun::star::graphic::GraphicProvider.

The property will be ignored if HasPrimaryButton is .

If you need to specify a graphic which does not have an URL, but is available as - XGraphic only, then you must leave + com::sun::star::graphic::XGraphic only, then you must leave PrimaryButtonImageURL empty, and use the PrimaryButtonImage property. @see PrimaryButtonImage @@ -131,13 +131,13 @@ struct LineDescriptor /** describes the URL of an image to display on the secondary button, if any. -

This URL will be used to obtain an actual XGraphic - object from an GraphicProvider.

+

This URL will be used to obtain an actual com::sun::star::graphic::XGraphic + object from an com::sun::star::graphic::GraphicProvider.

The property will be ignored if HasSecondaryButton is .

If you need to specify a graphic which does not have an URL, but is available as - XGraphic only, then you must leave + com::sun::star::graphic::XGraphic only, then you must leave SecondaryButtonImageURL empty, and use the SecondaryButtonImage property. @see SecondaryButtonImage diff --git a/offapi/com/sun/star/inspection/ObjectInspector.idl b/offapi/com/sun/star/inspection/ObjectInspector.idl index bb013894c985..79230df6a616 100644 --- a/offapi/com/sun/star/inspection/ObjectInspector.idl +++ b/offapi/com/sun/star/inspection/ObjectInspector.idl @@ -24,10 +24,10 @@ module com { module sun { module star { module inspection { -/** describes an Controller which can be used to +/** describes an com::sun::star::frame::Controller which can be used to browse and modify properties of components. -

The controller can be plugged into an XFrame, and will +

The controller can be plugged into an com::sun::star::frame::XFrame, and will provide a visual component for inspecting and modifying component properties.
Note that "property" here is a generic term - any aspect of a component can be considered a property, as long as some property handler is able to describe this aspect in a property-like way.

@@ -53,7 +53,7 @@ module com { module sun { module star { module inspection {

Since property handlers might have the need to raise UI, they will be created with a context value named "DialogParentWindow", which contains an XWindow which should be used as parent of any windows to raise.
- If the XComponentContext in which the ObjectInspector + If the com::sun::star::uno::XComponentContext in which the ObjectInspector was created already contains such a value, it is not overwritten. Only if it doesn't, the inspector will add an own value - which contains the inspector's main window - to the context when creating handlers.

diff --git a/offapi/com/sun/star/inspection/PropertyControlType.idl b/offapi/com/sun/star/inspection/PropertyControlType.idl index de6ac8bb3d50..4fbcd844465b 100644 --- a/offapi/com/sun/star/inspection/PropertyControlType.idl +++ b/offapi/com/sun/star/inspection/PropertyControlType.idl @@ -84,7 +84,7 @@ constants PropertyControlType /** denotes a control which allows the user to choose from a list of colors.

Controls of type ColorListBox usually exchange their values as - Color.

+ com::sun::star::util::Color.

Additionally, those controls support the XStringListControl interface. If you use this interface to add additional entries to the list box, which have no color associated with it, @@ -106,19 +106,19 @@ constants PropertyControlType /** denotes a control which allows the user to enter a date value -

Controls of type DateField exchange their values as Date.

+

Controls of type DateField exchange their values as com::sun::star::util::Date.

*/ const short DateField = 9; /** denotes a control which allows the user to enter a time value -

Controls of type TimeField exchange their values as Time.

+

Controls of type TimeField exchange their values as com::sun::star::util::Time.

*/ const short TimeField = 10; /** denotes a control which allows the user to enter a combined date/time value -

Controls of type DateTimeField exchange their values as DateTime.

+

Controls of type DateTimeField exchange their values as com::sun::star::util::DateTime.

*/ const short DateTimeField = 11; diff --git a/offapi/com/sun/star/inspection/XNumericControl.idl b/offapi/com/sun/star/inspection/XNumericControl.idl index c2f64bb5e2fc..47a55cda5e46 100644 --- a/offapi/com/sun/star/inspection/XNumericControl.idl +++ b/offapi/com/sun/star/inspection/XNumericControl.idl @@ -45,22 +45,22 @@ interface XNumericControl : XPropertyControl */ [attribute] com::sun::star::beans::Optional MaxValue; - /** describes a MeasureUnit to be applied + /** describes a com::sun::star::util::MeasureUnit to be applied for displaying values. -

Only a certain set of MeasureUnit values is +

Only a certain set of com::sun::star::util::MeasureUnit values is supported. In particular, every value which denotes a fraction of another unit (like 100th millimeters) cannot be used as DisplayUnit.

@throws com::sun::star::lang::IllegalArgumentException - if the caller attempts to set an unsupported MeasureUnit + if the caller attempts to set an unsupported com::sun::star::util::MeasureUnit */ [attribute] short DisplayUnit { set raises (com::sun::star::lang::IllegalArgumentException); }; - /** describes a MeasureUnit to be + /** describes a com::sun::star::util::MeasureUnit to be applied for transferring values.

The core measurement unit for a property value might differ from the unit which diff --git a/offapi/com/sun/star/inspection/XObjectInspector.idl b/offapi/com/sun/star/inspection/XObjectInspector.idl index e005874b0a4d..c6cac35f3cd2 100644 --- a/offapi/com/sun/star/inspection/XObjectInspector.idl +++ b/offapi/com/sun/star/inspection/XObjectInspector.idl @@ -37,13 +37,13 @@ interface XObjectInspectorUI; */ interface XObjectInspector { - /** allows to plug the inspector into an XFrame + /** allows to plug the inspector into an com::sun::star::frame::XFrame

The XController::setModel method accepts only XObjectInspectorModels, and will return if the to-be-attached model is not , but does not support this interface.

-

If you do not want to support a full-blown XModel, +

If you do not want to support a full-blown com::sun::star::frame::XModel, use the InspectorModel attribute instead.

The XController::getViewData and @@ -54,7 +54,7 @@ interface XObjectInspector /** allows to intercept functionality -

This interface is inherited from the Controller +

This interface is inherited from the com::sun::star::frame::Controller service, currently, there is no functionality to intercept at an XObjectInspector.

*/ interface com::sun::star::frame::XDispatchProvider; @@ -66,7 +66,7 @@ interface XObjectInspector

Note that there are two ways of setting or retrieving the current model: You can either use XModel::setModel, or, if you do not want - or need to implement the full-blown XModel interface, + or need to implement the full-blown com::sun::star::frame::XModel interface, you can use this property directly. Both approaches are semantically equivalent.

If a new model is set at the inspector, the complete UI will be rebuilt to reflect diff --git a/offapi/com/sun/star/inspection/XObjectInspectorModel.idl b/offapi/com/sun/star/inspection/XObjectInspectorModel.idl index d59c19326d51..e5169c5c4635 100644 --- a/offapi/com/sun/star/inspection/XObjectInspectorModel.idl +++ b/offapi/com/sun/star/inspection/XObjectInspectorModel.idl @@ -42,11 +42,11 @@ interface XObjectInspectorModel

-- cgit