1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XAccessibleValue.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __com_sun_star_accessibility_XAccessibleValue_idl__
32 #define __com_sun_star_accessibility_XAccessibleValue_idl__
34 #ifndef __com_sun_star_uno_XInterface_idl__
35 #include
<com
/sun
/star
/uno
/XInterface.idl
>
38 module com
{ module sun
{ module star
{ module accessibility
{
40 /** Implement this interface to give access to a single numerical value.
42 <p>The <type>XAccessibleValue</type> interface represents a single
43 numerical value and should be implemented by any class that supports
44 numerical value like scroll bars and spin boxes. This interface lets
45 you access the value and its upper and lower bounds.</p>
49 published
interface XAccessibleValue
: ::com
::sun
::star
::uno
::XInterface
51 /** Returns the value of this object as a number.
53 <p>The exact return type is implementation dependent. Typical types
54 are long and double.</p>
57 Returns the current value represented by this object.
59 any getCurrentValue
();
61 /** Sets the value of this object to the given number.
63 <p>The argument is clipped to the valid interval whose upper and
64 lower bounds are returned by the methods
65 <member>getMaximumAccessibleValue</member> and
66 <member>getMinimumAccessibleValue</member>, i.e. if it is lower than
67 the minimum value the new value will be the minimum and if it is
68 greater than the maximum then the new value will be the maximum.</p>
71 The new value represented by this object. The set of admissible
72 types for this argument is implementation dependent.
75 Returns <TRUE/> if the new value could successfully be set and
78 boolean setCurrentValue
([in] any aNumber
);
80 /** Returns the maximal value that can be represented by this object.
82 <p>The type of the returned value is implementation dependent. It
83 does not have to be the same type as that returned by
84 <member>getCurrentAccessibleValue</member>.</p>
87 Returns the maximal value in an implementation dependent type.
88 If this object has no upper bound then an empty object is
91 any getMaximumValue
();
93 /** Returns the minimal value that can be represented by this object.
95 <p>The type of the returned value is implementation dependent. It
96 does not have to be the same type as that returned by
97 <member>getCurrentAccessibleValue</member>.</p>
100 Returns the minimal value in an implementation dependent type.
101 If this object has no upper bound then an empty object is
104 any getMinimumValue
();