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

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

?? tablecolumn.java

?? 源碼為Eclipse開源開發平臺桌面開發工具SWT的源代碼,
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/******************************************************************************* * 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 represent a column in a table widget. *  <dl> * <dt><b>Styles:</b></dt> * <dd>LEFT, RIGHT, CENTER</dd> * <dt><b>Events:</b></dt> * <dd> Move, Resize, Selection</dd> * </dl> * <p> * Note: Only one of the styles LEFT, RIGHT and CENTER may be specified. * </p><p> * IMPORTANT: This class is <em>not</em> intended to be subclassed. * </p> */public class TableColumn extends Item {	Table parent;	boolean resizable;/** * Constructs a new instance of this class given its parent * (which must be a <code>Table</code>) and a style value * describing its behavior and appearance. The item is added * to the end of the items maintained by its parent. * <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 composite control which will be the parent of the new instance (cannot be null) * @param style the style of control 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#LEFT * @see SWT#RIGHT * @see SWT#CENTER * @see Widget#checkSubclass * @see Widget#getStyle */public TableColumn (Table parent, int style) {	super (parent, checkStyle (style));	resizable = true;	this.parent = parent;	parent.createItem (this, parent.getColumnCount ());}/** * Constructs a new instance of this class given its parent * (which must be a <code>Table</code>), a style value * describing its behavior and appearance, and the index * at which to place it in the items maintained by its parent. * <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 composite control which will be the parent of the new instance (cannot be null) * @param style the style of control to construct * @param index the index to store the receiver in its parent * * @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#LEFT * @see SWT#RIGHT * @see SWT#CENTER * @see Widget#checkSubclass * @see Widget#getStyle */public TableColumn (Table parent, int style, int index) {	super (parent, checkStyle (style));	resizable = true;	this.parent = parent;	parent.createItem (this, index);}/** * Adds the listener to the collection of listeners who will * be notified when the control is moved or resized, by sending * it one of the messages defined in the <code>ControlListener</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 ControlListener * @see #removeControlListener */public void addControlListener(ControlListener listener) {	checkWidget ();	if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);	TypedListener typedListener = new TypedListener (listener);	addListener (SWT.Resize,typedListener);	addListener (SWT.Move,typedListener);}/** * Adds the listener to the collection of listeners who will * be notified when the control is selected, by sending * it one of the messages defined in the <code>SelectionListener</code> * interface. * <p> * <code>widgetSelected</code> is called when the column header is selected. * <code>widgetDefaultSelected</code> is not called. * </p> * * @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 SelectionListener * @see #removeSelectionListener * @see SelectionEvent */public void addSelectionListener (SelectionListener listener) {	checkWidget ();	if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);	TypedListener typedListener = new TypedListener (listener);	addListener (SWT.Selection,typedListener);	addListener (SWT.DefaultSelection,typedListener);}static int checkStyle (int style) {	return checkBits (style, SWT.LEFT, SWT.CENTER, SWT.RIGHT, 0, 0, 0);}protected void checkSubclass () {	if (!isValidSubclass ()) error (SWT.ERROR_INVALID_SUBCLASS);}/** * Returns a value which describes the position of the * text or image in the receiver. The value will be one of * <code>LEFT</code>, <code>RIGHT</code> or <code>CENTER</code>. * * @return the alignment  * * @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> */public int getAlignment () {	checkWidget ();	if ((style & SWT.LEFT) != 0) return SWT.LEFT;	if ((style & SWT.CENTER) != 0) return SWT.CENTER;	if ((style & SWT.RIGHT) != 0) return SWT.RIGHT;	return SWT.LEFT;}String getNameText () {	return getText ();}/** * Returns the receiver's parent, which must be a <code>Table</code>. * * @return the receiver's parent * * @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> */public Table getParent () {	checkWidget ();	return parent;}/** * Gets the resizable attribute. A column that is * not resizable cannot be dragged by the user but * may be resized by the programmer. * * @return the resizable attribute * * @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> */public boolean getResizable () {	checkWidget ();	return resizable;}/** * Gets the width of the receiver. * * @return the width * * @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> */public int getWidth () {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文无字幕一区二区三区| 麻豆成人免费电影| 久久99精品网久久| 欧美天堂亚洲电影院在线播放| 精品裸体舞一区二区三区| 亚洲第一会所有码转帖| 99亚偷拍自图区亚洲| 久久亚洲精华国产精华液| 五月天国产精品| 欧美在线免费观看视频| 国产精品国产a| 国产91精品在线观看| 久久久噜噜噜久久中文字幕色伊伊 | 成人激情免费电影网址| 欧美久久久久久久久久| 亚洲视频一区二区在线观看| 国产成人免费网站| 国产午夜精品久久久久久免费视| 激情都市一区二区| 欧美本精品男人aⅴ天堂| 调教+趴+乳夹+国产+精品| 欧美日韩国产综合一区二区三区 | 成人aaaa免费全部观看| 久久精品综合网| 国模一区二区三区白浆| 精品国精品自拍自在线| 九九久久精品视频| 精品久久久久久无| 国产又黄又大久久| 精品奇米国产一区二区三区| 美女视频一区二区| 精品久久久久香蕉网| 国产一区 二区| 国产亲近乱来精品视频| 成人性色生活片| 中文字幕一区二区不卡| youjizz久久| 一区二区三区欧美激情| 欧美日韩激情一区二区三区| 亚洲午夜免费电影| 欧美一卡二卡在线| 国产在线精品不卡| 中文子幕无线码一区tr| www.欧美精品一二区| 亚洲欧美日韩久久| 欧美日本乱大交xxxxx| 日本亚洲电影天堂| 国产拍欧美日韩视频二区| 白白色亚洲国产精品| 亚洲福利视频一区二区| 精品电影一区二区| 91在线视频播放| 五月天久久比比资源色| 精品久久久久av影院| 成人开心网精品视频| 伊人婷婷欧美激情| 精品免费日韩av| 91丨porny丨国产| 男女激情视频一区| √…a在线天堂一区| 欧美精品国产精品| 国v精品久久久网| 亚洲成va人在线观看| 2024国产精品视频| 91福利精品视频| 国产一区二区看久久| 亚洲午夜久久久久| 欧美国产欧美亚州国产日韩mv天天看完整 | 欧美亚洲综合色| 91行情网站电视在线观看高清版| 亚洲成人777| 亚洲欧洲av在线| 日韩一区二区三区高清免费看看| 国产成a人亚洲| 三级不卡在线观看| 1区2区3区国产精品| 精品国产伦理网| 欧美三级日本三级少妇99| 懂色av一区二区三区免费观看| 午夜久久电影网| 亚洲欧洲日产国产综合网| 欧美一级爆毛片| 日本韩国欧美国产| 成人一级片在线观看| 美女网站一区二区| 日韩精品一区第一页| 亚洲欧洲www| 国产欧美一区二区三区在线看蜜臀 | 狠狠狠色丁香婷婷综合久久五月| 亚洲激情自拍偷拍| 中文字幕免费不卡在线| 久久日韩精品一区二区五区| 欧美日韩国产区一| 在线视频你懂得一区二区三区| 成人一区二区三区| 高清日韩电视剧大全免费| 久久精品国产秦先生| 视频一区二区三区中文字幕| 亚洲午夜国产一区99re久久| 亚洲人成在线播放网站岛国| 中文字幕免费不卡| 久久综合久久综合亚洲| 日韩欧美美女一区二区三区| 欧美日韩精品高清| 欧美日韩国产综合视频在线观看| 一本到高清视频免费精品| 成人a免费在线看| 丁香六月综合激情| 成人久久18免费网站麻豆 | 久久99精品国产.久久久久久| 午夜久久久久久久久久一区二区| 亚洲福利电影网| 香蕉久久夜色精品国产使用方法 | 欧美日本视频在线| 欧美日韩综合一区| 欧美日韩高清一区二区| 欧美精品aⅴ在线视频| 欧美年轻男男videosbes| 91精品在线麻豆| 欧美mv和日韩mv的网站| 久久嫩草精品久久久精品一| 久久久久久久久久久久久女国产乱| 精品久久久久久久久久久久久久久久久 | 免费看欧美女人艹b| 久久精品99国产国产精| 国产精品自拍一区| 99在线精品观看| 欧美日韩午夜在线| 日韩欧美一区二区在线视频| www国产成人| 亚洲人成人一区二区在线观看| 亚洲男人天堂一区| 天堂成人免费av电影一区| 蜜桃精品在线观看| 国产成人av影院| 色丁香久综合在线久综合在线观看| 欧美日韩视频在线一区二区| 欧美不卡一区二区| 中文字幕国产一区| 偷偷要91色婷婷| 国产成人自拍在线| 欧美性感一类影片在线播放| 欧美日本视频在线| 久久精品在线免费观看| 亚洲另类在线视频| 久久精品72免费观看| 91免费观看国产| 日韩欧美另类在线| 一级中文字幕一区二区| 久久疯狂做爰流白浆xx| 91影视在线播放| 久久综合精品国产一区二区三区| 最新欧美精品一区二区三区| 日韩高清中文字幕一区| 99re在线视频这里只有精品| 日韩欧美中文字幕一区| 亚洲欧美日韩人成在线播放| 国内一区二区视频| 欧美日韩国产综合视频在线观看| 欧美激情在线看| 日本人妖一区二区| 91视频一区二区| 久久亚洲一区二区三区四区| 亚洲国产你懂的| av电影天堂一区二区在线| 欧美成人vps| 午夜精品久久久久久久蜜桃app| 成人激情小说网站| 日韩欧美国产综合| 亚洲va在线va天堂| 色婷婷综合久久久中文一区二区| 久久色视频免费观看| 日本不卡一区二区三区| 欧美在线视频你懂得| 中文字幕一区二区在线观看| 韩国欧美国产1区| 日韩精品中午字幕| 亚洲动漫第一页| 在线视频观看一区| 亚洲欧美福利一区二区| www.久久久久久久久| 国产精品视频第一区| 国产99久久久国产精品潘金网站| 日韩色视频在线观看| 日本系列欧美系列| 911国产精品| 蜜臀精品久久久久久蜜臀| 在线综合+亚洲+欧美中文字幕| 玉米视频成人免费看| 色婷婷av一区二区三区gif| 欧美激情综合网| 成人毛片在线观看| 国产精品欧美一级免费| 成人性生交大片免费看视频在线| 久久久久国产精品免费免费搜索 | 日韩av高清在线观看| 欧美人伦禁忌dvd放荡欲情| 午夜久久久影院| 欧美一区二区视频在线观看2020 | 亚洲欧美激情视频在线观看一区二区三区 |