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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? composite.java

?? 源碼為Eclipse開(kāi)源開(kāi)發(fā)平臺(tái)桌面開(kāi)發(fā)工具SWT的源代碼,
?? JAVA
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
			Control control = tabList [i];			if (control == null) error (SWT.ERROR_INVALID_ARGUMENT);			if (control.isDisposed ()) error (SWT.ERROR_INVALID_ARGUMENT);			if (control.parent != this) error (SWT.ERROR_INVALID_PARENT);		}		Control [] newList = new Control [tabList.length];		System.arraycopy (tabList, 0, newList, 0, tabList.length);		tabList = newList;	} 	this.tabList = tabList;}void setResizeChildren (boolean resize) {	if (resize) {		resizeChildren ();	} else {		int count = getChildrenCount ();		if (count > 1 && lpwp == null) {			lpwp = new WINDOWPOS [count];		}	}}boolean setTabGroupFocus () {	if (isTabItem ()) return setTabItemFocus ();	boolean takeFocus = (style & SWT.NO_FOCUS) == 0;	if ((state & CANVAS) != 0) {		takeFocus = hooksKeys ();		if ((style & SWT.EMBEDDED) != 0) takeFocus = true;	}	if (takeFocus && setTabItemFocus ()) return true;	Control [] children = _getChildren ();	for (int i=0; i<children.length; i++) {		Control child = children [i];		if (child.isTabItem () && child.setRadioFocus ()) return true;	}	for (int i=0; i<children.length; i++) {		Control child = children [i];		if (child.isTabItem () && child.setTabItemFocus ()) return true;	}	return false;}String toolTipText (NMTTDISPINFO hdr) {	if ((hdr.uFlags & OS.TTF_IDISHWND) == 0) {		return null;	}	int hwnd = hdr.idFrom;	if (hwnd == 0) return null;	Control control = display.getControl (hwnd);	if (control == null) return null;	return control.toolTipText;}boolean translateMnemonic (Event event, Control control) {	if (super.translateMnemonic (event, control)) return true;	if (control != null) {		Control [] children = _getChildren ();		for (int i=0; i<children.length; i++) {			Control child = children [i];			if (child.translateMnemonic (event, control)) return true;		}	}	return false;}boolean translateTraversal (MSG msg) {	if ((state & CANVAS) != 0 && (style & SWT.EMBEDDED) != 0) return false;	return super.translateTraversal (msg);}void updateFont (Font oldFont, Font newFont) {	Control [] children = _getChildren ();	for (int i=0; i<children.length; i++) {		Control control = children [i];		if (!control.isDisposed ()) {			control.updateFont (oldFont, newFont);		}	}	super.updateFont (oldFont, newFont);	layout (true);}int widgetStyle () {	/* Force clipping of children by setting WS_CLIPCHILDREN */	return super.widgetStyle () | OS.WS_CLIPCHILDREN;}LRESULT WM_ERASEBKGND (int wParam, int lParam) {	LRESULT result = super.WM_ERASEBKGND (wParam, lParam);	if (result != null) return result;	if ((state & CANVAS) != 0) {		/* Return zero to indicate that the background was not erased */		if ((style & SWT.NO_BACKGROUND) != 0) return LRESULT.ZERO;	}	return result;}LRESULT WM_GETDLGCODE (int wParam, int lParam) {	LRESULT result = super.WM_GETDLGCODE (wParam, lParam);	if (result != null) return result;	if ((state & CANVAS) != 0) {		if ((style & SWT.NO_FOCUS) != 0) return new LRESULT (OS.DLGC_STATIC);		if (hooksKeys ()) {			int flags = OS.DLGC_WANTALLKEYS | OS.DLGC_WANTARROWS | OS.DLGC_WANTTAB;			return new LRESULT (flags);		}		if (OS.GetWindow (handle, OS.GW_CHILD) != 0) return new LRESULT (OS.DLGC_STATIC);	}	return result;}LRESULT WM_GETFONT (int wParam, int lParam) {	LRESULT result = super.WM_GETFONT (wParam, lParam);	if (result != null) return result;	int code = callWindowProc (OS.WM_GETFONT, wParam, lParam);	if (code != 0) return new LRESULT (code);	if (font == 0) font = defaultFont ();	return new LRESULT (font);}LRESULT WM_LBUTTONDOWN (int wParam, int lParam) {	LRESULT result = super.WM_LBUTTONDOWN (wParam, lParam);	/* Set focus for a canvas with no children */	if ((state & CANVAS) != 0) {		if ((style & SWT.NO_FOCUS) == 0 && hooksKeys ()) {			if (OS.GetWindow (handle, OS.GW_CHILD) == 0) setFocus ();		}	}	return result;}LRESULT WM_NOTIFY (int wParam, int lParam) {	if (!OS.IsWinCE) {		NMHDR hdr = new NMHDR ();		OS.MoveMemory (hdr, lParam, NMHDR.sizeof);		switch (hdr.code) {			/*			* Feature in Windows.  When the tool tip control is			* created, the parent of the tool tip is the shell.			* If SetParent () is used to reparent the tool bar			* into a new shell, the tool tip is not reparented			* and pops up underneath the new shell.  The fix is			* to make sure the tool tip is a topmost window.			*/			case OS.TTN_SHOW:			case OS.TTN_POP: {				/*				* Bug in Windows 98 and NT.  Setting the tool tip to be the				* top most window using HWND_TOPMOST can result in a parent				* dialog shell being moved behind its parent if the dialog				* has a sibling that is currently on top.  The fix is to				* lock the z-order of the active window.				* 				* Feature in Windows.  Using SetWindowPos() with HWND_NOTOPMOST				* to clear the topmost state of a window whose parent is already				* topmost clears the topmost state of the parent.  The fix is to				* check if the parent is already on top and neither set or clear				* the topmost status of the tool tip.				*/				int hwndParent = hdr.hwndFrom;				do {					hwndParent = OS.GetParent (hwndParent);					if (hwndParent == 0) break;					int style = OS.GetWindowLong (hwndParent, OS.GWL_EXSTYLE);					if ((style & OS.WS_EX_TOPMOST) != 0) break;				} while (true);				if (hwndParent != 0) break;				display.lockActiveWindow = true;				int flags = OS.SWP_NOACTIVATE | OS.SWP_NOMOVE | OS.SWP_NOSIZE;				int hwndInsertAfter = hdr.code == OS.TTN_SHOW ? OS.HWND_TOPMOST : OS.HWND_NOTOPMOST;				SetWindowPos (hdr.hwndFrom, hwndInsertAfter, 0, 0, 0, 0, flags);				display.lockActiveWindow = false;				break;			}			/*			* Bug in Windows 98.  For some reason, the tool bar control			* sends both TTN_GETDISPINFOW and TTN_GETDISPINFOA to get			* the tool tip text and the tab folder control sends only 			* TTN_GETDISPINFOW.  The fix is to handle only TTN_GETDISPINFOW,			* even though it should never be sent on Windows 98.			*			* NOTE:  Because the size of NMTTDISPINFO differs between			* Windows 98 and NT, guard against the case where the wrong			* kind of message occurs by inlining the memory moves and			* the UNICODE conversion code.			*/			case OS.TTN_GETDISPINFOA:			case OS.TTN_GETDISPINFOW: {				NMTTDISPINFO lpnmtdi;				if (hdr.code == OS.TTN_GETDISPINFOA) {					lpnmtdi = new NMTTDISPINFOA ();					OS.MoveMemory ((NMTTDISPINFOA)lpnmtdi, lParam, NMTTDISPINFOA.sizeof);				} else {					lpnmtdi = new NMTTDISPINFOW ();					OS.MoveMemory ((NMTTDISPINFOW)lpnmtdi, lParam, NMTTDISPINFOW.sizeof);				}				String string = toolTipText (lpnmtdi);				if (string != null) {					Shell shell = getShell ();					string = Display.withCrLf (string);					int length = string.length ();					char [] chars = new char [length + 1];					string.getChars (0, length, chars, 0);										/*					* Ensure that the orientation of the tool tip matches					* the orientation of the control.					*/					int hwnd = hdr.idFrom;					if (hwnd != 0 && ((lpnmtdi.uFlags & OS.TTF_IDISHWND) != 0)) {						Control control = display.getControl (hwnd);						if (control != null) {							if ((control.getStyle () & SWT.RIGHT_TO_LEFT) != 0) {								lpnmtdi.uFlags |= OS.TTF_RTLREADING;							} else {								lpnmtdi.uFlags &= ~OS.TTF_RTLREADING;							}						}					}										if (hdr.code == OS.TTN_GETDISPINFOA) {						byte [] bytes = new byte [chars.length * 2];						OS.WideCharToMultiByte (OS.CP_ACP, 0, chars, chars.length, bytes, bytes.length, null, null);						shell.setToolTipText (lpnmtdi, bytes);						OS.MoveMemory (lParam, (NMTTDISPINFOA)lpnmtdi, NMTTDISPINFOA.sizeof);					} else {						shell.setToolTipText (lpnmtdi, chars);						OS.MoveMemory (lParam, (NMTTDISPINFOW)lpnmtdi, NMTTDISPINFOW.sizeof);					}					return LRESULT.ZERO;				}				break;			}		}	}	return super.WM_NOTIFY (wParam, lParam);}LRESULT WM_PAINT (int wParam, int lParam) {	if ((state & CANVAS) == 0) {		return super.WM_PAINT (wParam, lParam);	}	/* Set the clipping bits */	int oldBits = 0, newBits = 0;	if (!OS.IsWinCE) {		oldBits = OS.GetWindowLong (handle, OS.GWL_STYLE);		newBits = oldBits | OS.WS_CLIPSIBLINGS | OS.WS_CLIPCHILDREN;			if (newBits != oldBits) OS.SetWindowLong (handle, OS.GWL_STYLE, newBits);	}	/* Paint the control and the background */	PAINTSTRUCT ps = new PAINTSTRUCT ();	if (hooks (SWT.Paint)) {				/* Get the damage */		int [] lpRgnData = null;		boolean isComplex = false;		boolean exposeRegion = false;		if ((style & SWT.NO_MERGE_PAINTS) != 0) {			int rgn = OS.CreateRectRgn (0, 0, 0, 0);			isComplex = OS.GetUpdateRgn (handle, rgn, false) == OS.COMPLEXREGION;			if (isComplex) {				int nBytes = OS.GetRegionData (rgn, 0, null);				lpRgnData = new int [nBytes / 4];				exposeRegion = OS.GetRegionData (rgn, nBytes, lpRgnData) != 0;			}			OS.DeleteObject (rgn);		}			/* Create the paint GC */		GCData data = new GCData ();		data.ps = ps;		GC gc = GC.win32_new (this, data);		int hDC = gc.handle;				/* Send the paint event */		Event event = new Event ();		event.gc = gc;		if (isComplex && exposeRegion) {			RECT rect = new RECT ();			int count = lpRgnData [2];			for (int i=0; i<count; i++) {				OS.SetRect (rect,					lpRgnData [8 + (i << 2)],					lpRgnData [8 + (i << 2) + 1],					lpRgnData [8 + (i << 2) + 2],					lpRgnData [8 + (i << 2) + 3]);				if ((style & SWT.NO_BACKGROUND) == 0) {					drawBackground (hDC, rect);				}				event.x = rect.left;				event.y = rect.top;				event.width = rect.right - rect.left;				event.height = rect.bottom - rect.top;				event.count = count - 1 - i;				/*				* It is possible (but unlikely), that application				* code could have disposed the widget in the paint				* event.  If this happens, attempt to give back the				* paint GC anyways because this is a scarce Windows				* resource.				*/				sendEvent (SWT.Paint, event);				if (isDisposed ()) break;			}		} else {			if ((style & SWT.NO_BACKGROUND) == 0) {				RECT rect = new RECT ();				OS.SetRect (rect, ps.left, ps.top, ps.right, ps.bottom);				drawBackground (hDC, rect);			}			event.x = ps.left;			event.y = ps.top;			event.width = ps.right - ps.left;			event.height = ps.bottom - ps.top;			sendEvent (SWT.Paint, event);		}		// widget could be disposed at this point			/* Dispose the paint GC */		event.gc = null;		gc.dispose ();	} else {		int hDC = OS.BeginPaint (handle, ps);		if ((style & SWT.NO_BACKGROUND) == 0) {			RECT rect = new RECT ();			OS.SetRect (rect, ps.left, ps.top, ps.right, ps.bottom);			drawBackground (hDC, rect);		}		OS.EndPaint (handle, ps);	}	/* Restore the clipping bits */	if (!OS.IsWinCE) { 		if (newBits != oldBits) {			/*			* It is possible (but unlikely), that application			* code could have disposed the widget in the paint			* event.  If this happens, don't attempt to restore			* the style.			*/			if (!isDisposed ()) {				OS.SetWindowLong (handle, OS.GWL_STYLE, oldBits);			}		}	}	return LRESULT.ZERO;}LRESULT WM_PRINTCLIENT (int wParam, int lParam) {	LRESULT result = super.WM_PRINTCLIENT (wParam, lParam);	if (result != null) return result;	if ((state & CANVAS) != 0) {		forceResize ();		int nSavedDC = OS.SaveDC (wParam);		RECT rect = new RECT ();		OS.GetClientRect (handle, rect);		if ((style & SWT.NO_BACKGROUND) == 0) {			drawBackground (wParam, rect);		}		GCData data = new GCData ();		data.device = display;		GC gc = GC.win32_new (wParam, data);		Event event = new Event ();		event.gc = gc;		event.x = rect.left;		event.y = rect.top;		event.width = rect.right - rect.left;		event.height = rect.bottom - rect.top;		sendEvent (SWT.Paint, event);		event.gc = null;		gc.dispose ();		OS.RestoreDC (wParam, nSavedDC);	}	return result;}LRESULT WM_SETFONT (int wParam, int lParam) {	return super.WM_SETFONT (font = wParam, lParam);}LRESULT WM_SIZE (int wParam, int lParam) {		/* Begin deferred window positioning */	setResizeChildren (false);		/* Resize and Layout */	LRESULT result = super.WM_SIZE (wParam, lParam);	/*	* It is possible (but unlikely), that application	* code could have disposed the widget in the resize	* event.  If this happens, end the processing of the	* Windows message by returning the result of the	* WM_SIZE message.	*/	if (isDisposed ()) return result;	if (layout != null) layout.layout (this, false);	/* End deferred window positioning */	setResizeChildren (true);		/* Damage the widget to cause a repaint */	if ((state & CANVAS) != 0) {		if ((style & SWT.NO_REDRAW_RESIZE) == 0) {			if (hooks (SWT.Paint)) {				OS.InvalidateRect (handle, null, true);			}		}	}	/* Resize the embedded window */	if ((state & CANVAS) != 0 && (style & SWT.EMBEDDED) != 0) {		int hwndChild = OS.GetWindow (handle, OS.GW_CHILD);		if (hwndChild != 0) {			int threadId = OS.GetWindowThreadProcessId (hwndChild, null);			if (threadId != OS.GetCurrentThreadId ()) {				if (display.msgHook == 0) {					if (!OS.IsWinCE) {						display.getMsgCallback = new Callback (display, "getMsgProc", 3);						display.getMsgProc = display.getMsgCallback.getAddress ();						if (display.getMsgProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS);						display.msgHook = OS.SetWindowsHookEx (OS.WH_GETMESSAGE, display.getMsgProc, OS.GetLibraryHandle(), threadId);					}				}				OS.PostThreadMessage (threadId, Display.SWT_RESIZE, hwndChild, lParam);			}		}	}	return result;}LRESULT WM_SYSCOLORCHANGE (int wParam, int lParam) {	Control [] children = _getChildren ();	for (int i=0; i<children.length; i++) {		int hwndChild = children [i].handle;		OS.SendMessage (hwndChild, OS.WM_SYSCOLORCHANGE, 0, 0);	}	return null;}LRESULT WM_SYSCOMMAND (int wParam, int lParam) {	LRESULT result = super.WM_SYSCOMMAND (wParam, lParam);	if (result != null) return result;			/*	* Check to see if the command is a system command or	* a user menu item that was added to the system menu.	*/	if ((wParam & 0xF000) == 0) return result;	/*	* Bug in Windows.  When a vertical or horizontal scroll bar is	* hidden or shown while the opposite scroll bar is being scrolled	* by the user (with WM_HSCROLL code SB_LINEDOWN), the scroll bar	* does not redraw properly.  The fix is to detect this case and	* redraw the non-client area.	*/	if (!OS.IsWinCE) {		int cmd = wParam & 0xFFF0;		switch (cmd) {			case OS.SC_HSCROLL:			case OS.SC_VSCROLL:				boolean showHBar = horizontalBar != null && horizontalBar.getVisible ();				boolean showVBar = verticalBar != null && verticalBar.getVisible ();				int code = callWindowProc (OS.WM_SYSCOMMAND, wParam, lParam);				if ((showHBar != (horizontalBar != null && horizontalBar.getVisible ())) ||					(showVBar != (verticalBar != null && verticalBar.getVisible ()))) {						int flags = OS.RDW_FRAME | OS.RDW_INVALIDATE | OS.RDW_UPDATENOW;						OS.RedrawWindow (handle, null, 0, flags);					}						if (code == 0) return LRESULT.ZERO;				return new LRESULT (code);		}	}	/* Return the result */	return result;}}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人精品国产免费网站| 国产精品素人一区二区| 欧美自拍偷拍一区| 欧美综合天天夜夜久久| 欧美伊人精品成人久久综合97 | 成人av午夜影院| 国产福利视频一区二区三区| 国产精一区二区三区| 国产精品一区二区在线播放 | 不卡一区中文字幕| 99久久精品一区二区| 成人国产亚洲欧美成人综合网| 国产成都精品91一区二区三| 成人听书哪个软件好| av成人老司机| 欧美色图天堂网| 欧美区一区二区三区| 欧美成人精品1314www| 精品国产成人在线影院| 日本一区二区免费在线| 1区2区3区精品视频| 亚洲人妖av一区二区| 一区二区免费视频| 日韩精品电影在线观看| 国产美女av一区二区三区| 国产精品小仙女| 99视频有精品| 91精品国产一区二区三区| 精品999在线播放| 国产精品久久久久久福利一牛影视| 亚洲免费观看在线视频| 日日嗨av一区二区三区四区| 国产毛片精品一区| 91浏览器入口在线观看| 欧美日本精品一区二区三区| www国产精品av| 成人免费在线观看入口| 日韩福利视频网| 国产露脸91国语对白| 色综合久久久久网| 这里只有精品电影| 国产视频亚洲色图| 亚洲综合清纯丝袜自拍| 久久国产尿小便嘘嘘| av不卡在线观看| 日韩欧美一级特黄在线播放| 欧美国产乱子伦| 日韩高清在线观看| 波多野结衣一区二区三区| 91.com在线观看| 国产精品久久久久久久久免费丝袜 | 欧美日韩激情在线| 久久人人97超碰com| 亚洲中国最大av网站| 国产一区三区三区| 91福利在线看| 久久精品水蜜桃av综合天堂| 亚洲成av人**亚洲成av**| 国产风韵犹存在线视精品| 欧美午夜精品久久久| 国产欧美日韩综合| 日本欧美大码aⅴ在线播放| 91麻豆高清视频| 日本一区二区三区在线不卡| 婷婷开心激情综合| 97久久超碰精品国产| 精品99999| 日韩中文字幕av电影| 成人开心网精品视频| 日韩精品中午字幕| 亚洲一区二区三区四区的| 国产99精品在线观看| 日韩免费观看高清完整版| 亚洲图片一区二区| 波多野结衣中文一区| 久久久综合视频| 蜜臀av性久久久久蜜臀aⅴ| 欧美少妇xxx| 日韩一区在线播放| 成人动漫视频在线| 国产欧美中文在线| 久久97超碰国产精品超碰| 3d成人h动漫网站入口| 亚洲影视资源网| 91在线一区二区三区| 久久精品夜色噜噜亚洲a∨| 久久99久久久欧美国产| 日韩欧美国产麻豆| 日本成人在线一区| 337p亚洲精品色噜噜噜| 性做久久久久久| 欧美无人高清视频在线观看| 亚洲最大成人综合| 色欲综合视频天天天| 亚洲欧美日韩成人高清在线一区| 波多野结衣在线aⅴ中文字幕不卡| 国产亚洲欧美日韩俺去了| 国产揄拍国内精品对白| 日韩精品中文字幕一区二区三区 | 亚洲国产欧美在线人成| 色婷婷av一区| 亚洲一区二区三区四区在线| 91福利视频网站| 亚洲综合色噜噜狠狠| 欧美性受xxxx| 午夜精品一区在线观看| 欧美日韩另类国产亚洲欧美一级| 亚洲二区在线观看| 欧美一区三区二区| 蜜臀久久99精品久久久久宅男| 日韩欧美高清在线| 精品一区二区影视| 久久精品夜色噜噜亚洲aⅴ| 国产成人a级片| 亚洲天堂成人网| 欧美色涩在线第一页| 亚洲一区二区不卡免费| 欧美乱妇一区二区三区不卡视频| 色素色在线综合| 亚洲永久精品国产| 欧美一区二区三区喷汁尤物| 麻豆免费看一区二区三区| 久久久综合视频| 91丝袜美女网| 亚洲成人一区在线| 欧美变态tickle挠乳网站| 国产乱人伦偷精品视频不卡| 国产精品视频线看| 在线看国产一区二区| 日日摸夜夜添夜夜添精品视频| 精品久久人人做人人爱| 国产婷婷一区二区| a在线欧美一区| 亚洲一区二区五区| 欧美v国产在线一区二区三区| 国产成人午夜片在线观看高清观看| 亚洲欧洲日韩av| 欧美日韩高清影院| 国产激情精品久久久第一区二区| 亚洲日本在线看| 欧美一区二区在线看| 成人精品国产免费网站| 亚洲 欧美综合在线网络| 26uuu亚洲综合色欧美 | 亚洲国产精品传媒在线观看| 色婷婷久久一区二区三区麻豆| 日韩国产成人精品| 国产精品毛片久久久久久久| 欧美在线高清视频| 精品一区二区三区不卡| 亚洲女与黑人做爰| 日韩欧美国产系列| 91网站视频在线观看| 免费的成人av| 中文字幕一区免费在线观看| 6080亚洲精品一区二区| 成人av午夜电影| 美女视频免费一区| 亚洲人被黑人高潮完整版| 日韩一卡二卡三卡| 91猫先生在线| 国产激情一区二区三区四区| 亚洲r级在线视频| 国产精品你懂的| 精品国产乱码久久久久久牛牛| 色综合天天综合网天天看片| 久久草av在线| 亚洲成人黄色影院| 亚洲少妇30p| 欧美激情一二三区| 日韩精品影音先锋| 欧美日韩亚洲不卡| 色综合色综合色综合色综合色综合| 老司机午夜精品99久久| 亚洲国产精品久久人人爱| 欧美激情中文字幕一区二区| 日韩三级免费观看| 欧美日韩亚洲丝袜制服| 91免费国产视频网站| 国产电影一区在线| 老色鬼精品视频在线观看播放| 一区二区三区不卡视频在线观看| 国产午夜精品久久久久久免费视| 91精品国产综合久久精品| 欧美午夜寂寞影院| 色菇凉天天综合网| 91日韩在线专区| 成人h精品动漫一区二区三区| 国内精品伊人久久久久影院对白| 日精品一区二区| 天堂精品中文字幕在线| 午夜视频一区二区三区| 亚洲国产精品嫩草影院| 亚洲精品写真福利| 亚洲色欲色欲www在线观看| 中文字幕佐山爱一区二区免费| 国产精品色哟哟| 国产精品美女久久久久高潮| 国产视频不卡一区| 国产精品三级久久久久三级|