X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=idl%2FAccessibility_Value.idl;h=4531879db60bdb2d86f4ea0898927154834012d9;hb=4946775a4aa19df13d8950f0c5e0fb438546bc84;hp=9c24e7a938febc13a50fcddd590d1c01de5ac73f;hpb=1aa3da753b6562e3a082a7eb2998d1411e3b0376;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/idl/Accessibility_Value.idl b/idl/Accessibility_Value.idl index 9c24e7a..4531879 100644 --- a/idl/Accessibility_Value.idl +++ b/idl/Accessibility_Value.idl @@ -22,10 +22,45 @@ module Accessibility { + /** + * An interface supporting controls which allow a + * one-dimensional, scalar quantity to be modified or which + * reflect a scalar quantity. (If STATE_EDITABLE is not present, + * the valuator is treated as "read only". + * + * @note Events generated by Image instances include: + * \li \c "object:value-changed" + */ interface Value : Bonobo::Unknown { + /** + * The minimum value allowed by this valuator. + */ readonly attribute double minimumValue; + /** + * The maximum value allowed by this valuator. + */ readonly attribute double maximumValue; + /** + * The smallest incremental change which this valuator allows. + * If 0, the incremental changes to the valuator are + * limited only by the precision of a double precision value + * on the platform. + */ readonly attribute double minimumIncrement; + /** + * The current value of the valuator. + */ attribute double currentValue; + + /** \cond + * unImplemented: + * + * placeholders for future expansion. + */ + void unImplemented (); + void unImplemented2 (); + void unImplemented3 (); + void unImplemented4 (); + /** \endcond */ }; };