亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? menu.java

?? 源碼為Eclipse開源開發平臺桌面開發工具SWT的源代碼,
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
/******************************************************************************* * Copyright (c) 2000, 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v10.html *  * Contributors: *     IBM Corporation - initial API and implementation *******************************************************************************/package org.eclipse.swt.widgets; import org.eclipse.swt.internal.win32.*;import org.eclipse.swt.*;import org.eclipse.swt.graphics.*;import org.eclipse.swt.events.*;/** * Instances of this class are user interface objects that contain * menu items. * <dl> * <dt><b>Styles:</b></dt> * <dd>BAR, DROP_DOWN, POP_UP, NO_RADIO_GROUP</dd> * <dd>LEFT_TO_RIGHT, RIGHT_TO_LEFT</dd> * <dt><b>Events:</b></dt> * <dd>Help, Hide, Show </dd> * </dl> * <p> * Note: Only one of BAR, DROP_DOWN and POP_UP may be specified. * Only one of LEFT_TO_RIGHT or RIGHT_TO_LEFT may be specified. * </p><p> * IMPORTANT: This class is <em>not</em> intended to be subclassed. * </p> */public class Menu extends Widget {	/**	 * the handle to the OS resource 	 * (Warning: This field is platform dependent)	 */	public int handle;		int x, y, hwndCB, id0, id1;	boolean hasLocation;	MenuItem cascade;	Decorations parent;	ImageList imageList;		/* Resource ID for SHMENUBARINFO */	static final int ID_PPC = 100;		/* SmartPhone SoftKeyBar resource ids */	static final int ID_SPMM = 102;	static final int ID_SPBM = 103;	static final int ID_SPMB = 104;	static final int ID_SPBB = 105;	static final int ID_SPSOFTKEY0 = 106; 	static final int ID_SPSOFTKEY1 = 107;/** * Constructs a new instance of this class given its parent, * and sets the style for the instance so that the instance * will be a popup menu on the given parent's shell. * * @param parent a control which will be the parent of the new instance (cannot be null) * * @exception IllegalArgumentException <ul> *    <li>ERROR_NULL_ARGUMENT - if the parent is null</li> * </ul> * @exception SWTException <ul> *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent</li> *    <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li> * </ul> * * @see SWT#POP_UP * @see Widget#checkSubclass * @see Widget#getStyle */public Menu (Control parent) {	this (checkNull (parent).menuShell (), SWT.POP_UP);}/** * Constructs a new instance of this class given its parent * (which must be a <code>Decorations</code>) and a style value * describing its behavior and appearance. * <p> * The style value is either one of the style constants defined in * class <code>SWT</code> which is applicable to instances of this * class, or must be built by <em>bitwise OR</em>'ing together  * (that is, using the <code>int</code> "|" operator) two or more * of those <code>SWT</code> style constants. The class description * lists the style constants that are applicable to the class. * Style bits are also inherited from superclasses. * </p> * * @param parent a decorations control which will be the parent of the new instance (cannot be null) * @param style the style of menu to construct * * @exception IllegalArgumentException <ul> *    <li>ERROR_NULL_ARGUMENT - if the parent is null</li> * </ul> * @exception SWTException <ul> *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent</li> *    <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li> * </ul> * * @see SWT#BAR * @see SWT#DROP_DOWN * @see SWT#POP_UP * @see Widget#checkSubclass * @see Widget#getStyle */public Menu (Decorations parent, int style) {	this (parent, checkStyle (style), 0);}/** * Constructs a new instance of this class given its parent * (which must be a <code>Menu</code>) and sets the style * for the instance so that the instance will be a drop-down * menu on the given parent's parent. * * @param parentMenu a menu which will be the parent of the new instance (cannot be null) * * @exception IllegalArgumentException <ul> *    <li>ERROR_NULL_ARGUMENT - if the parent is null</li> * </ul> * @exception SWTException <ul> *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent</li> *    <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li> * </ul> * * @see SWT#DROP_DOWN * @see Widget#checkSubclass * @see Widget#getStyle */public Menu (Menu parentMenu) {	this (checkNull (parentMenu).parent, SWT.DROP_DOWN);}/** * Constructs a new instance of this class given its parent * (which must be a <code>MenuItem</code>) and sets the style * for the instance so that the instance will be a drop-down * menu on the given parent's parent menu. * * @param parentItem a menu item which will be the parent of the new instance (cannot be null) * * @exception IllegalArgumentException <ul> *    <li>ERROR_NULL_ARGUMENT - if the parent is null</li> * </ul> * @exception SWTException <ul> *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent</li> *    <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li> * </ul> * * @see SWT#DROP_DOWN * @see Widget#checkSubclass * @see Widget#getStyle */public Menu (MenuItem parentItem) {	this (checkNull (parentItem).parent);}Menu (Decorations parent, int style, int handle) {	super (parent, checkStyle (style));	this.parent = parent;	this.handle = handle;	/*	* Bug in IBM JVM 1.3.1.  For some reason, when the checkOrientation() is	* called from createWidget(), the JVM issues this error:	*	* JVM Exception 0x2 (subcode 0x0) occurred in thread "main" (TID:0x9F19D8)	* 	* In addition, on Windows XP, a dialog appears with following error message,	* indicating that the problem may be in the JIT:	* 	* AppName: java.exe	 AppVer: 0.0.0.0	 ModName: jitc.dll	* ModVer: 0.0.0.0	 Offset: 000b6912	* 	* The fix is to call checkOrientation() from here.	*/	checkOrientation (parent);	createWidget ();}void _setVisible (boolean visible) {	if ((style & (SWT.BAR | SWT.DROP_DOWN)) != 0) return;	int hwndParent = parent.handle;	if (!visible) {		OS.SendMessage (hwndParent, OS.WM_CANCELMODE, 0, 0);		return;	}	int flags = OS.TPM_LEFTBUTTON;	if (OS.GetKeyState (OS.VK_LBUTTON) >= 0) flags |= OS.TPM_RIGHTBUTTON;	if ((style & SWT.RIGHT_TO_LEFT) != 0) flags |= OS.TPM_RIGHTALIGN;	if ((parent.style & SWT.MIRRORED) != 0) {		flags &= ~OS.TPM_RIGHTALIGN;		if ((style & SWT.LEFT_TO_RIGHT) != 0) flags |= OS.TPM_RIGHTALIGN;	}	int nX = x, nY = y;	if (!hasLocation) {		int pos = OS.GetMessagePos ();		nX = (short) (pos & 0xFFFF);		nY = (short) (pos >> 16);	}	/*	* Feature in Windows.  It is legal use TrackPopupMenu ()	* to display an empty menu as long as menu items are added	* inside of WM_INITPOPUPMENU.  If no items are added, then	* TrackPopupMenu () fails and does not send an indication	* that the menu has been closed.  This is not strictly a	* bug but leads to unwanted behavior when application code	* assumes that every WM_INITPOPUPMENU will eventually result	* in a WM_MENUSELECT, wParam=0xFFFF0000, lParam=0 to indicate	* that the menu has been closed.  The fix is to detect the	* case when TrackPopupMenu fails and the number of items in	* the menu is zero and issue a fake WM_MENUSELECT.	*/	boolean success = OS.TrackPopupMenu (handle, flags, nX, nY, 0, hwndParent, null);	if (!success && GetMenuItemCount (handle) == 0) {		OS.SendMessage (hwndParent, OS.WM_MENUSELECT, 0xFFFF0000, 0);	}}/** * Adds the listener to the collection of listeners who will * be notified when help events are generated for the control, * by sending it one of the messages defined in the * <code>HelpListener</code> interface. * * @param listener the listener which should be notified * * @exception IllegalArgumentException <ul> *    <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> * @exception SWTException <ul> *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see HelpListener * @see #removeHelpListener */public void addHelpListener (HelpListener listener) {	checkWidget ();	if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);	TypedListener typedListener = new TypedListener (listener);	addListener (SWT.Help, typedListener);}/** * Adds the listener to the collection of listeners who will * be notified when menus are hidden or shown, by sending it * one of the messages defined in the <code>MenuListener</code> * interface. * * @param listener the listener which should be notified * * @exception IllegalArgumentException <ul> *    <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> * @exception SWTException <ul> *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see MenuListener * @see #removeMenuListener */public void addMenuListener (MenuListener listener) {	checkWidget ();	if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);	TypedListener typedListener = new TypedListener (listener);	addListener (SWT.Hide,typedListener);	addListener (SWT.Show,typedListener);}static Control checkNull (Control control) {	if (control == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);	return control;}static Menu checkNull (Menu menu) {	if (menu == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);	return menu;}static MenuItem checkNull (MenuItem item) {	if (item == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);	return item;}static int checkStyle (int style) {	return checkBits (style, SWT.POP_UP, SWT.BAR, SWT.DROP_DOWN, 0, 0, 0);}void createHandle () {	if (handle != 0) return;	if ((style & SWT.BAR) != 0) {		if (OS.IsPPC) {			int hwndShell = parent.handle;			SHMENUBARINFO mbi = new SHMENUBARINFO ();			mbi.cbSize = SHMENUBARINFO.sizeof;			mbi.hwndParent = hwndShell;			mbi.dwFlags = OS.SHCMBF_HIDDEN;			mbi.nToolBarId = ID_PPC;			mbi.hInstRes = OS.GetLibraryHandle ();			boolean success = OS.SHCreateMenuBar (mbi);			hwndCB = mbi.hwndMB;			if (!success) error (SWT.ERROR_NO_HANDLES);			/* Remove the item from the resource file */			OS.SendMessage (hwndCB, OS.TB_DELETEBUTTON, 0, 0);			return;		}		/*		* Note in WinCE SmartPhone.  The SoftBar contains only 2 items.		* An item can either be a menu or a button. 		* SWT.BAR: creates a SoftBar with 2 menus		* SWT.BAR | SWT.BUTTON1: creates a SoftBar with 1 button		*    for button1, and a menu for button2		* SWT.BAR | SWT.BUTTON1 | SWT.BUTTON2: creates a SoftBar with		*    2 buttons		*/		if (OS.IsSP) {			/* Determine type of menubar */			int nToolBarId;			if ((style & SWT.BUTTON1) != 0) {				nToolBarId = ((style & SWT.BUTTON2) != 0) ? ID_SPBB : ID_SPBM;			} else {				nToolBarId = ((style & SWT.BUTTON2) != 0) ? ID_SPMB : ID_SPMM;			}						/* Create SHMENUBAR */			SHMENUBARINFO mbi = new SHMENUBARINFO ();			mbi.cbSize = SHMENUBARINFO.sizeof;			mbi.hwndParent = parent.handle;			mbi.dwFlags = OS.SHCMBF_HIDDEN;			mbi.nToolBarId = nToolBarId; /* as defined in .rc file */			mbi.hInstRes = OS.GetLibraryHandle ();			if (!OS.SHCreateMenuBar (mbi)) error (SWT.ERROR_NO_HANDLES);			hwndCB = mbi.hwndMB;						/*			* Feature on WinCE SmartPhone.  The SHCMBF_HIDDEN flag causes the			* SHMENUBAR to not be drawn. However the keyboard events still go			* through it.  The workaround is to also hide the SHMENUBAR with			* ShowWindow ().			*/			OS.ShowWindow (hwndCB, OS.SW_HIDE);						TBBUTTONINFO info = new TBBUTTONINFO ();			info.cbSize = TBBUTTONINFO.sizeof;			info.dwMask = OS.TBIF_COMMAND;			MenuItem item;						/* Set first item */			if (nToolBarId == ID_SPMM || nToolBarId == ID_SPMB) {				int hMenu = OS.SendMessage (hwndCB, OS.SHCMBM_GETSUBMENU, 0, ID_SPSOFTKEY0);				/* Remove the item from the resource file */				OS.RemoveMenu (hMenu, 0, OS.MF_BYPOSITION);				Menu menu = new Menu (parent, SWT.DROP_DOWN, hMenu);				item = new MenuItem (this, menu, SWT.CASCADE, 0);			} else {				item = new MenuItem (this, null, SWT.PUSH, 0);			}			info.idCommand = id0 = item.id;			OS.SendMessage (hwndCB, OS.TB_SETBUTTONINFO, ID_SPSOFTKEY0, info);				/* Set second item */			if (nToolBarId == ID_SPMM || nToolBarId == ID_SPBM) {				int hMenu = OS.SendMessage (hwndCB, OS.SHCMBM_GETSUBMENU, 0, ID_SPSOFTKEY1);				OS.RemoveMenu (hMenu, 0, OS.MF_BYPOSITION);				Menu menu = new Menu (parent, SWT.DROP_DOWN, hMenu);				item = new MenuItem (this, menu, SWT.CASCADE, 1);			} else {				item = new MenuItem (this, null, SWT.PUSH, 1);			}			info.idCommand = id1 = item.id;			OS.SendMessage (hwndCB, OS.TB_SETBUTTONINFO, ID_SPSOFTKEY1, info);			/*			* Override the Back key.  For some reason, the owner of the menubar			* must be a Dialog or it won't receive the WM_HOTKEY message.  As			* a result, Shell on WinCE SP must use the class Dialog.			*/			int dwMask = OS.SHMBOF_NODEFAULT | OS.SHMBOF_NOTIFY;			int lParam = dwMask << 16 | dwMask;			OS.SendMessage (hwndCB, OS.SHCMBM_OVERRIDEKEY, OS.VK_ESCAPE, lParam);			return;		}		handle = OS.CreateMenu ();		if (handle == 0) error (SWT.ERROR_NO_HANDLES);		if (OS.IsHPC) {			int hwndShell = parent.handle;			hwndCB = OS.CommandBar_Create (OS.GetModuleHandle (null), hwndShell, 1);			if (hwndCB == 0) error (SWT.ERROR_NO_HANDLES);			OS.CommandBar_Show (hwndCB, false);			OS.CommandBar_InsertMenubarEx (hwndCB, 0, handle, 0);			/*			* The command bar hosts the 'close' button when the window does not			* have a caption.			*/			if ((parent.style & SWT.CLOSE) != 0 && (parent.style & SWT.TITLE) == 0) {				OS.CommandBar_AddAdornments (hwndCB, 0, 0);			}		}	} else {		handle = OS.CreatePopupMenu ();		if (handle == 0) error (SWT.ERROR_NO_HANDLES);	}}void createItem (MenuItem item, int index) {	int count = GetMenuItemCount (handle);	if (!(0 <= index && index <= count)) error (SWT.ERROR_INVALID_RANGE);	display.addMenuItem (item);	boolean success = false;	if ((OS.IsPPC || OS.IsSP) && hwndCB != 0) {		if (OS.IsSP) return;		TBBUTTON lpButton = new TBBUTTON ();		lpButton.idCommand = item.id;		lpButton.fsStyle = (byte) OS.TBSTYLE_AUTOSIZE;		if ((item.style & SWT.CASCADE) != 0) lpButton.fsStyle |= OS.TBSTYLE_DROPDOWN | 0x80;		if ((item.style & SWT.SEPARATOR) != 0) lpButton.fsStyle = (byte) OS.BTNS_SEP;		lpButton.fsState = (byte) OS.TBSTATE_ENABLED;		lpButton.iBitmap = OS.I_IMAGENONE;		success = OS.SendMessage (hwndCB, OS.TB_INSERTBUTTON, index, lpButton) != 0;	} else {		if (OS.IsWinCE) {			int uFlags = OS.MF_BYPOSITION;			TCHAR lpNewItem = null;			if ((item.style & SWT.SEPARATOR) != 0) {				uFlags |= OS.MF_SEPARATOR;			} else {				lpNewItem = new TCHAR (0, " ", true);			}			success = OS.InsertMenu (handle, index, uFlags, item.id, lpNewItem);			if (success) {				MENUITEMINFO info = new MENUITEMINFO ();				info.cbSize = MENUITEMINFO.sizeof;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品二区亚洲w码| 国产精品传媒入口麻豆| 精品国产精品网麻豆系列| 久久久美女毛片| 日韩一区在线看| 亚洲国产精品天堂| 狠狠色狠狠色综合系列| av在线这里只有精品| 欧美日韩国产高清一区二区| 久久无码av三级| 亚洲狠狠丁香婷婷综合久久久| 日韩电影免费在线看| 成人少妇影院yyyy| 欧美一区中文字幕| 最新成人av在线| 日本亚洲欧美天堂免费| 成人教育av在线| 91精品国产麻豆国产自产在线| 国产精品欧美一区二区三区| 图片区小说区国产精品视频| 国产成人免费高清| 91精品国产综合久久久久久久| 国产精品三级av| 日韩黄色一级片| 97精品电影院| 久久久久国产免费免费| 香蕉加勒比综合久久| 成人一道本在线| 日韩欧美www| 亚洲一区在线视频观看| 岛国精品在线观看| 欧美刺激午夜性久久久久久久| 亚洲丝袜精品丝袜在线| 激情欧美一区二区| 欧美日韩电影一区| 1024成人网| 国产精品中文欧美| 欧美一级黄色片| 亚洲高清免费视频| 色综合天天天天做夜夜夜夜做| 亚洲精品在线网站| 日韩激情在线观看| 欧美专区日韩专区| 亚洲欧美日韩成人高清在线一区| 国产在线精品一区二区夜色 | 精品国产免费人成在线观看| 一级中文字幕一区二区| 国产a久久麻豆| 日韩免费性生活视频播放| 亚洲成av人片在线| 91美女片黄在线观看91美女| 欧美高清在线精品一区| 国产一区二区免费看| 日韩精品一区二区在线观看| 亚洲成人7777| 欧美中文字幕一区| 一个色综合网站| 色综合天天综合| 中文字幕亚洲不卡| 99久久精品国产麻豆演员表| 国产午夜精品一区二区三区视频| 麻豆久久久久久| 欧美一区二区三区四区视频| 亚洲国产一二三| 欧美自拍丝袜亚洲| 亚洲国产成人av好男人在线观看| 色欧美乱欧美15图片| 亚洲免费资源在线播放| 91一区二区在线观看| 综合电影一区二区三区| 91影院在线免费观看| 国产精品视频线看| av网站一区二区三区| 中文乱码免费一区二区| 粉嫩绯色av一区二区在线观看| 国产欧美一区二区在线| 日韩欧美卡一卡二| 久久99精品国产麻豆婷婷洗澡| 欧美一级二级在线观看| 久久精品国产久精国产爱| 日韩精品一区二区三区四区视频 | 欧美一区二区在线看| 日日骚欧美日韩| 欧美r级电影在线观看| 久久99这里只有精品| 久久综合给合久久狠狠狠97色69| 国产一区二区三区观看| 国产精品色噜噜| 色狠狠桃花综合| 亚洲成人中文在线| 日韩网站在线看片你懂的| 九九视频精品免费| 国产三级精品在线| 99精品国产99久久久久久白柏 | 91国产免费看| 国产一区二区三区四区在线观看| 国产欧美日韩亚州综合| 色综合天天综合| 天天影视色香欲综合网老头| 欧美一区二区三区公司| 国产在线播精品第三| 国产精品欧美经典| 欧美日韩亚洲综合一区二区三区| 蜜乳av一区二区三区| 国产欧美久久久精品影院| 91网站在线播放| 日韩高清不卡一区二区三区| 久久综合资源网| 91免费看`日韩一区二区| 日韩精品电影在线| 久久精品人人做| 欧美在线观看视频在线| 黄色精品一二区| 亚洲啪啪综合av一区二区三区| 欧美肥大bbwbbw高潮| 国产精品亚洲视频| 亚洲最快最全在线视频| 精品精品国产高清a毛片牛牛| www.亚洲人| 日本欧美一区二区三区乱码| 国产精品毛片无遮挡高清| 欧美日韩一区 二区 三区 久久精品| 韩国三级在线一区| 一区二区在线观看免费| 精品国产不卡一区二区三区| 一本色道a无线码一区v| 经典三级一区二区| 亚洲第一久久影院| 国产精品入口麻豆原神| 91精品国产aⅴ一区二区| 99久久精品国产麻豆演员表| 老色鬼精品视频在线观看播放| 亚洲人快播电影网| 欧美精品一区二区三区四区| 在线观看不卡视频| 粉嫩av一区二区三区在线播放| 天堂va蜜桃一区二区三区 | 国产另类ts人妖一区二区| 亚洲精品老司机| 国产三级精品在线| 欧美一区2区视频在线观看| 色综合天天综合网国产成人综合天 | 美腿丝袜在线亚洲一区 | 欧美视频在线不卡| 成人免费福利片| 国内精品久久久久影院一蜜桃| 一卡二卡三卡日韩欧美| 国产精品久久久久久久久久免费看 | 国产精品久久久久7777按摩| 日韩欧美综合在线| 欧美性欧美巨大黑白大战| 粉嫩av一区二区三区粉嫩| 毛片基地黄久久久久久天堂| 一区二区三区**美女毛片| 欧美激情一区二区在线| 日韩欧美一区二区久久婷婷| 欧美四级电影在线观看| 色综合久久久网| 波多野结衣中文字幕一区二区三区| 麻豆高清免费国产一区| 亚洲成a人在线观看| 亚洲激情综合网| 亚洲少妇中出一区| 中文字幕欧美区| 久久久国产精品午夜一区ai换脸| 91精品国产色综合久久| 欧美综合视频在线观看| 色素色在线综合| 99riav一区二区三区| 白白色 亚洲乱淫| 成人午夜在线视频| 国产成人精品免费视频网站| 国产一区三区三区| 久草这里只有精品视频| 蜜桃av噜噜一区| 看国产成人h片视频| 麻豆国产精品一区二区三区 | 欧美日韩在线直播| 欧美日韩一级黄| 欧美日韩精品一区二区三区蜜桃| 99国内精品久久| 99精品桃花视频在线观看| av不卡免费在线观看| eeuss鲁片一区二区三区在线看| 成人免费毛片app| 99精品欧美一区二区蜜桃免费| av不卡免费在线观看| 91色婷婷久久久久合中文| 99国产精品国产精品久久| 日本久久一区二区三区| 欧美三级资源在线| 欧美精品少妇一区二区三区| 欧美群妇大交群的观看方式| 91精品婷婷国产综合久久性色 | 日韩成人免费电影| 久久国产精品一区二区| 国产精品原创巨作av| 成人av在线电影| 欧美性感一类影片在线播放| 欧美日韩和欧美的一区二区|