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

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

?? jimmui.java.svn-base

?? 類似QQ的功能
?? SVN-BASE
?? 第 1 頁 / 共 5 頁
字號:
		uiSectName = "work_info";		addToTextList(UI_W_NAME, data, "title", list, true);		addToTextList(UI_W_DEP, data, "depart", list, true);		addToTextList(UI_W_POS, data, "position", list, true);		addToTextList(UI_W_CITY, data, "city", list, true);		addToTextList(UI_W_STATE, data, "state", list, true);		addToTextList(UI_W_ADDR, data, "addr", list, true);		addToTextList(UI_W_PHONE, data, "phone", list, true);		addToTextList(UI_W_FAX, data, "fax", list, true);		uiSectName = "icq_client";		addToTextList(UI_ICQ_CLIENT, data, "icq_client", list, true);		addToTextList(UI_CAPS, data, "cli_caps", list, true);				uiSectName = "dc_info";		addToTextList(UI_ONLINE_STATUS, data, "status", list, true);		addToTextList(UI_XSTATUS, data, "xstatus", list, true);		addToTextList(UI_REG_DATE, data, "li_reg_date", list, true);		addToTextList(UI_SIGNON, data, "li_signon_time", list, true);		addToTextList(UI_ONLINETIME, data, "li_online_time", list, true);		addToTextList(UI_IDLE_TIME, data, "li_idle_time", list, true);		addToTextList(UI_ICQ_VERS, data, "ICQ version", list, true);		addToTextList(UI_INT_IP, data, "Int IP", list, true);		addToTextList(UI_EXT_IP, data, "Ext IP", list, true);		addToTextList(UI_PORT, data, "Port", list, true);	}	///////////////////////////////////////////////////////////////////////////	///////////////////////////////////////////////////////////////////////////	///////////////////////////////////////////////////////////////////////////	static private TextList infoTextList = null;	//#sijapp cond.if target!="DEFAULT" & modules_AVATARS="true"#
	static public void updateActiveUserInfo(String uin)	{		if (infoTextList != null)		{			if (infoTextList.isActive())			{				try				{					ContactItem cItem = ContactList.getItembyUIN(uin);					Image image = cItem.getImage(ContactItem.CONTACTITEM_BUDDYICON);					if (image != null)					{						infoTextList.insertImage(image, null, -1, 0).doCRLF(-1);						infoTextList.repaint();					}					image = null;				} catch (Exception ignore) {/* Do nothing */}			}		}	}	//  #sijapp cond.end#	static public void requiestUserInfo(String uin, String name, boolean allowToEdit		//#sijapp cond.if target!="DEFAULT" & modules_AVATARS="true"#
		, byte[] hash		//  #sijapp cond.end#		)	{		infoTextList = getInfoTextList(uin, false);		infoTextList.setCommandListener(_this);		if (Icq.isConnected())		{			if (allowToEdit)				infoTextList.addCommandEx(cmdEdit, VirtualList.MENU_TYPE_RIGHT);			//#sijapp cond.if target!="DEFAULT" & modules_AVATARS="true"#
			if (hash != null) {				ContactItem cItem = ContactList.getItembyUIN(uin);				if (cItem.iconReady())				{					RequestBuddyIconAction act = new RequestBuddyIconAction(uin,hash);					try					{						Icq.requestAction(act);					} catch (JimmException e)					{						System.out.println ("Exception!");							JimmException.handleException(e);						if (e.isCritical())							return;					}					SplashCanvas.addTimerTask(act);				}			}			//  #sijapp cond.end#			RequestInfoAction act = new RequestInfoAction(uin, name);			infoTextList.addCommandEx(cmdCancel, VirtualList.MENU_TYPE_LEFT_BAR);			try			{				Icq.requestAction(act);			} catch (JimmException e)			{				JimmException.handleException(e);				if (e.isCritical())					return;			}			infoTextList.add(ResourceBundle.getString("wait"));			showInfoTextList(infoTextList);		} else		{			String[] data = new String[JimmUI.UI_LAST_ID];			data[JimmUI.UI_NICK] = name;			data[JimmUI.UI_UIN] = uin;			data[JimmUI.UI_UIN_LIST] = uin;			showUserInfo(data);			showInfoTextList(infoTextList);		}	}	static private String[] last_user_info;	static public void showUserInfo(String[] data)	{		last_user_info = data;		if (infoTextList == null) return;		infoTextList.clear();		//#sijapp cond.if target!="DEFAULT" & modules_AVATARS="true"#
		try		{			ContactItem cItem = ContactList.getItembyUIN(data[JimmUI.UI_UIN]);			Image image = cItem.getImage(ContactItem.CONTACTITEM_BUDDYICON);			if (image != null) infoTextList.insertImage(image, null, -1, 0).doCRLF(-1);			image = null;		} catch (Exception ignore) {/*Do nothing*/}		//  #sijapp cond.end#		JimmUI.fillUserInfo(data, infoTextList);		infoTextList.removeCommandEx(cmdCancel);		infoTextList.addCommandEx(cmdBack, VirtualList.MENU_TYPE_LEFT_BAR);//#sijapp cond.if target!="RIM"#				infoTextList.addCommandEx(cmdMenu, VirtualList.MENU_TYPE_RIGHT_BAR);//#sijapp cond.end#				infoTextList.addCommandEx(cmdCopyText, VirtualList.MENU_TYPE_RIGHT);		infoTextList.addCommandEx(cmdCopyAll, VirtualList.MENU_TYPE_RIGHT);	}	static public TextList getInfoTextList(String caption, boolean addCommands)	{		infoTextList = new TextList(null);		//#sijapp cond.if target is "MIDP2" | target is "MOTOROLA"#		infoTextList.setFontSize(Font.SIZE_MEDIUM);		//#sijapp cond.else#		//#		infoTextList.setFontSize(Font.SIZE_SMALL);		//#sijapp cond.end#		infoTextList.setCaption(caption);		JimmUI.setColorScheme(infoTextList, false, -1, true);		infoTextList.setMode(VirtualList.CURSOR_MODE_DISABLED);		if (addCommands)		{			infoTextList.addCommandEx(cmdBack, VirtualList.MENU_TYPE_LEFT_BAR);//#sijapp cond.if target!="RIM"#			infoTextList.addCommandEx(cmdMenu, VirtualList.MENU_TYPE_RIGHT_BAR);//#sijapp cond.end#						infoTextList.addCommandEx(cmdCopyText, VirtualList.MENU_TYPE_RIGHT);			infoTextList.addCommandEx(cmdCopyAll, VirtualList.MENU_TYPE_RIGHT);			infoTextList.setCommandListener(_this);		}		return infoTextList;	}	static public void showInfoTextList(TextList list)	{		list.activate(Jimm.display);	}	///////////////////////////////////////////////////////////////////////////	///////////////////////////////////////////////////////////////////////////	///////////////////////////////////////////////////////////////////////////	static public String[] stdSelector = Util.explode("currect_contact" + "|"			+ "all_contact_except_this" + "|" + "all_contacts", '|');	static private TextList lstSelector;	static private int lastSelectedItemIndex;	static public void showSelector(String caption, String[] elements,			CommandListener listener, int tag, boolean translateWords)	{		curScreenTag = tag;		lstSelector = new TextList (ResourceBundle.getString(caption));		JimmUI.setColorScheme(lstSelector, false, -1, true);		lstSelector.setCyclingCursor(true);		lstSelector.setMode(VirtualList.CURSOR_MODE_DISABLED);		lstSelector.setFontSize(Font.SIZE_LARGE);		for (int i = 0; i < elements.length; i++) JimmUI.addTextListItem(lstSelector, elements[i], null, i, translateWords, -1, Font.STYLE_PLAIN);		lstSelector.addCommandEx(cmdOk, VirtualList.MENU_TYPE_RIGHT_BAR);		lstSelector.addCommandEx(cmdCancel, VirtualList.MENU_TYPE_LEFT_BAR);		lstSelector.setCommandListener(_this);		JimmUI.listener = listener;		lstSelector.activate(Jimm.display);	}	static public int getLastSelIndex()	{		return lastSelectedItemIndex;	}	///////////////////////////////////////////////////////////////////////////	///////////////////////////////////////////////////////////////////////////	///////////////////////////////////////////////////////////////////////////	static public void addMessageText(TextList textList, String text, int color,			int messTotalCounter)	{		//#sijapp cond.if modules_SMILES_STD="true" | modules_SMILES_ANI="true" #		Emotions.addTextWithEmotions(textList, text, Font.STYLE_PLAIN, color, messTotalCounter);		//#sijapp cond.else#		//#		textList.addBigText(text, textList.getTextColor(), Font.STYLE_PLAIN, messTotalCounter);		//#sijapp cond.end#		textList.doCRLF(messTotalCounter);	}/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////		final private static ImageList messImgList = new ImageList();	final private static ImageList statusImgList = new ImageList();	final public static ImageList xStatusImages  = new ImageList();		final public static Image statusEvilImg;	final public static Image statusDepressionImg;	final public static Image statusHomeImg;	final public static Image statusWorkImg;	final public static Image statusLunchImg;	final public static Image statusAwayImg;	final public static Image statusChatImg;	final public static Image statusDndImg;	final public static Image statusInvisibleImg;	final public static Image statusNaImg;	final public static Image statusOccupiedImg;	final public static Image statusOfflineImg;	final public static Image statusOnlineImg;	final public static Image eventPlainMessageImg;	final public static Image eventUrlMessageImg;	final public static Image eventSystemNoticeImg;	final public static Image eventSysActionImg;	final public static Image imgTyping;	final public static Image imgMessDeliv;	final public static Image imgNoAuth;		final public static StatusInfo[] statusInfos;		static	{//#sijapp cond.if target="MIDP2" | target="SIEMENS2"#		int imgScale = Options.getInt(Options.OPTION_IMG_SCALE);		statusImgList.setScale(imgScale);		xStatusImages.setScale(imgScale);		messImgList.setScale(imgScale);//#sijapp cond.end#				boolean isNokia = Jimm.getPhoneVendor() == Jimm.PHONE_NOKIA;				try { statusImgList.load("/statuses.png", -1, -1, -1, isNokia); } catch (Exception e) {}		try { xStatusImages.load("/xstatus.png", -1, -1, -1, isNokia); } catch (Exception e) {}		try { messImgList.load("/messages.png", -1, -1, -1, isNokia); } catch (Exception e) {}						statusAwayImg        = statusImgList.elementAt(0);		statusChatImg        = statusImgList.elementAt(1);		statusDndImg         = statusImgList.elementAt(2);		statusInvisibleImg   = statusImgList.elementAt(3);		statusNaImg          = statusImgList.elementAt(4);		statusOccupiedImg    = statusImgList.elementAt(5);		statusOfflineImg     = statusImgList.elementAt(6);		statusOnlineImg      = statusImgList.elementAt(7);		statusEvilImg        = statusImgList.elementAt(8);		statusDepressionImg  = statusImgList.elementAt(9);		statusHomeImg        = statusImgList.elementAt(10);		statusWorkImg        = statusImgList.elementAt(11);		statusLunchImg       = statusImgList.elementAt(12);		imgNoAuth            = statusImgList.elementAt(13);				eventPlainMessageImg = messImgList.elementAt(0);		eventUrlMessageImg   = messImgList.elementAt(1);		eventSystemNoticeImg = messImgList.elementAt(2);		eventSysActionImg    = messImgList.elementAt(3);		imgTyping            = messImgList.elementAt(4);		imgMessDeliv         = messImgList.elementAt(5);				Vector data = new Vector(); 				/* Normal statuses */		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_ONLINE,     "status_online",     statusOnlineImg,     StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR|StatusInfo.FLAG_STD);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_CHAT,       "status_chat",       statusChatImg,       StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR|StatusInfo.FLAG_STD);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_AWAY,       "status_away",       statusAwayImg,       StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR|StatusInfo.FLAG_STD);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_NA,         "status_na",         statusNaImg,         StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR|StatusInfo.FLAG_STD);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_OCCUPIED,   "status_occupied",   statusOccupiedImg,   StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR|StatusInfo.FLAG_STD);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_DND,        "status_dnd",        statusDndImg,        StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR|StatusInfo.FLAG_STD);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_INVISIBLE,  "status_invisible",  statusInvisibleImg,  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_INVIS_ALL,  "status_invis_all",  statusInvisibleImg,  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_EVIL,       "status_evil",       statusEvilImg,       StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_DEPRESSION, "status_depression", statusDepressionImg, StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_HOME,       "status_home",       statusHomeImg,       StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_WORK,       "status_work",       statusWorkImg,       StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_LUNCH,      "status_lunch",      statusLunchImg,      StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_STATUS, ContactList.STATUS_OFFLINE,    "status_offline",    statusOfflineImg,    0);				/* Extended statuses */		addStatusInfo(data, StatusInfo.TYPE_X_STATUS,   -2, "xstatus_none",            null,                        StatusInfo.FLAG_IN_MENU);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x17, "xstatus_angry",           xStatusImages.elementAt(0),  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x01, "xstatus_duck",            xStatusImages.elementAt(1),  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x02, "xstatus_tired",           xStatusImages.elementAt(2),  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x03, "xstatus_party",           xStatusImages.elementAt(3),  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x04, "xstatus_beer",            xStatusImages.elementAt(4),  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x05, "xstatus_thinking",        xStatusImages.elementAt(5),  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x06, "xstatus_eating",          xStatusImages.elementAt(6),  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x07, "xstatus_tv",              xStatusImages.elementAt(7),  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x08, "xstatus_friends",         xStatusImages.elementAt(8),  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x09, "xstatus_coffee",          xStatusImages.elementAt(9),  StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x0A, "xstatus_music",           xStatusImages.elementAt(10), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x0B, "xstatus_business",        xStatusImages.elementAt(11), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x0C, "xstatus_camera",          xStatusImages.elementAt(12), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x0D, "xstatus_funny",           xStatusImages.elementAt(13), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x0E, "xstatus_phone",           xStatusImages.elementAt(14), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x0F, "xstatus_games",           xStatusImages.elementAt(15), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x10, "xstatus_college",         xStatusImages.elementAt(16), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);		addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x00, "xstatus_shopping",        xStatusImages.elementAt(17), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x11, "xstatus_sick",            xStatusImages.elementAt(18), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x12, "xstatus_sleeping",        xStatusImages.elementAt(19), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x13, "xstatus_surfing",         xStatusImages.elementAt(20), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x14, "xstatus_internet",        xStatusImages.elementAt(21), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x15, "xstatus_engineering",     xStatusImages.elementAt(22), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x16, "xstatus_typing",          xStatusImages.elementAt(23), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_STD|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x18, "xstatus_unk",             xStatusImages.elementAt(24), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x19, "xstatus_ppc",             xStatusImages.elementAt(25), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x1A, "xstatus_mobile",          xStatusImages.elementAt(26), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x1B, "xstatus_man",             xStatusImages.elementAt(27), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x1C, "xstatus_wc",              xStatusImages.elementAt(28), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x1D, "xstatus_question",        xStatusImages.elementAt(29), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x1E, "xstatus_way",             xStatusImages.elementAt(30), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x1F, "xstatus_heart",           xStatusImages.elementAt(31), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x20, "xstatus_cigarette",       xStatusImages.elementAt(32), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x21, "xstatus_sex",             xStatusImages.elementAt(33), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x22, "xstatus_rambler_search",  xStatusImages.elementAt(34), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);        addStatusInfo(data, StatusInfo.TYPE_X_STATUS, 0x23, "xstatus_rambler_journal", xStatusImages.elementAt(35), StatusInfo.FLAG_IN_MENU|StatusInfo.FLAG_HAVE_DESCR);				statusInfos = new StatusInfo[data.size()];		data.copyInto(statusInfos);	}		public static StatusInfo findStatus(int type, int value)	{		for (int i = 0; i < statusInfos.length; i++)		{			StatusInfo info = statusInfos[i];			if (info.getType() == type && info.getValue() == value) return info; 		}		return null;	}		private static void addStatusInfo(Vector vct, int type, int value, String text, Image image, int flags)	{		vct.addElement(new StatusInfo(type, value, ResourceBundle.getString(text), image, flags));	}		public static final int SHOW_STATUSES_NAME  = 1 << 0;	public static final int SHOW_STATUSES_DESCR = 1 << 1;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
