blob: e1588e8f64329232e71de12bf814146e6f933722 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef __com_sun_star_awt_RoadmapItem_idl__
#define __com_sun_star_awt_RoadmapItem_idl__
//=============================================================================
module com { module sun { module star { module awt {
//=============================================================================
/* specifies a RoadmapItem which serves as an Element in a Container like the Roadmap
* specified in com::sun::star::awt::UnoControlRoadmapModel and
* com::sun::star::awt::UnoControlRoadmap
*/
service RoadmapItem
{
/** The ID uniquely identifies the roadmap item.
* When the RoadmapItem is inserted into the Roadmap via "insertByIndex"
* the default value of the ID is the first available absolute digit that
* has not yet been assigned to other existing RoadmapItems.
*/
[property] short ID;
/** The Label of the RoadmapItem does not include its Prefix that is auto
* matically set after the following algorithm:
* (Index + 1) + ". " + Label
*/
[property] string Label;
/** When "Interactive" is true the RoadmapItem supports a certain "HyperLabel
* functionality":
* Moving the Mousepointer over the RoadmapItem will change it to a Refhand and
* underline the Label for the time the mousepointer resides over the RoadmapItem.
* Clicking the mousepointer will then notify the Roadmap Container.
* The property Interactive" is readonly because it is adapted from the container of the
* RoadmapItem.
*/
[property] boolean Interactive;
/** determines whether a control is enabled or disabled.
*/
[property] boolean Enabled;
};
//=============================================================================
}; }; }; };
#endif