File: ContextMenu.hx

package info (click to toggle)
haxe 1%3A4.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 40,556 kB
  • sloc: ml: 125,171; ansic: 2,408; makefile: 436; java: 362; cs: 323; cpp: 318; python: 316; sh: 75; objc: 64; php: 39; xml: 30; javascript: 11
file content (24 lines) | stat: -rw-r--r-- 1,386 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package flash.ui;

extern final class ContextMenu extends flash.display.NativeMenu {
	@:flash.property var builtInItems(get,set) : ContextMenuBuiltInItems;
	@:flash.property @:require(flash10) var clipboardItems(get,set) : ContextMenuClipboardItems;
	@:flash.property @:require(flash10) var clipboardMenu(get,set) : Bool;
	@:flash.property var customItems(get,set) : Array<Dynamic>;
	@:flash.property @:require(flash10) var link(get,set) : flash.net.URLRequest;
	function new() : Void;
	function clone() : ContextMenu;
	private function get_builtInItems() : ContextMenuBuiltInItems;
	private function get_clipboardItems() : ContextMenuClipboardItems;
	private function get_clipboardMenu() : Bool;
	private function get_customItems() : Array<Dynamic>;
	private function get_link() : flash.net.URLRequest;
	function hideBuiltInItems() : Void;
	private function set_builtInItems(value : ContextMenuBuiltInItems) : ContextMenuBuiltInItems;
	private function set_clipboardItems(value : ContextMenuClipboardItems) : ContextMenuClipboardItems;
	private function set_clipboardMenu(value : Bool) : Bool;
	private function set_customItems(value : Array<Dynamic>) : Array<Dynamic>;
	private function set_link(value : flash.net.URLRequest) : flash.net.URLRequest;
	@:flash.property @:require(flash10_1) static var isSupported(get,never) : Bool;
	private static function get_isSupported() : Bool;
}