天堂一区二区在线免费观看| 久久久精品人体av艺术| 日韩午夜激情av| 2020国产精品| 亚洲美女免费在线| 奇米777欧美一区二区| 国产成人av一区二区三区在线| 成人18精品视频| 欧美日韩国产免费一区二区| 精品福利一区二区三区| 成人免费在线视频观看| 免费在线一区观看| 成人综合婷婷国产精品久久 | 精品91自产拍在线观看一区| 国产精品麻豆99久久久久久| 午夜精品在线看| 高清视频一区二区| 911精品国产一区二区在线| 久久久久97国产精华液好用吗| 亚洲一区二区三区四区在线观看| 精品一区在线看| 欧美在线影院一区二区| www成人在线观看| 亚洲大片免费看| 丁香六月综合激情| 日韩视频免费观看高清完整版在线观看| 久久婷婷综合激情| 亚洲国产中文字幕在线视频综合 | 久久一日本道色综合| 亚洲一区二区三区四区的| 国产一区二区在线免费观看| 欧美剧在线免费观看网站| 国产精品网站在线| 激情成人综合网| 欧美日韩一级片在线观看| 国产精品欧美极品| 久久99国内精品| 欧美高清激情brazzers| 亚洲欧美一区二区三区孕妇| 国产一区 二区| 91精品国产综合久久久久久漫画 | 99精品欧美一区二区三区小说| 日韩精品中文字幕一区二区三区| 亚洲视频一区二区免费在线观看| 激情成人午夜视频| 91精品国产乱码久久蜜臀| 一区二区三区在线观看网站| 国产.欧美.日韩| 精品久久国产字幕高潮| 午夜精品福利一区二区蜜股av | 性做久久久久久久久| 91老司机福利 在线| 国产亚洲欧美色| 成人av午夜电影| 欧美精品一区二区三区四区| 首页亚洲欧美制服丝腿| 在线视频一区二区三区| 国产精品久久久久久户外露出| 国内精品在线播放| 日韩精品一区国产麻豆| 青青草原综合久久大伊人精品优势| 欧美日韩一本到| 亚洲一区在线免费观看| 在线观看成人小视频| 亚洲欧美一区二区三区极速播放| 99国产精品久久久久久久久久久| 国产日韩精品一区二区三区 | 日韩一区二区三区精品视频| 亚洲国产日韩a在线播放性色| 色婷婷av久久久久久久| 亚洲精品成人天堂一二三| 91视频你懂的| 一区二区三区免费在线观看| 色噜噜久久综合| 一级女性全黄久久生活片免费| 一本色道亚洲精品aⅴ| 一区二区三区四区蜜桃| 欧美性三三影院| 婷婷六月综合亚洲| 91精品在线免费| 美女视频黄免费的久久| 日韩精品最新网址| 国产中文一区二区三区| 国产欧美日韩激情| 91年精品国产| 午夜精品视频一区| 日韩美女视频在线| 国产高清精品网站| 国产精品久久久久婷婷二区次| 99久久99久久久精品齐齐| 亚洲精品成人少妇| 欧美精品 国产精品| 精品影院一区二区久久久| 国产亚洲福利社区一区| 99久久精品国产毛片| 亚洲一区av在线| 日韩视频在线观看一区二区| 国产乱码精品一区二区三| 中文字幕一区二区三区蜜月| 91九色最新地址| 免费欧美日韩国产三级电影| 26uuu另类欧美| 不卡的看片网站| 亚洲欧美偷拍另类a∨色屁股| 欧美精品乱码久久久久久| 久草在线在线精品观看| 国产精品久久久久久久午夜片| 色综合久久88色综合天天免费| 日本中文字幕一区| 日本一区免费视频| 欧美亚洲综合另类| 极品美女销魂一区二区三区| 国产精品久久午夜夜伦鲁鲁| 欧美午夜影院一区| 精品写真视频在线观看| 亚洲欧美一区二区三区国产精品 | 日本亚洲最大的色成网站www| 久久色.com| 久久免费美女视频| av电影在线不卡| 日韩精品电影一区亚洲| 欧美激情一区二区三区蜜桃视频| 欧美在线观看视频一区二区三区| 久久国产尿小便嘘嘘尿| 亚洲视频一二三区| 精品国产自在久精品国产| 99精品国产91久久久久久| 日本中文字幕一区| 亚洲人成在线观看一区二区| 欧美一卡二卡三卡| 一本到三区不卡视频| 激情文学综合插| 亚洲成人免费视频| 国产精品久久久久久久久晋中 | 视频一区欧美日韩| 国产精品乱码一区二区三区软件| 欧美精品aⅴ在线视频| 99久久综合国产精品| 蜜桃视频一区二区三区| 一区二区三区四区五区视频在线观看 | 久久久久久久久久久久久久久99 | 亚洲成av人**亚洲成av**| 欧美激情综合五月色丁香| 欧美一区二区人人喊爽| 色婷婷香蕉在线一区二区| 国产美女主播视频一区| 午夜不卡av在线| 亚洲欧美日韩国产综合| 日本一区二区免费在线| 91精品欧美一区二区三区综合在| 色吊一区二区三区| 成人黄色一级视频| 国产精品一卡二卡在线观看| 日韩电影免费在线看| 亚洲柠檬福利资源导航| 国产精品无遮挡| 国产欧美一区二区三区沐欲| 日韩亚洲欧美在线| 在线不卡一区二区| 在线观看视频91| 色狠狠色噜噜噜综合网| 91伊人久久大香线蕉| 国产传媒日韩欧美成人| 韩国av一区二区三区| 久久精品国产亚洲高清剧情介绍| 亚洲国产日韩a在线播放性色| 亚洲另类春色国产| 国产精品久久久久久久久动漫 | www.亚洲色图.com| 国产精品一二一区| 久久se精品一区二区| 日韩成人一级大片| 首页国产欧美日韩丝袜| 午夜精品久久久久久久| 亚洲五码中文字幕| 国产真实乱偷精品视频免| 久久国产乱子精品免费女| 麻豆精品一区二区av白丝在线| 三级影片在线观看欧美日韩一区二区| 一区二区三区欧美视频| 一区二区三区高清| 亚洲综合成人在线| 一区二区高清在线| 亚洲二区视频在线| 亚洲一区二区三区中文字幕| 亚洲国产中文字幕在线视频综合 | 欧美精品久久一区二区三区| 欧美三级中文字幕在线观看| 欧美性受xxxx| 欧美日韩国产a| 91精品国产乱| 精品88久久久久88久久久| 久久精品亚洲国产奇米99| 国产清纯白嫩初高生在线观看91| 国产人久久人人人人爽| 国产精品久久久久久久久免费桃花 | 日韩精品三区四区| 免费在线观看视频一区| 激情欧美一区二区| 成人avav影音|