//////////////////////////////////////////////////////////////////////////////// // // 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. // //////////////////////////////////////////////////////////////////////////////// package mx.events { import flash.display.NativeMenu; import flash.display.NativeMenuItem; import flash.events.Event; /** * The FlexNativeMenuEvent class represents events that are associated with menu * activities in FlexNativeMenu. * * @see mx.controls.FlexNativeMenu * * * @langversion 3.0 * @playerversion AIR 1.1 * @productversion Flex 3 */ public class FlexNativeMenuEvent extends Event { include "../core/Version.as"; //-------------------------------------------------------------------------- // // Class constants // //-------------------------------------------------------------------------- /** * The FlexNativeMenuEvent.ITEM_CLICK event type constant indicates that the * user selected a menu item. * *

The properties of the event object for this event type have the * following values. * Not all properties are meaningful for all kinds of events. * See the detailed property descriptions for more information.

* * * * * * * * * * * * * * * * * * *
PropertyValue
bubblesfalse
cancelabletrue
currentTargetThe Object that defines the * event listener that handles the event. For example, if you use * myButton.addEventListener() to register an event listener, * myButton is the value of the currentTarget.
indexThe index in the menu of the selected menu item.
itemThe item in the dataProvider that was selected.
labelThe label text of the selected menu item.
nativeMenuThe specific NativeMenu instance associated with this event.
nativeMenuItemThe specific NativeMenuItem instance associated with this event.
targetThe Object that dispatched the * event; it is not always the Object listening for the event. * Use the currentTarget property to always access the * Object listening for the event.
typeFlexNativeMenuEvent.ITEM_CLICK
* * @eventType itemClick * * @langversion 3.0 * @playerversion AIR 1.1 * @productversion Flex 3 */ public static const ITEM_CLICK:String = "itemClick"; /** * The FlexNativeMenuEvent.MENU_SHOW type constant indicates that * the mouse pointer rolled a menu or submenu opened. * *

The properties of the event object for this event type have the * following values. * Not all properties are meaningful for all kinds of events. * See the detailed property descriptions for more information.

* * * * * * * * * * * * * * * * * *
PropertyValue
bubblesfalse
cancelabletrue
currentTargetThe Object that defines the * event listener that handles the event. For example, if you use * myButton.addEventListener() to register an event listener, * myButton is the value of the currentTarget.
index-1. This property is not set for this type of event.
itemnull. This property is not set for this type of event.
labelnull. This property is not set for this type of event.
nativeMenuThe specific NativeMenu instance associated with this event.
nativeMenuItemnull. This property is not set for this type of event.
targetThe Object that dispatched the * event; it is not always the Object listening for the event. * Use the currentTarget property to always access the * Object listening for the event.
typeFlexNativeMenuEvent.MENU_SHOW
* * @eventType menuShow * * @langversion 3.0 * @playerversion AIR 1.1 * @productversion Flex 3 */ public static const MENU_SHOW:String = "menuShow"; //-------------------------------------------------------------------------- // // Constructor // //-------------------------------------------------------------------------- /** * Constructor. * * Normally called by the FlexNativeMenu object. * * @param type The event type; indicates the action that caused the event. * * @param bubbles Specifies whether the event can bubble * up the display list hierarchy. * * @param cancelable Specifies whether the behavior * associated with the event can be prevented. * * @param nativeMenu The specific NativeMenu instance associated with the event. * * @param nativeMenuItem The specific NativeMenuItem instance associated with the event. * * @param item The item in the dataProvider of the associated menu item. * * @param label The label text of the associated menu item. * * @param index The index in the menu of the associated menu item. * * @langversion 3.0 * @playerversion AIR 1.1 * @productversion Flex 3 */ public function FlexNativeMenuEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, nativeMenu:NativeMenu = null, nativeMenuItem:NativeMenuItem = null, item:Object = null, label:String = null, index:int = -1) { super(type, bubbles, cancelable); this.nativeMenu = nativeMenu; this.nativeMenuItem = nativeMenuItem; this.item = item; this.label = label; this.index = index; } //-------------------------------------------------------------------------- // // Properties // //-------------------------------------------------------------------------- //---------------------------------- // index //---------------------------------- /** * The index of the associated menu item within its parent menu or submenu. * This is -1 for events that aren't associated with an individual item. * * @langversion 3.0 * @playerversion AIR 1.1 * @productversion Flex 3 */ public var index:int; //---------------------------------- // item //---------------------------------- /** * The specific item in the dataProvider. * This is null for events that aren't associated with an individual item. * * @langversion 3.0 * @playerversion AIR 1.1 * @productversion Flex 3 */ public var item:Object; //---------------------------------- // label //---------------------------------- /** * The label text of the associated menu item. * This is null for events that aren't associated with an individual item. * * @langversion 3.0 * @playerversion AIR 1.1 * @productversion Flex 3 */ public var label:String; //---------------------------------- // nativeMenu //---------------------------------- /** * The specific NativeMenu instance associated with the event, * such as the menu displayed. * * @langversion 3.0 * @playerversion AIR 1.1 * @productversion Flex 3 */ public var nativeMenu:NativeMenu; //---------------------------------- // nativeMenuItem //---------------------------------- /** * The specific NativeMenuItem instance associated with the event, * such as the item clicked. This is null for events that aren't * associated with an individual item. * * @langversion 3.0 * @playerversion AIR 1.1 * @productversion Flex 3 */ public var nativeMenuItem:NativeMenuItem; //-------------------------------------------------------------------------- // // Overridden methods: Event // //-------------------------------------------------------------------------- /** * @private */ override public function clone():Event { return new FlexNativeMenuEvent(type, bubbles, cancelable, nativeMenu, nativeMenuItem); } } }