亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
91蝌蚪porny九色| 久久一区二区三区四区| 国产在线精品国自产拍免费| 亚洲人成7777| 久久久欧美精品sm网站| 欧美美女激情18p| 97成人超碰视| 国产精品伊人色| 日本成人中文字幕| 亚洲一线二线三线久久久| 2020国产精品| 日韩一区二区影院| 在线观看国产日韩| a4yy欧美一区二区三区| 国内外成人在线| 蜜臀av性久久久久蜜臀aⅴ流畅 | 欧美自拍丝袜亚洲| 国产精品原创巨作av| 日韩福利视频网| 亚洲国产你懂的| 亚洲精品五月天| 日韩伦理免费电影| 国产精品青草久久| 欧美激情一二三区| 久久综合狠狠综合久久激情| 欧美一级视频精品观看| 欧美日韩精品三区| 欧美日韩在线播放三区四区| 91国产视频在线观看| 色综合婷婷久久| 99国产精品一区| 91麻豆蜜桃一区二区三区| 波波电影院一区二区三区| 粉嫩高潮美女一区二区三区| 国产福利一区二区三区视频在线 | 91网站最新网址| 99久久精品国产毛片| av欧美精品.com| 99久久精品国产麻豆演员表| 91在线播放网址| 色国产综合视频| 91久久国产最好的精华液| 在线观看免费成人| 9191久久久久久久久久久| 欧美精品日韩精品| 欧美成人官网二区| 久久婷婷成人综合色| 久久精品男人的天堂| 国产午夜精品久久久久久久 | 国产精品白丝av| 国产成人激情av| 色综合一区二区| 91在线视频观看| 欧美日韩日本视频| 51午夜精品国产| 欧美精品一区二区三区视频| 久久久精品黄色| 亚洲欧美日韩国产中文在线| 一区二区三区不卡视频| 亚洲bdsm女犯bdsm网站| 精东粉嫩av免费一区二区三区| 国产伦精品一区二区三区免费迷| 成人激情小说网站| 欧美色欧美亚洲另类二区| 51精品秘密在线观看| 久久午夜免费电影| 成人免费在线播放视频| 亚洲亚洲精品在线观看| 狠狠狠色丁香婷婷综合激情| 成人国产精品免费网站| 欧美视频精品在线观看| 精品人在线二区三区| 国产精品嫩草久久久久| 午夜欧美2019年伦理 | 欧美三级视频在线观看| 日韩一区二区三区视频在线观看| 久久久九九九九| 亚洲一区日韩精品中文字幕| 麻豆精品精品国产自在97香蕉| 国产成人精品亚洲777人妖 | 成人一级黄色片| 在线国产亚洲欧美| 久久先锋影音av鲁色资源| 伊人一区二区三区| 九色综合狠狠综合久久| 色综合欧美在线| 欧美mv日韩mv| 一区二区三区四区蜜桃| 国内精品免费在线观看| 欧美亚洲高清一区| 久久九九影视网| 三级影片在线观看欧美日韩一区二区| 大美女一区二区三区| 91麻豆精品国产91久久久久| 亚洲人成小说网站色在线| 激情伊人五月天久久综合| 在线观看欧美黄色| 国产精品热久久久久夜色精品三区| 日韩国产欧美在线播放| 91网上在线视频| 国产清纯白嫩初高生在线观看91 | 成人免费视频播放| 欧美一级一级性生活免费录像| 亚洲丝袜精品丝袜在线| 国产一区在线精品| 欧美一个色资源| 一区二区三区久久| zzijzzij亚洲日本少妇熟睡| 日韩免费看网站| 日韩精品1区2区3区| 91免费国产视频网站| 欧美国产日韩亚洲一区| 国模娜娜一区二区三区| 欧美电影一区二区三区| 一区二区高清在线| 成人av免费网站| 欧美韩国日本综合| 国产一区二区精品久久99| 3d动漫精品啪啪1区2区免费 | 亚洲综合色成人| 99国产精品久久久久久久久久久 | 亚洲日本韩国一区| 成人综合婷婷国产精品久久蜜臀| 欧美sm美女调教| 久久不见久久见中文字幕免费| 欧美精品三级在线观看| 亚洲一卡二卡三卡四卡五卡| 色婷婷av一区二区三区之一色屋| 成人欧美一区二区三区白人| 99久久99久久免费精品蜜臀| 综合自拍亚洲综合图不卡区| jlzzjlzz欧美大全| 亚洲欧洲美洲综合色网| www.欧美.com| 亚洲激情五月婷婷| 色猫猫国产区一区二在线视频| 亚洲日本青草视频在线怡红院| 9i在线看片成人免费| 国产精品的网站| 91欧美激情一区二区三区成人| 亚洲精品欧美激情| 欧美亚洲国产一区二区三区va| 亚洲成a人在线观看| 67194成人在线观看| 久久精品国产色蜜蜜麻豆| 日韩女优毛片在线| 国产精品综合av一区二区国产馆| 国产欧美精品国产国产专区 | 91精品国产一区二区人妖| 日韩**一区毛片| 精品国产a毛片| 成人性生交大片| 亚洲欧美偷拍卡通变态| 欧美性xxxxx极品少妇| 午夜一区二区三区视频| 精品久久国产老人久久综合| 国产成人精品一区二| 亚洲少妇30p| 欧美日韩dvd在线观看| 免费成人结看片| 国产精品青草综合久久久久99| 欧洲av一区二区嗯嗯嗯啊| 视频一区二区三区中文字幕| 精品动漫一区二区三区在线观看| 丁香婷婷综合五月| 亚洲人午夜精品天堂一二香蕉| 欧美女孩性生活视频| 韩国一区二区三区| 亚洲裸体在线观看| 日韩欧美久久久| www.久久精品| 日本aⅴ亚洲精品中文乱码| 久久久www免费人成精品| 99re这里只有精品首页| 日日夜夜免费精品| 欧美激情综合五月色丁香| 精品视频色一区| 国产美女精品在线| 亚洲精品成a人| 亚洲精品一区二区三区四区高清| 99视频精品全部免费在线| 亚洲777理论| 国产女同性恋一区二区| 欧美日韩一区不卡| 国产精品77777竹菊影视小说| 亚洲图片欧美一区| 国产人成亚洲第一网站在线播放| 欧美日韩精品一区二区天天拍小说| 国产精品亚洲第一| 天堂在线亚洲视频| ㊣最新国产の精品bt伙计久久| 欧美一区在线视频| 91视频91自| 国产精品一区二区不卡| 日本在线不卡视频| 一区二区三区中文在线观看| 久久久国产综合精品女国产盗摄| 777欧美精品| 在线免费观看一区| 福利一区二区在线|