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

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

?? alert.ecd.c

?? 操作系統SunOS 4.1.3版本的源碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* ------------------------------------------------------------------ *//* font char/pixel conversion routines                                *//* ------------------------------------------------------------------ */static intalert_offset_from_baseline(font)Pixfont *font;{    if (font == NULL)    	return (0);    return (font->pf_char[32].pc_home.y); /* space char */}static intalert_text_width(font, str)    Pixfont	*font;    char	*str;{    struct pr_size    size;        size = pf_textwidth(strlen(str), font, str);    return (size.x);} static intalert_button_width(font, button)    Pixfont		*font;    button_handle	button;{    int text_width = alert_text_width(font, button->string);    return (text_width + ((button->is_yes) ? 16 : 12));}static Pw_pixel_cache *alert_drawbox(pw, rectp, rectsavep, fs)	struct pixwin	   *pw;	struct	rect	   *rectp;	struct	rect	   *rectsavep;	struct	fullscreen *fs;{	struct rect	 temp_rect;	Pw_pixel_cache	*bitmap_under;	Pw_pixel_cache	*pw_save_pixels();	int		 image_x_offset = 			 	IMAGE_OUTSIDE_BOX - (2 * MENU_BORDER);		struct	pixrect *pr;	struct rect	rect;	int	x,y;		/* XXX workaround */		temp_rect = *rectp;	rect = *rectp;	rect.r_width += SHADOW;	rect.r_height += SHADOW;	if ((bitmap_under = pw_save_pixels(pw, &rect)) == 0)		return(0);	*rectsavep = rect;	rect.r_width -= SHADOW;	rect.r_height -= SHADOW;	/*	 * shrink the surface to be prepared by the number of pixels that	 * are hanging outside of the alert_box.  This way, the pw_preparesurface	 * is called(clearing the underlying bits), some bits underneath the	 * "Big alert_box"(defined by the bounding rect that includes the	 * image don't simply get cleared.	 */	temp_rect.r_left += image_x_offset;	temp_rect.r_width -= image_x_offset;	/* draw shadow of prompt box */	pw_preparesurface(pw, &temp_rect);	rect.r_left += SHADOW;	rect.r_top += SHADOW;	pw_preparesurface(pw, &temp_rect);	rect.r_left -= SHADOW;	rect.r_top -= SHADOW;	pw_lock(pw, &alert_screen_rect); /* protect underling pr */	/* restore stuff bitmap_under shadow */	pr = pw_primary_cached_mpr(fs->fs_pixwin, bitmap_under);	pw_write(pw, rect.r_left+rect.r_width, rect.r_top + SHADOW,	    SHADOW, rect.r_height, PIX_SRC, pr,	    rect.r_width, SHADOW);	pw_write(pw, rect.r_left+SHADOW, rect.r_top + rect.r_height,	    rect.r_width,  SHADOW, PIX_SRC, pr,	    SHADOW, rect.r_height);	/* 	 * XXX Workaround for pw_replrop bug.  Get pixwin by hand instead	 */	/* pw_replrop(pw, rect.r_left + SHADOW, rect.r_top + SHADOW,	    rect.r_width, rect.r_height, PIX_SRC|PIX_DST, &alert_gray50_patch, 0, 0);	 */		/* draw drop shadow as source instead of OR (|PIX_DST) */	x = pw->pw_clipdata->pwcd_clipping.rl_bound.r_left;	y = pw->pw_clipdata->pwcd_clipping.rl_bound.r_top;	/* this rect includes a left-offset for the image */	pr_replrop(pw->pw_clipdata->pwcd_prsingle,	    rect.r_left + rect.r_width - x,	    rect.r_top + SHADOW - y,	    SHADOW, rect.r_height, PIX_SRC, 	    &alert_gray50_patch,	    rect.r_left + rect.r_width - x + image_x_offset, 	    rect.r_top + SHADOW - y);	pr_replrop(pw->pw_clipdata->pwcd_prsingle,	    rect.r_left + SHADOW - x + image_x_offset, 	    rect.r_top + rect.r_height - y,	    rect.r_width - SHADOW - image_x_offset,  SHADOW, PIX_SRC, 	    &alert_gray50_patch,	    rect.r_left + SHADOW - x + image_x_offset, 	    rect.r_top + rect.r_height - y);	/* draw border of prompt box */	pw_writebackground(pw, 	    rect.r_left + image_x_offset, 	    rect.r_top,	    rect.r_width - image_x_offset, 	    rect.r_height, PIX_SET);	rect_marginadjust(&rect, - (2 * MENU_BORDER));	pw_writebackground(pw, 	    rect.r_left + image_x_offset, 	    rect.r_top,	    rect.r_width - image_x_offset, 	    rect.r_height, PIX_CLR);	pw_unlock(pw);	*rectp = rect;	return(bitmap_under);}static voidalert_build_button(pw, rect, x, y, button, font)    struct pixwin		*pw;    struct rect			*rect;    int				x, y;    button_handle		button;    struct pixfont		*font;{    struct pr_prpos 	where;	/* where to write the string */    struct pr_size  	size;	/* size of the pixrect */    int			width, height;    char 		*string = button->string;    int			special = button->is_yes;        size = pf_textwidth(strlen(string), font, string);    width = size.x;    where.pr = (special) ?	mem_create(width + 16, size.y + 8, 1)      : mem_create(width + 12, size.y + 4, 1);    if (!where.pr)       return;    where.pos.x = (special) ?	 8 + (width - size.x) / 2       : 6 + (width - size.x) / 2;    where.pos.y = (special) ?	 4 + panel_fonthome(font)       : 2 + panel_fonthome(font);    (void)pf_text(where, PIX_SRC, font, string);       if (special) {	alert_yes_outline_button(where.pr);    } else alert_outline_button(where.pr);    width += ((special) ? 16 : 12);    height = size.y + ((special) ? 8 : 4);    button->button_rect.r_top = y;    button->button_rect.r_left = x;    button->button_rect.r_width = width;    button->button_rect.r_height = height;    pw_write(pw, x, y, width, height, PIX_SRC, where.pr, 0, 0);}/* returns 0 if fails to open fd */static intalert_get_fd(fd)    int	*fd;{    int		windowfd, result, parentlink, parentfd;    Inputmask	new_kbd_mask, new_pick_mask;    char	name[WIN_NAMESIZE];    if (alert_fd) {	*fd = alert_fd;	return(1);    }    windowfd = win_getnewwindow();    if (windowfd < 0)	return(0);    if (we_getparentwindow(name))	return(0);    if ((parentfd = open(name, O_RDONLY, 0)) < 0) 	return(0);    parentlink = win_nametonumber(name);    (void)win_setlink(windowfd, WL_PARENT, parentlink);    (void)win_getrect(parentfd, &alert_screen_rect);    close(parentfd);    (void)win_setrect(windowfd, &alert_screen_rect);    (void)input_imnull(&new_kbd_mask);    new_kbd_mask.im_flags |= IM_ASCII | IM_META | IM_NEGMETA | IM_NEGEVENT;    win_setinputcodebit(&new_kbd_mask, WIN_STOP);#ifdef ecd.help    (void)win_keymap_set_smask(windowfd, ACTION_HELP);    win_keymap_set_imask_from_std_bind(&new_kbd_mask, ACTION_HELP);#endif    (void)win_set_kbd_mask(windowfd, &new_kbd_mask);    (void)input_imnull(&new_pick_mask);    new_pick_mask.im_flags |= IM_NEGEVENT;    win_setinputcodebit(&new_pick_mask, WIN_STOP);    win_setinputcodebit(&new_pick_mask, MS_LEFT);    win_setinputcodebit(&new_pick_mask, MS_MIDDLE);    win_setinputcodebit(&new_pick_mask, MS_RIGHT);;    win_setinputcodebit(&new_pick_mask, LOC_DRAG);;    (void)win_set_pick_mask(windowfd, &new_pick_mask);    *fd = windowfd;    alert_fd = windowfd;    return (1);}static voidalert_outline_button(pr)register Pixrect *pr;/* outline_button draws an outline of a button in pr.*/{   int	x_left		= 0;   int	x_right		= pr->pr_size.x - 1;   int	y_top		= 0;   int	y_bottom	= pr->pr_size.y - 1;   int	x1		= 3;   int	x2		= x_right - 3;   int	y1		= 3;   int	y2		= y_bottom - 3;   /* horizontal lines */   (void)pr_vector(pr, x1, y_top, x2, y_top, PIX_SRC, 1);   (void)pr_vector(pr, x1, y_top + 1, x2, y_top + 1, PIX_SRC, 1);   (void)pr_vector(pr, x1, y_bottom, x2, y_bottom, PIX_SRC, 1);   (void)pr_vector(pr, x1, y_bottom - 1, x2, y_bottom - 1, PIX_SRC, 1);   /* vertical lines */   (void)pr_vector(pr, x_left, y1, x_left, y2, PIX_SRC, 1);   (void)pr_vector(pr, x_left + 1, y1, x_left + 1, y2, PIX_SRC, 1);   (void)pr_vector(pr, x_right, y1, x_right, y2, PIX_SRC, 1);   (void)pr_vector(pr, x_right - 1, y1, x_right - 1, y2, PIX_SRC, 1);   /* left corners */   (void)pr_vector(pr, x_left,     y1,     x1,     y_top, PIX_SRC, 1);   (void)pr_vector(pr, x_left + 1, y1,     x1 + 1, y_top, PIX_SRC, 1);   (void)pr_vector(pr, x_left + 1, y1 + 1, x1 + 2, y_top, PIX_SRC, 1);   (void)pr_vector(pr, x_left,     y2,     x1,     y_bottom, PIX_SRC, 1);   (void)pr_vector(pr, x_left + 1, y2,     x1 + 1, y_bottom, PIX_SRC, 1);   (void)pr_vector(pr, x_left + 1, y2 - 1, x1 + 2, y_bottom, PIX_SRC, 1);   /* right corners */   (void)pr_vector(pr, x_right,     y1,     x2,     y_top, PIX_SRC, 1);   (void)pr_vector(pr, x_right - 1, y1,     x2 - 1, y_top, PIX_SRC, 1);   (void)pr_vector(pr, x_right - 1, y1 + 1, x2 - 2, y_top, PIX_SRC, 1);   (void)pr_vector(pr, x_right,     y2,     x2,     y_bottom, PIX_SRC, 1);   (void)pr_vector(pr, x_right - 1, y2,     x2 - 1, y_bottom, PIX_SRC, 1);   (void)pr_vector(pr, x_right - 1, y2 - 1, x2 - 2, y_bottom, PIX_SRC, 1);}/* below draws a double, then single outlined button image */static voidalert_yes_outline_button(pr)register Pixrect *pr;{   int	x_left		= 0;   int	x_right		= pr->pr_size.x - 1;   int	y_top		= 0;   int	y_bottom	= pr->pr_size.y - 1;   int	x1		= 3;   int	x2		= x_right - 3;   int	y1		= 3;   int	y2		= y_bottom - 3;   /* top horizontal lines */   (void)pr_vector(	pr, x1,   y_top,     x2,   y_top,     PIX_SRC, 1); /*top, single*/   (void)pr_vector(	pr, x1,   y_top+1,   x2,   y_top+1,   PIX_SRC, 1); /*no blank line*/   (void)pr_vector(	pr, x1+1, y_top + 2, x2-1, y_top + 2, PIX_SRC, 1);/*1st dbl line*/   (void)pr_vector(	pr, x1+1, y_top + 3, x2-1, y_top + 3, PIX_SRC, 1);/*2nd dbl line*/   /* bottom horizontal lines */   (void)pr_vector(	pr, x1,   y_bottom,     x2,   y_bottom,     PIX_SRC, 1); /*bottom single*/   (void)pr_vector(	pr, x1,   y_bottom - 1, x2,   y_bottom - 1, PIX_SRC, 1); /*no blank line*/   (void)pr_vector(		pr, x1+1, y_bottom - 2, x2-1, y_bottom - 2, PIX_SRC, 1);/*1st above*/   (void)pr_vector(	pr, x1+1, y_bottom - 3, x2-1, y_bottom - 3, PIX_SRC, 1);/*2nd above*/   /* left vertical lines (left to right)*/   (void)pr_vector(pr, x_left,     y1, x_left,       y2, PIX_SRC, 1);   (void)pr_vector(pr, x_left+1,   y1, x_left+1,     y2, PIX_SRC, 1);   (void)pr_vector(pr, x_left + 2, y1+1, x_left + 2, y2-1, PIX_SRC, 1);   (void)pr_vector(pr, x_left + 3, y1+1, x_left + 3, y2-1, PIX_SRC, 1);   /* right vertical lines (right to left)*/   (void)pr_vector(pr, x_right,     y1,   x_right,     y2, PIX_SRC, 1);   (void)pr_vector(pr, x_right - 1, y1,   x_right - 1, y2, PIX_SRC, 1);   (void)pr_vector(pr, x_right - 2, y1+1, x_right - 2, y2-1, PIX_SRC, 1);   (void)pr_vector(pr, x_right - 3, y1+1, x_right - 3, y2-1, PIX_SRC, 1);   /* left top corners */   (void)pr_vector(pr, x_left,   y1,   x1,   y_top,   PIX_SRC, 1); /*single */   (void)pr_vector(pr, x_left+1, y1,   x1,   y_top+1, PIX_SRC, 1);    (void)pr_vector(pr, x_left+1, y1+1, x1+1, y_top+1, PIX_SRC, 1);   (void)pr_vector(pr, x_left+2, y1+1, x1+1, y_top+2, PIX_SRC, 1);    (void)pr_vector(pr, x_left+3, y1+1, x1+2, y_top+2, PIX_SRC, 1);   (void)pr_vector(pr, x_left+3, y1+2, x1+3, y_top+2, PIX_SRC, 1);   /* left bottom corners */   (void)pr_vector(pr, x_left,   y2,   x1,   y_bottom,   PIX_SRC, 1); /*single */   (void)pr_vector(pr, x_left+1, y2,   x1,   y_bottom-1, PIX_SRC, 1);    (void)pr_vector(pr, x_left+1, y2-1, x1+1, y_bottom-1, PIX_SRC, 1);    (void)pr_vector(pr, x_left+2, y2-1, x1+1, y_bottom-2, PIX_SRC, 1);   (void)pr_vector(pr, x_left+3, y2-1, x1+2, y_bottom-2, PIX_SRC, 1);   (void)pr_vector(pr, x_left+3, y2-2, x1+3, y_bottom-2, PIX_SRC, 1);   /* right top corners */   (void)pr_vector(pr, x_right,   y1,   x2,   y_top,   PIX_SRC, 1); /*single */   (void)pr_vector(pr, x_right-1, y1,   x2,   y_top+1, PIX_SRC, 1);    (void)pr_vector(pr, x_right-1, y1+1, x2-1, y_top+1, PIX_SRC, 1);    (void)pr_vector(pr, x_right-2, y1+1, x2-1, y_top+2, PIX_SRC, 1);   (void)pr_vector(pr, x_right-3, y1+1, x2-2, y_top+2, PIX_SRC, 1);   (void)pr_vector(pr, x_right-3, y1+2, x2-3, y_top+2, PIX_SRC, 1);   /* right bottom corners */   (void)pr_vector(pr, x_right,   y2,   x2,   y_bottom,   PIX_SRC, 1); /*single */   (void)pr_vector(pr, x_right-1, y2,   x2,   y_bottom-1, PIX_SRC, 1);    (void)pr_vector(pr, x_right-1, y2-1, x2-1, y_bottom-1, PIX_SRC, 1);    (void)pr_vector(pr, x_right-2, y2-1, x2-1, y_bottom-2, PIX_SRC, 1);   (void)pr_vector(pr, x_right-3, y2-1, x2-2, y_bottom-2, PIX_SRC, 1);   (void)pr_vector(pr, x_right-3, y2-2, x2-3, y_bottom-2, PIX_SRC, 1);}static voidalert_select_button(pw, button)    struct pixwin	*pw;    button_handle	button;{    if (!button)	return; /* just in case this sneaked by above */    pw_writebackground(pw,	button->button_rect.r_left, button->button_rect.r_top,	button->button_rect.r_width, button->button_rect.r_height,        PIX_NOT(PIX_DST)); /* invert button rectangle */}static voidalert_unselect_button(pw, button)    struct pixwin	*pw;    button_handle	button;{    (void)alert_select_button(pw, button);}static button_handlealert_button_for_event(alert, event)    register alert_handle	alert;    Event			*event;{    button_handle	curr;    int			x, y;    int			action = event_action(event);    if (alert->button_info == NULL)	return (NULL);    if ((action != MS_LEFT) && (action != LOC_DRAG))	return (NULL);    x = event->ie_locx; y = event->ie_locy;    for (curr = alert->button_info; curr; curr = curr->next) {	if (       (x >= curr->button_rect.r_left)		&& (x <= (curr->button_rect.r_left		    + curr->button_rect.r_width))		&& (y >= curr->button_rect.r_top)		&& (y <= (curr->button_rect.r_top		    + curr->button_rect.r_height)) ) { 	    return (curr);	}    }    return ((button_handle) 0);}static voidalert_do_bell(alert, fd)    alert_handle	alert;    int			fd;{    struct timeval wait;    if (!alert_use_audible_bell)	return;	    wait.tv_sec = 0;    wait.tv_usec = 100000;    if (!alert->dont_beep && (alert->beeps > 0)) {	int i = alert->beeps;	int cmd, kbdfd;	struct screen screen;	(void)win_screenget(fd, &screen);	if ((kbdfd = open(screen.scr_kbdname, O_RDWR, 0)) < 0)	    return;    	while (i--) {	    cmd = KBD_CMD_BELL;	    (void) ioctl(kbdfd, KIOCCMD, &cmd);	    (void)alert_blocking_wait(wait);	    cmd = KBD_CMD_NOBELL;	    (void) ioctl(kbdfd, KIOCCMD, &cmd);	}	(void)close(kbdfd);    }}/* below stolen from win_bell */static voidalert_blocking_wait(wait_tv)    struct timeval wait_tv;{    extern struct timeval ndet_tv_subt(); /* From notifier code */    struct timeval start_tv, now_tv, waited_tv;    int bits;    /* Get starting time */    (void)gettimeofday(&start_tv, (struct timezone *)0);    /* Wait */    while (timerisset(&wait_tv)) {    	/* Wait for awhile in select */    	bits = 0;    	(void) select(0, &bits, &bits, &bits, &wait_tv);    	/* Get current time */    	(void)gettimeofday(&now_tv, (struct timezone *)0);    	/* Compute how long waited */    	waited_tv = ndet_tv_subt(now_tv, start_tv);    	/* Subtract time waited from time left to wait */    	wait_tv = ndet_tv_subt(wait_tv, waited_tv);    }}#endif ecd.panel

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧日韩精品视频| 久久久噜噜噜久久人人看| 日韩欧美中文字幕精品| 欧美高清在线一区| 婷婷亚洲久悠悠色悠在线播放| 国产一级精品在线| 欧美精品一二三| 亚洲欧洲99久久| 国产综合色在线视频区| 91精品啪在线观看国产60岁| 亚洲女同一区二区| 高清免费成人av| 日韩一区二区免费在线观看| 亚洲国产视频直播| 色婷婷av久久久久久久| 国产精品天干天干在线综合| 精品一区二区三区视频在线观看| 欧美三级电影在线看| 亚洲视频电影在线| 不卡视频一二三| 国产精品色在线观看| 国产一区二区三区国产| 欧美va亚洲va国产综合| 麻豆精品在线播放| 欧美一级视频精品观看| 日韩精品电影在线观看| 欧美日韩一二三| 一区二区三区**美女毛片| 99久久久国产精品免费蜜臀| 国产欧美综合色| 成人一区二区视频| 中国av一区二区三区| 国产成人精品免费网站| 久久久不卡影院| 粉嫩久久99精品久久久久久夜| 欧美精品一区二区在线播放| 韩国v欧美v亚洲v日本v| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 67194成人在线观看| 亚洲一二三区在线观看| 欧美综合天天夜夜久久| 亚洲一区二区欧美激情| 精品1区2区3区| 日韩精品91亚洲二区在线观看| 欧美一区二区三区四区五区 | 麻豆精品一区二区| 91麻豆精品国产91久久久久久 | 欧美一区二区三区在线观看视频| 日韩av中文在线观看| 日韩欧美亚洲国产精品字幕久久久| 日韩国产欧美在线视频| 欧美一区二区私人影院日本| 精品无人码麻豆乱码1区2区| 一区二区三区在线播放| 91久久一区二区| 天堂av在线一区| 久久噜噜亚洲综合| 99麻豆久久久国产精品免费优播| 最新欧美精品一区二区三区| 欧美天堂一区二区三区| 久久超碰97人人做人人爱| 久久久不卡影院| 色天天综合久久久久综合片| 亚洲成人免费在线| 久久久久99精品一区| 色一情一伦一子一伦一区| 午夜电影网亚洲视频| 久久综合成人精品亚洲另类欧美 | 2020国产精品自拍| 不卡欧美aaaaa| 亚洲福利视频三区| 久久精品亚洲乱码伦伦中文| 91久久精品一区二区三| 九色|91porny| 亚洲黄色性网站| 久久蜜臀精品av| 欧美视频一区二区在线观看| 韩国女主播一区| 亚洲电影在线播放| 亚洲国产精品二十页| 欧美日韩激情在线| 国产成人综合亚洲网站| 视频一区中文字幕国产| 国产精品美女一区二区三区| 亚洲色图欧美偷拍| 精品国产一区久久| 欧美在线观看你懂的| 国产成人亚洲综合a∨婷婷| 午夜成人免费电影| 亚洲欧美在线aaa| 久久久蜜桃精品| 91精品国产综合久久精品麻豆| www.一区二区| 国产ts人妖一区二区| 看国产成人h片视频| 午夜精品福利视频网站| 亚洲视频图片小说| 中文字幕高清不卡| 久久综合狠狠综合久久综合88 | 成人黄色av网站在线| 蜜臀久久99精品久久久久久9 | 欧美精品一区视频| 69堂成人精品免费视频| 在线观看中文字幕不卡| 91麻豆精东视频| 成人激情免费电影网址| 国产精品主播直播| 精品一区免费av| 国产最新精品免费| 精品亚洲aⅴ乱码一区二区三区| 日韩和的一区二区| 日韩黄色免费电影| 免费在线视频一区| 蜜桃av一区二区在线观看| 日韩电影一区二区三区| 日韩av网站在线观看| 日本不卡一区二区| 男女男精品网站| 九九精品视频在线看| 国产在线精品一区二区不卡了| 久久精品国产99久久6| 国模娜娜一区二区三区| 国产一区二区三区四| 国产精品亚洲第一| 成人黄色小视频| 在线免费视频一区二区| 欧美中文字幕一二三区视频| 欧美日韩国产三级| 日韩欧美卡一卡二| 国产目拍亚洲精品99久久精品| 国产欧美日韩三区| 亚洲精品国产一区二区三区四区在线| 亚洲精选视频免费看| 99精品欧美一区| 欧美亚男人的天堂| 欧美电影免费观看高清完整版在 | 美女在线观看视频一区二区| 日本91福利区| 国产成人在线影院| 97aⅴ精品视频一二三区| 欧美亚一区二区| 欧美mv和日韩mv的网站| 国产精品视频一区二区三区不卡| 亚洲欧美偷拍另类a∨色屁股| 亚洲国产日韩a在线播放性色| 免费视频一区二区| 成人app网站| 欧美男同性恋视频网站| 国产午夜精品久久久久久久| 亚洲欧美日韩在线播放| 免费不卡在线观看| 91在线免费看| 日韩欧美国产精品| 亚洲欧美激情插 | 欧美日韩国产成人在线91| 久久综合五月天婷婷伊人| 亚洲男人的天堂一区二区| 免费成人在线影院| 91伊人久久大香线蕉| 日韩一区二区三区精品视频 | 亚洲va韩国va欧美va| 国产福利精品一区| 欧美日韩日日夜夜| 国产精品色婷婷| 蜜桃精品视频在线| 欧洲精品视频在线观看| 中文字幕免费一区| 精品在线播放午夜| 欧美午夜精品一区二区三区| 欧美极品少妇xxxxⅹ高跟鞋 | 欧美日韩一区二区欧美激情| 国产亚洲成av人在线观看导航| 亚洲123区在线观看| 97久久人人超碰| 久久综合一区二区| 日本不卡123| 欧美久久婷婷综合色| 国产mv日韩mv欧美| 欧美一区二区在线视频| 亚洲激情图片一区| 丁香六月久久综合狠狠色| 日韩三级伦理片妻子的秘密按摩| 伊人婷婷欧美激情| 成人av在线网站| 国产夜色精品一区二区av| 日韩国产欧美在线观看| 日本国产一区二区| 国产精品理论片| 久久99精品国产麻豆不卡| 欧美亚洲综合色| 亚洲精品成人少妇| 91丝袜美腿高跟国产极品老师| 国产精品日韩成人| 国产福利一区二区三区在线视频| 欧美成人三级在线| 另类成人小视频在线| 555www色欧美视频| 日产欧产美韩系列久久99| 欧美人与性动xxxx| 日韩中文字幕av电影|