LibreOffice
LibreOffice 24.2 SDK API Reference
XPropertyHandler.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements. See the NOTICE file distributed
13  * with this work for additional information regarding copyright
14  * ownership. The ASF licenses this file to you under the Apache
15  * License, Version 2.0 (the "License"); you may not use this file
16  * except in compliance with the License. You may obtain a copy of
17  * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 
20 module com { module sun { module star { module inspection {
21 
22 interface XObjectInspectorUI;
23 interface XPropertyControlFactory;
24 
39 {
47 
54  void inspect( [in] com::sun::star::uno::XInterface Component )
56 
63  any
64  getPropertyValue( [in] string PropertyName )
66 
76  void
77  setPropertyValue( [in] string PropertyName, [in] any Value )
80 
89  getPropertyState( [in] string PropertyName )
91 
108  describePropertyLine(
109  [in] string PropertyName,
110  [in] XPropertyControlFactory ControlFactory
111  )
113 
138  any
139  convertToPropertyValue(
140  [in] string PropertyName,
141  [in] any ControlValue
142  )
144 
184  any
185  convertToControlValue(
186  [in] string PropertyName,
187  [in] any PropertyValue,
188  [in] type ControlValueType
189  )
191 
209  void
210  addPropertyChangeListener( [in] com::sun::star::beans::XPropertyChangeListener Listener )
212 
216  void
217  removePropertyChangeListener( [in] com::sun::star::beans::XPropertyChangeListener Listener );
218 
229  sequence< com::sun::star::beans::Property >
230  getSupportedProperties();
231 
265  sequence< string >
266  getSupersededProperties( );
267 
283  sequence< string >
284  getActuatingProperties( );
285 
298  boolean isComposable( [in] string PropertyName )
300 
357  onInteractivePropertySelection(
358  [in] string PropertyName,
359  [in] boolean Primary,
360  [out] any outData,
361  [in] XObjectInspectorUI InspectorUI
362  )
364 
391  void
392  actuatingPropertyChanged(
393  [in] string ActuatingPropertyName,
394  [in] any NewValue,
395  [in] any OldValue,
396  [in] XObjectInspectorUI InspectorUI,
397  [in] boolean FirstTimeInit
398  )
400 
425  boolean suspend( [in] boolean Suspend );
426 };
427 
428 
429 }; }; }; };
430 
431 
432 
433 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
a factory for XPropertyControls
Definition: XPropertyControlFactory.idl:28
PropertyState
This enumeration lists the states that a property value can have.
Definition: PropertyState.idl:37
allows to explicitly free resources and break cyclic references.
Definition: XComponent.idl:38
Definition: Ambiguous.idl:20
This exception is thrown to indicate that the property name is unknown to the implementation.
Definition: UnknownPropertyException.idl:30
is used to receive PropertyChangeEvents whenever a bound property is changed.
Definition: XPropertyChangeListener.idl:28
describes the appearance of a line representing a single property in an ObjectInspector.
Definition: LineDescriptor.idl:41
This exception is thrown when a proposed change to a property represents an unacceptable value...
Definition: PropertyVetoException.idl:30
is the basic interface for object inspection.
Definition: XPropertyHandler.idl:38
This exception is thrown when an application attempts to use NULL in a case where an object is requir...
Definition: NullPointerException.idl:32
grants access to certain aspects of the user interface of an object inspector
Definition: XObjectInspectorUI.idl:37
InteractiveSelectionResult
describes possible results of an interactive selection of a property value in an object inspector ...
Definition: InteractiveSelectionResult.idl:29
base interface of all UNO interfaces
Definition: XInterface.idl:45