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

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

?? virtuallist.java.svn-base

?? 類似QQ的功能
?? SVN-BASE
?? 第 1 頁 / 共 5 頁
字號:
		catch (Exception e) {}		return KEY_CODE_UNKNOWN;	}	protected void keyPressed(int keyCode)	{		doKeyreaction(keyCode, KEY_PRESSED);	}		private CommandListener commandListener;	public void setCommandListener(CommandListener l)	{		commandListener = l;		if (isActive()) virtualCanvas.setCommandListener(commandListener);	}		protected boolean executeCommand(Command command)	{		if ((commandListener != null) && (command != null))		{			commandListener.commandAction(command, null);			return true;		}		return false;	}	protected void keyRepeated(int keyCode)	{		doKeyreaction(keyCode, KEY_REPEATED);	}	protected void keyReleased(int keyCode)	{		doKeyreaction(keyCode, KEY_RELEASED);	}	//#sijapp cond.if target is "MIDP2"#	private static long lastPointerTime = 0;	private static int lastPointerYCrd = -1;	private static int lastPointerXCrd = -1;	private static int lastPointerTopItem = -1;	protected void pointerDragged(int x, int y)	{		if (lastPointerTopItem == -1) return;		int height = getHeightInternal() - getCapHeight();		int itemCount = getSize();		int visCount = getVisCount();		if (itemCount == visCount) return;		storelastItemIndexes();		topItem = lastPointerTopItem + (itemCount) * (y - lastPointerYCrd) / height;		if (topItem < 0) topItem = 0;		if (topItem > (itemCount - visCount)) topItem = itemCount - visCount;		repaintIfLastIndexesChanged();	}	protected boolean pointerPressedOnUtem(int index, int x, int y, int mode)	{		return false;	}	protected void pointerPressed(int x, int y)	{		// is pointing on scroller		if (x >= (getWidthInternal() - 3 * scrollerWidth))		{			if ((srcollerY1 <= y) && (y < srcollerY2))			{				lastPointerYCrd = y;				lastPointerTopItem = topItem;				return;			}		}		lastPointerTopItem = -1;				int mode = DMS_CLICK;		long time = System.currentTimeMillis();				if (((time - lastPointerTime) < 500) && 				(Math.abs(x - lastPointerXCrd) < 10) && 				(Math.abs(y - lastPointerYCrd) < 10)) mode = DMS_DBLCLICK;				if (bDIimage == null) bDIimage = Image.createImage(getWidthInternal(), getHeightInternal());		paintAllOnGraphics(bDIimage.getGraphics(), mode, x, y);				lastPointerXCrd = x;		lastPointerYCrd = y;		lastPointerTime = time;	}		protected void pointerReleased(int x, int y)	{			}	//#sijapp cond.end#		static public void setBottomText(String text)	{		if ((bottomText != null) && bottomText.equals(text)) return;		bottomText = text;		if ((virtualCanvas != null) && virtualCanvas.isShown()) virtualCanvas.repaint();	}	//! Set caption text for list	public void setCaption(String capt)	{		if ((caption != null) && (caption.equals(capt))) return;		caption = capt;//#sijapp cond.if target="MIDP2" | target="MOTOROLA" | target="SIEMENS2" | target="RIM"#		if (!fullScreen) invalidate(0, 0, getWidth(), getCapHeight());//#sijapp cond.else#		invalidate(0, 0, getWidth(), getCapHeight());//#sijapp cond.end#	}	public String getCaption()	{		return caption;	}	public void setTopItem(int index)	{		storelastItemIndexes();		currItem = topItem = index;		checkTopItem();		repaintIfLastIndexesChanged();	}	// public void setCurrentItem(int index)	public void setCurrentItem(int index)	{		storelastItemIndexes();		currItem = index;		checkTopItem();		repaintIfLastIndexesChanged();	}	// public int getCurrIndex()	public int getCurrIndex()	{		return currItem;	}	// Return height of caption in pixels	protected final int getCapHeight()	{		//#sijapp cond.if target is "MIDP2" | target is "MOTOROLA" | target is "SIEMENS2" | target="RIM"#		if (fullScreen) return curFrameWidth;		//#sijapp cond.end#		int capHeight = 0;		if (caption != null) capHeight = capAndMenuFont.getHeight() + 2;		if (capImages != null)		{			int imgHeight = capImagesHeight + 2;			if (imgHeight > capHeight) capHeight = imgHeight;		}		return capHeight + 1;	}		protected void afterDrawCaption(Graphics g, int height) {}	// private int drawCaption(Graphics g)	protected int drawCaption(Graphics g, int mode, int curX, int curY)	{		if (caption == null) return 0;				if (mode != DMS_DRAW) return getCapHeight();				int width = getWidthInternal();				//#sijapp cond.if target is "MIDP2" | target is "MOTOROLA" | target is "SIEMENS2"#		if (fullScreen)		{			if (mode == DMS_DRAW)			{				g.setColor(bkgrndColor);				g.fillRect(0, 0, width, curFrameWidth);			}			return curFrameWidth;		}		//#sijapp cond.end#				g.setFont(capAndMenuFont);		int height = getCapHeight();		drawRect(g, capBkCOlor, transformColorLight(capBkCOlor, -64), 0, 0, width, height, 255);		g.setColor(transformColorLight(capBkCOlor, -128));		g.drawLine(0, height - 1, width, height - 1);		int x = 2+(capOffset*width-2)/100;		if (capImages != null)		{			for (int i = 0; i < capImages.length; i++)			{				Image img = capImages[i];				if (img == null) continue;				g.drawImage(img, x, (height - img.getHeight()) / 2, Graphics.TOP | Graphics.LEFT);				x += img.getWidth() + 1;			}		}		if (mpbEnable) {			int progressW = (width - x - 4);			int progressPx = (progressW - 2)  / 100 * mpbPercent;			if (progressPx > 0) {				g.setColor(0xffffff); g.fillRect(x, 2, progressW, height - 4);				g.setColor(0x00aa00); g.fillRect(x+1, 3, progressPx, height - 6);			}			if (mpbPercent > 99) {				mpbEnable = false;				mpbPercent = 0;			}		} else {			g.setColor(capTxtColor);			g.drawString(caption, x, (height - capAndMenuFont.getHeight()) / 2, Graphics.TOP | Graphics.LEFT);		}				//#sijapp cond.if modules_DEBUGLOG is "true"#		int ram=(int)((Runtime.getRuntime().freeMemory()*32)/Runtime.getRuntime().totalMemory());		g.setColor(0xffffff);  g.fillRect(width-54, 0, 34, 3);		g.setColor(0x00ff00);  g.fillRect(width-53, 1, ram, 2);		//#sijapp cond.end #		afterDrawCaption(g, height);				return height;	}	protected boolean isItemSelected(int index)	{		return ((currItem == index) && (cursorMode != CURSOR_MODE_DISABLED));	}	private static int srcollerY1 = -1;	private static int srcollerY2 = -1;	// Draw scroller is items doesn't fit in VL area 	private void drawScroller(Graphics g, int topY, int visCount, int menuBarHeight)	{		int width = getWidthInternal() - scrollerWidth;		int height = getHeightInternal()-menuBarHeight;		int itemCount = getSize();		boolean haveToShowScroller = ((itemCount > visCount) && (itemCount > 0));		int color = transformColorLight(bkgrndColor, -16);		if (color == 0) color = 0x808080;		g.setStrokeStyle(Graphics.SOLID);		g.setColor(color);		g.fillRect(width + 1, topY, scrollerWidth - 1, height - topY);		g.setColor(transformColorLight(color, -64));		g.drawLine(width, topY, width, height);		if (haveToShowScroller)		{			int sliderSize = (height - topY) * visCount / itemCount;			if (sliderSize < 7) sliderSize = 7;			srcollerY1 = topItem * (height - sliderSize - topY) / (itemCount - visCount) + topY;			srcollerY2 = srcollerY1 + sliderSize;			color = capBkCOlor;			g.setColor(color);			g.fillRect(width+1, srcollerY1+1, scrollerWidth-2, srcollerY2-srcollerY1-2);			g.setColor(mergeColors(color, 0, 70));			g.drawRect(width, srcollerY1, scrollerWidth - 1, srcollerY2 - srcollerY1 - 1);			g.setColor(transformColorLight(color, 96));			g.drawLine(width+1, srcollerY1+1, width+1, srcollerY2-3);			g.drawLine(width+1, srcollerY1+1, width+scrollerWidth-2, srcollerY1+1);		}	}//#sijapp cond.if target!="DEFAULT"#		private static int[] menuBarBackground;	private static int menuBarBackgroundColor1 = -1;	private static int menuBarBackgroundColor2 = -1;	private static int[] getMenuBarBackground(int width, int height, int color1, int color2)	{		if (color1 == menuBarBackgroundColor1 && color2 == menuBarBackgroundColor2 && menuBarBackground != null)			return menuBarBackground;		menuBarBackground = new int[height*width];				int r1 = ((color1 & 0xFF0000) >> 16);		int g1 = ((color1 & 0x00FF00) >> 8);		int b1 = (color1 & 0x0000FF);		int r2 = ((color2 & 0xFF0000) >> 16);		int g2 = ((color2 & 0x00FF00) >> 8);		int b2 = (color2 & 0x0000FF);				int width2 = width/2;		int width3 = width/3;		int idx = 0;		int r = 0;		int g = 0;		int b = 0;		int dist = 0;		int diff = 0;		int new_r = 0;		int new_g = 0;		int new_b = 0;		int color = 0;		for (int y = 0; y < height; y++)		{			r = y * (r2 - r1) / (height-1) + r1;			g = y * (g2 - g1) / (height-1) + g1;			b = y * (b2 - b1) / (height-1) + b1;						for (int x = 0; x < width; x++)			{				dist = x-width2;								if (dist < 0) dist = -dist;				dist = width3-dist;				if (dist < 0) dist = 0;				diff = 96*dist/width3;								new_r = r+diff;				new_g = g+diff;				new_b = b+diff;								if (new_r < 0) new_r = 0;				if (new_r > 255) new_r = 255;				if (new_g < 0) new_g = 0;				if (new_g > 255) new_g = 255;				if (new_b < 0) new_b = 0;				if (new_b > 255) new_b = 255;								color = (new_r << 16) | (new_g << 8) | (new_b);				menuBarBackground[idx++] = color;			}		}				menuBarBackgroundColor1 = color1;		menuBarBackgroundColor2 = color2;		return menuBarBackground;	}//#sijapp cond.end#		private static int[] alphaBuffer = null;	private static int lastRectHeight;	private static int lastRectColor1;	private static int lastRectColor2;			static public void drawRect(Graphics gr, int color1, int color2, int x1, int y1, int x2, int y2, int alpha)	{		int r1 = ((color1 & 0xFF0000) >> 16);		int g1 = ((color1 & 0x00FF00) >> 8);		int b1 = (color1 & 0x0000FF);		int r2 = ((color2 & 0xFF0000) >> 16);		int g2 = ((color2 & 0x00FF00) >> 8);		int b2 = (color2 & 0x0000FF);				if (alpha == 255)		{			int count = (y2-y1)/3;			if (count < 0) count = -count;			if (count < 8) count = 8;						y2++;			x2++;			int crd1 = 0;			int crd2 = 0;			for (int i = 0; i < count; i++)			{				crd1 = i * (y2 - y1) / count + y1;				crd2 = (i + 1) * (y2 - y1) / count + y1;				if (crd1 == crd2) continue;				gr.setColor(i * (r2 - r1) / (count-1) + r1, i * (g2 - g1) / (count-1) + g1, i * (b2 - b1) / (count-1) + b1);				gr.fillRect(x1, crd1, x2-x1, crd2-crd1);			}		}//#sijapp cond.if target!="DEFAULT"#				else		{			int alphaValue = alpha << 24;			int width = x2-x1;			int height = y2-y1;			if (width <= 0 || height <= 1) return; 						int spaceRequired = 32*height;			if (alphaBuffer == null || alphaBuffer.length < spaceRequired)			{				alphaBuffer = null;				alphaBuffer = new int[spaceRequired];			}						if (lastRectHeight != height || lastRectColor1 != color1 || lastRectColor2 != color2)			{				int idx = 0;				int crd1 = 0;				int crd2 = 0;				int r = 0;				int g = 0;				int b = 0;								int color = 0;				for (int y = 0; y < height; y++)				{					crd1 = y * (y2 - y1) / height;					crd2 = (y + 1) * (y2 - y1) / height;					if (crd1 == crd2) continue;										r = y * (r2 - r1) / (height-1) + r1;					g = y * (g2 - g1) / (height-1) + g1;					b = y * (b2 - b1) / (height-1) + b1;										color = (r << 16) | (g << 8) | (b) | (alphaValue);										for (int x = 0; x < 32; x++) alphaBuffer[idx++] = color;				}				lastRectHeight = height;				lastRectColor1 = color1;				lastRectColor2 = color2;			}						int totalWidth = width;			for (int x = x1; x < x2; x += 32)			{				gr.drawRGB(alphaBuffer, 0, 32, x, y1, (totalWidth > 32) ? 32 : totalWidth, height, true);				totalWidth -= 32;			}		}//#sijapp cond.end#			}		/**	 * @return Returns height of normal font (in pixels)	 */	public int getFontHeight()	{		return fontHeight;	}		protected void getCurXVals(int[] values)	{		values[0] = curFrameWidth+1;		values[1] = getWidthInternal() - scrollerWidth - curFrameWidth;	}	protected final boolean drawItems	(		Graphics g, 		int topY, 		int menuBarHeight, 		int mode, 		int mouseX, 		int mouseY, 		int clipY1, 		int clipY2	)	{		int height = getDrawHeight();		int size = getSize();		int i, y;		int itemWidth = getWidthInternal() - scrollerWidth;		int bottomY = topY+height;				if ((mode == DMS_DRAW) && (!crdIntersect(topY, bottomY, clipY1, clipY2))) return false;		// Draw items		paintedItem.clear();		y = topY;		int itemHeight = 0;		int x1 = 0;		int x2 = 0;		int y1 = 0;		int y2 = 0;		for (i = topItem; i < size; i++)		{			itemHeight = getItemHeight(i);			if (g != null) g.setStrokeStyle(Graphics.SOLID);						x1 = borderWidth;			x2 = itemWidth-2;			y1 = y;			y2 = y + itemHeight;			if ((mode == DMS_DRAW || mode == DMS_CUSTOM)/* && */)			{				if (crdIntersect(y1, y2, clipY1, clipY2))

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
最新欧美精品一区二区三区| 欧美日韩精品高清| 在线亚洲+欧美+日本专区| 欧美日本视频在线| 2023国产精品自拍| 一区二区三区国产豹纹内裤在线| 午夜精品免费在线观看| 日韩av电影免费观看高清完整版在线观看 | 日韩激情在线观看| 国产一区二区导航在线播放| av综合在线播放| 欧美一级黄色大片| 中文字幕亚洲欧美在线不卡| 五月婷婷久久综合| 成人综合婷婷国产精品久久蜜臀| 欧美色视频在线| 国产欧美一区视频| 日韩国产高清在线| 丁香婷婷深情五月亚洲| 欧美精品日韩精品| 国产精品免费av| 日韩成人午夜精品| av不卡免费电影| 日韩欧美色电影| 一区二区三区鲁丝不卡| 久久99国产精品成人| 欧美亚州韩日在线看免费版国语版| 精品乱人伦小说| 一区二区三区波多野结衣在线观看| 狠狠网亚洲精品| 欧洲一区二区三区在线| 亚洲国产精品视频| 国产乱码精品一区二区三区忘忧草| 欧美性色黄大片| 日本一区二区不卡视频| 男女男精品视频网| 在线这里只有精品| 中文字幕一区二| 精品综合久久久久久8888| 欧美亚洲综合网| 国产精品卡一卡二| 国产精品一卡二卡在线观看| 欧美日韩精品欧美日韩精品一| 国产精品久久久久久久久免费樱桃 | 国内久久精品视频| 7777精品伊人久久久大香线蕉完整版| 国产欧美一区视频| 韩国欧美国产一区| 91精品国产一区二区三区蜜臀| 亚洲人成亚洲人成在线观看图片| 久99久精品视频免费观看| 欧美日韩一区在线观看| 亚洲色图另类专区| 成人丝袜18视频在线观看| 日韩视频在线永久播放| 亚洲成av人综合在线观看| 91在线播放网址| 国产精品久线在线观看| 国产福利一区二区三区| 2023国产一二三区日本精品2022| 开心九九激情九九欧美日韩精美视频电影 | 精品粉嫩aⅴ一区二区三区四区| 丝袜国产日韩另类美女| 在线欧美日韩国产| 一区二区三区自拍| 91丨porny丨中文| 亚洲人成网站色在线观看| 成人性生交大片| 欧美国产精品v| 成人午夜免费视频| 中文字幕一区二区在线播放| 国产不卡在线一区| 中文字幕精品一区| av在线播放一区二区三区| 亚洲欧洲精品一区二区三区| 成人免费看黄yyy456| 欧美国产精品劲爆| aaa国产一区| 亚洲免费av高清| 日本韩国欧美在线| 成人精品免费视频| 国产精品超碰97尤物18| 福利视频网站一区二区三区| 2024国产精品| 粉嫩在线一区二区三区视频| 国产精品素人视频| 成人av网址在线| 日本一区二区三区国色天香| 国产精品一区二区久激情瑜伽| 精品国产一区二区亚洲人成毛片| 日本欧美一区二区在线观看| 亚洲第一精品在线| 欧美日韩成人综合在线一区二区| 亚洲天堂成人在线观看| 色综合天天综合网天天狠天天| 亚洲精品国产精华液| 欧美日本精品一区二区三区| 日韩激情在线观看| 久久先锋资源网| 欧美日韩一区二区在线观看视频| 午夜伦理一区二区| 精品久久久久久亚洲综合网 | 欧美一区二区三区视频在线观看 | 久久久久久影视| 97成人超碰视| 天天综合色天天综合| 精品免费99久久| 99久久精品久久久久久清纯| 亚洲黄一区二区三区| 欧美一区二区福利在线| 国产不卡视频在线播放| 一区二区免费在线| 日韩亚洲欧美成人一区| 国产高清精品久久久久| 一区二区三区在线免费播放| 欧美一级日韩免费不卡| 国产不卡一区视频| 亚洲在线观看免费| 久久先锋资源网| 欧美午夜精品久久久久久孕妇| 精品一区二区在线视频| 亚洲天堂中文字幕| 日韩欧美一区二区三区在线| 成人黄色777网| 日本免费新一区视频| 国产精品看片你懂得| 欧美一区二区啪啪| 99热国产精品| 久久精品免费观看| 玉足女爽爽91| 国产亚洲1区2区3区| 欧美日本不卡视频| 不卡的看片网站| 麻豆91精品视频| 亚洲精品综合在线| 国产网站一区二区三区| 69久久夜色精品国产69蝌蚪网| 大尺度一区二区| 日本中文在线一区| 亚洲美女偷拍久久| 国产欧美日韩在线视频| 91精品国产91久久综合桃花 | 亚洲综合久久久| 久久久国产精华| 91精品国产综合久久久久久久久久| 不卡的av电影| 国产美女在线精品| 喷白浆一区二区| 亚洲无线码一区二区三区| 国产精品看片你懂得| 2019国产精品| 91精品国产手机| 欧美一a一片一级一片| av电影天堂一区二区在线| 极品少妇xxxx偷拍精品少妇| 天天av天天翘天天综合网色鬼国产 | 亚洲成在人线在线播放| 1区2区3区国产精品| 亚洲成av人片在线观看无码| 中文字幕免费不卡| 精品av综合导航| 日韩一区二区三区av| 在线观看网站黄不卡| 不卡欧美aaaaa| 成人av片在线观看| 粉嫩一区二区三区性色av| 极品少妇xxxx偷拍精品少妇| 免费视频一区二区| 三级精品在线观看| 午夜视频一区二区三区| 亚洲国产精品精华液网站| 亚洲精品中文在线| 亚洲男人电影天堂| 国产精品短视频| 国产精品成人一区二区三区夜夜夜| 久久久久88色偷偷免费| 久久蜜桃一区二区| 久久久一区二区| 国产三级欧美三级日产三级99| 久久伊人中文字幕| 久久免费视频色| 久久久久久亚洲综合影院红桃| 精品91自产拍在线观看一区| 日韩你懂的在线播放| 日韩精品专区在线影院观看| 91精品国产全国免费观看| 欧美久久一二三四区| 91.成人天堂一区| 日韩欧美色综合网站| 日韩免费高清av| 精品日韩av一区二区| 久久女同性恋中文字幕| 久久久久9999亚洲精品| 国产精品网站在线播放| 1024精品合集| 洋洋成人永久网站入口| 亚洲aaa精品| 久久精品久久久精品美女| 国产精品一区一区三区| 成人免费看片app下载|