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

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

?? maingui.c

?? MiniGUI源代碼
?? C
?? 第 1 頁 / 共 4 頁
字號:
// MainGUI.C
//
// This file include menu functions and the core code of WYMGUI.
// 
// Copyright (c) 1995.8 ~ 1998.4, Mr. Wei Yongming.
//
// Last modified date: 1998.04.15.

#include <stdio.h>
#include <conio.h> 
#include <io.h>
#include <dos.h>
#include <bios.h>
#include <process.h>
#include <time.h>
#include <stddef.h>
#include <stdlib.h>
#include <malloc.h>
#include <graph.h>
#include <memory.h>
#include <Vmemory.h>
#include <string.h>
#include <direct.h>
#include <ctype.h>
#include <float.h>
#include <math.h>

#include "Common.h"
#include "Support.h"
#include "MainGUI.h"
#include "Dialog.h"

extern STATUSBAR  SB[4];
extern struct _videoconfig vc;

const char szMiniGUI[] = "MiniGUI";
const char szDefaultLogo[] = "APP.BMP";

static PNORMALMENUITEM GetNormalMenuItem(PGUIINFO pGUIInfo, WORD wID);
static void RedrawPopupMenuItem(PPOPUPMENUITEM pPopupMenuItem, int iPrev, int iCur);
static void RedrawNormalMenuItem(PNORMALMENUITEM pNormalMenuItem, int iPrev, int iCur, int x, int y, int iWidth);
static void CreateHiliteStringOfPopupMenu(PNORMALMENUITEM pNormalMenuItem, char* achHilite);
static void CreateHiliteStringOfMenuBar(PPOPUPMENUITEM pPopupMenuItem, char* achHilite);
static char GetHiliteAscii(PSTR pStr);
static int GetPositionOfPopupMenuItem(PPOPUPMENUITEM pPopupMenuItem, int iIndex);
static int GetPositionOfNormalMenuItem(PNORMALMENUITEM pNormalMenuItem, int iIndex, int y);
static int GetNextPopupMenu(PPOPUPMENUITEM pPopupMenuItem, int iIndex);
static int GetPreviousPopupMenu(PPOPUPMENUITEM pPopupMenuItem, int iIndex);
static int GetNumOfPopupMenuItem(PPOPUPMENUITEM pPopupMenuItem);
static int GetNextNormalMenuItem(PNORMALMENUITEM pNormalMenuItem, int iIndex);
static int GetPreviousNormalMenuItem(PNORMALMENUITEM pNormalMenuItem, int iIndex);
static int GetNumOfNormalMenuItem(PNORMALMENUITEM pNormalMenuItem);
static int WhichItemMouseIn(PNORMALMENUITEM pNormalMenuItem, int top, int y);

/*
 * Function: PGUIINFO GUIPAI CreateMainGUI(char* spCaption, PPOPUPMENUITEM pPopupMenuItem,
                      PACCELTAB pAccelTab,
                      int (FAR * MainProc)(PGUIINFO, UINT, WPARAM, LPARAM));
 *      This function create main GUI:
 *      (1) Create the message queue;
 *      (2) Paint the menu bar and no client area;
 *      (3) Create the status bar.
 *
 * Parameters:
 *      spCaption: the caption of the GUI;
 *      pPopupMenuItem: pointer to the popupmenu;
 *      pAccelTab: pointer to the accelerator table;
 *      MainProc: the call back procedure that process message.
 * Return:
 *      success-----the pointer to the structure GUIINFO.
 *      failure-----NULL.
 *
 *  1995.8.9.AM.
 *
 */
PGUIINFO GUIAPI CreateMainGUI(const char* spCaption, 
                              PPOPUPMENUITEM pPopupMenuItem,
                              PACCELTAB pAccelTab,
                              int (FAR * MainProc)(PGUIINFO, UINT, WPARAM, LPARAM))
{
    PGUIINFO pGUIInfo;
    
    // Create the mesage queue
    if(!(pGUIInfo = (PGUIINFO)malloc(sizeof(GUIINFO))))
        return NULL;
    pGUIInfo->MQInfo.pMsg = NULL;
    if(!CreateMsgQueue(pGUIInfo, MAXQUEUELENGTH))
    {
        free(pGUIInfo);
        return NULL;
    }
    
    // set the GUIINFO structure.
    strncpy( pGUIInfo->spCaption, spCaption, CAPTIONLENGTH );
    pGUIInfo->pPopupMenuItem = pPopupMenuItem;
    pGUIInfo->pAccelTab = pAccelTab;
    pGUIInfo->MainProc = MainProc;
    
    SetPtrVis(SHOW);

    PostMessage(pGUIInfo, MSG_NCCREATE, (WPARAM)pGUIInfo, 0L);
    PostMessage(pGUIInfo, MSG_NCPAINT, 0, 0L);
    
    PostMessage(pGUIInfo, MSG_CREATE, (WPARAM)pGUIInfo, 0L);

    PostMessage(pGUIInfo, MSG_ERASEBKGND, (WPARAM)(&pGUIInfo->dc.clientrect), 0L);
    
    return pGUIInfo;
}

/*
 * Function: void GUIPAI DestroyMainGUI( PGUIINFO pGUIInfo );
 *      This function Destroy main GUI:
 *      (1) Release the message queue;
 *      (2) Release the space that was allocated to GUIINFO structure.
 *
 * Parameters:
 *      pGUIInfo: the pointer to the GUIINFO structure.
 * Return:
 *      None
 *
 *  1995.8.9.AM.
 *
 */
void GUIAPI DestroyMainGUI( PGUIINFO pGUIInfo )
{
    CreateMsgQueue(pGUIInfo, 0);
    free(pGUIInfo);
    SetPtrVis(HIDE);
}

int FAR DefaultGUIProc(PGUIINFO pGUIInfo, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
    static unsigned int uTimes = 767;
    
    switch(uMsg)
    {
        case MSG_NCCREATE:
            uTimes = 767;
            break;
            
        case MSG_NCPAINT:
            // Draw Menu
            DrawMenuBar(pGUIInfo->pPopupMenuItem);
            DrawNCArea(pGUIInfo);
            DrawStatusBar();
            break;
        
        case MSG_DESTROY:
            PostMessage(pGUIInfo, MSG_KILLFOCUS, 0, 0L);
            PostMessage(pGUIInfo, MSG_DESTROYPANES, 0, 0L);

            do
            {
                MSG msg;
                
                if(GetMessageFromQueue(pGUIInfo, &msg))
                {
                    TranslateAccelerator(pGUIInfo, &msg);
                    DisptchMessage(pGUIInfo, &msg);
                }
                else
                    break;
            }while(TRUE);
    
            PostMessage(pGUIInfo, MSG_QUIT, TRUE, 0L);
            break;
        
        case MSG_SETFOCUS: 
            DrawCaption(pGUIInfo, TRUE);
            break;
            
        case MSG_KILLFOCUS:
            DrawCaption(pGUIInfo, FALSE);
            break;
            
        case MSG_ERASEBKGND:
            {
                PRECT pRect = (PRECT)wParam;
                memcpy(&pGUIInfo->dc.cliprect, pRect, sizeof(RECT));
                
                SetPtrVis(HIDE);
                _setcolor(COLOR_darkcyan);
                _rectangle( _GFILLINTERIOR, pRect->left, pRect->top, 
                            pRect->right, pRect->bottom);
                SetPtrVis(SHOW);
                
                PostMessage(pGUIInfo, MSG_PAINT, (WPARAM)(&pGUIInfo->dc), 0L);
            }
            break;
            
        case MSG_IDLE:
            if(SB[0].uTimes != uTimes)
            {
                STATUSBARDATA SBData;
                SBData.fgcolor = 0;
                SBData.lpStr = "菜單:F10,<Alt+加速鍵>;主控界面:Alt+F4。";
                SetStatusBarInfo(0, &SBData);

                uTimes = SB[0].uTimes;
            }
            break;

        case MSG_RBUTTONDOWN:
            break;
        
        case MSG_LBUTTONDOWN:
            break;

        case MSG_CHAR:
            break;
        
        default:
            break;
    }
    
    return 0;
}

/* Function: void GUIAPI GetMessage(PMSG pMsg)
 *        This function get ascii code and key code.
 * Parameters: 
 *        pKeySqn: pointer to KEYSEQUENCE struct.
 * Return:
 *      None.
 *
 *  1995.8.9.AM.
 *
 */
void GUIAPI GetMessage(PMSG pMsg)
{
    UINT   uKey;
    EVENT  meEvent;
    static BOOL fLBtnDown = FALSE;
    static BOOL fRBtnDown = FALSE;
    
    if(uKey = GetKey(NO_WAIT))
    {
        pMsg->uMsg = KB_KEYDOWN;
        pMsg->wParam = uKey;
    }
    else if(GetMouseEvent(&meEvent))
    {   
        if( meEvent.fsBtn & LEFT_DOWN )
        {
            fLBtnDown = TRUE;
            pMsg->uMsg = ME_LBUTTONDOWN;
            pMsg->pt.x = meEvent.hotx;
            pMsg->pt.y = meEvent.hoty;
            return;
        }
        else if( fLBtnDown && !(meEvent.fsBtn & LEFT_DOWN) )
        {
            fLBtnDown = FALSE;
            pMsg->uMsg = ME_LBUTTONUP;
            pMsg->pt.x = meEvent.hotx;
            pMsg->pt.y = meEvent.hoty;
            return;
        }
        
        if( meEvent.fsBtn & RIGHT_DOWN )
        {
            fRBtnDown = TRUE;
            pMsg->uMsg = ME_RBUTTONDOWN;
            pMsg->pt.x = meEvent.hotx;
            pMsg->pt.y = meEvent.hoty;
            return;
        }
        else if( fRBtnDown && !(meEvent.fsBtn & RIGHT_DOWN) )
        {
            fRBtnDown = FALSE;
            pMsg->uMsg = ME_RBUTTONUP;
            pMsg->pt.x = meEvent.hotx;
            pMsg->pt.y = meEvent.hoty;
            return;
        }

        pMsg->uMsg = ME_MOVE;
        pMsg->pt.x = meEvent.hotx;
        pMsg->pt.y = meEvent.hoty;
        return;
    }
    else
        pMsg->uMsg = NULLINPUT;
    
    return;
}

/*
 * Function: BOOL GUIAPI CreateMsgQueue( PGUIINFO pGUIInfo, int cMsg )
 *      This function create a new message queue.
 * Parameters:
 *      cMsg: the longth of message queue.
 * Return:
 *      success-----TRUE.
 *      failure-----FALSE.
 *
 *  1995.8.9.AM.
 *
 */
BOOL GUIAPI CreateMsgQueue( PGUIINFO pGUIInfo, int cMsg )
{
    if(pGUIInfo->MQInfo.pMsg)
        free(pGUIInfo->MQInfo.pMsg);
    if(cMsg == 0)
        return TRUE;
        
    if(!(pGUIInfo->MQInfo.pMsg = (PMSG)malloc(cMsg*(sizeof(MSG)))))
        return FALSE;               // No enogh memory.
    
    pGUIInfo->MQInfo.cMsg  = cMsg;
    pGUIInfo->MQInfo.iFront = 0;
    pGUIInfo->MQInfo.iRear = 0;   // a empty queue.
    
    return TRUE;
}

/*
 * Function: BOOL GUIAPI PostMessage( PGUIINFO pGUIInfo, UINT uMsg, WPARAM wParam, LPARAM lParam )
 *      This function posts(places) a message in the message queue.
 *  queue.
 * Parameters:
 *      pGUIInfo: the pionter to the GUIINFO structure.
 *      uMsg:   message to post
 *      wParam: first message parameter 
 *      lParam: seconde message parameter
 * Return:  
 *      success-----TRUE.
 *      failure-----FALSE.
 *
 *  1995.8.9.AM.
 *
 */
BOOL GUIAPI PostMessage( PGUIINFO pGUIInfo, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
    int iTemp;
    
    iTemp = pGUIInfo->MQInfo.iRear;
    pGUIInfo->MQInfo.iRear = (pGUIInfo->MQInfo.iRear + 1) % pGUIInfo->MQInfo.cMsg;
    if(pGUIInfo->MQInfo.iRear == pGUIInfo->MQInfo.iFront)
    {
        pGUIInfo->MQInfo.iRear = iTemp;
        return FALSE;               // The message queue is full.
    }
    
    (pGUIInfo->MQInfo.pMsg + pGUIInfo->MQInfo.iRear)->uMsg = uMsg;
    (pGUIInfo->MQInfo.pMsg + pGUIInfo->MQInfo.iRear)->wParam = wParam;
    (pGUIInfo->MQInfo.pMsg + pGUIInfo->MQInfo.iRear)->lParam = lParam;
    
    return TRUE;
}

/*
 * Function: BOOL GUIAPI GetMessageFromQueue( PGUIINFO pGUIInfo, PMSG pMsg )
 *      Using this function, you can get the message from the message queue.
 * Parameters:
 *      pGUIInfo: the pionter to the GUIINFO structure.
 *      pMsg:    pinter to the message structure.
 * Return:  
 *      success-----TRUE.
 *      failure-----FALSE.  // No message in the queue.
 *
 *  1995.8.9.AM.
 *
 */
BOOL GUIAPI GetMessageFromQueue( PGUIINFO pGUIInfo, PMSG pMsg )
{
    if(pGUIInfo->MQInfo.iFront == pGUIInfo->MQInfo.iRear)
        return FALSE;               // There is no message in queue.
        
    pGUIInfo->MQInfo.iFront = (pGUIInfo->MQInfo.iFront + 1) % pGUIInfo->MQInfo.cMsg;
    pMsg->uMsg    = (pGUIInfo->MQInfo.pMsg + pGUIInfo->MQInfo.iFront)->uMsg;
    pMsg->wParam  = (pGUIInfo->MQInfo.pMsg + pGUIInfo->MQInfo.iFront)->wParam;
    pMsg->lParam  = (pGUIInfo->MQInfo.pMsg + pGUIInfo->MQInfo.iFront)->lParam;
    
    return TRUE;
}

/*
 * Function: BOOL GUIAPI PreProcMessage( PGUIINFO pGUIInfo, PMSG pMsg )
 *      This function pre-process the message:
 *      (1) If some event active the menu, then call TrackMenu function;
 *      (2) If message is other keyboard message, do nothing;
 *      (3) If message is other mouse message, Translate the mouse message.
 * Parameters:
 *      pGUIInfo: the pionter to the GUIINFO structure.
 *      pMsg:    pinter to the message that will be processed.
 * Return:
 *      processed -----TRUE.
 *      have not processed-----FALSE.
 *
 *  1995.8.9.AM.
 *
 */
BOOL GUIAPI PreProcMessage( PGUIINFO pGUIInfo, PMSG pMsg, BOOL bNoTrackMenu )
{
    int iID;
    int iIndex;
    BOOL bCaretDisplaying;
    int iCaretX, iCaretY;
    
    bCaretDisplaying = IsCaretDisplaying(&iCaretX, &iCaretY);
    switch(pMsg->uMsg)
    {
        case KB_KEYDOWN:
            // See weather F10 key was pressed.
            if(pMsg->wParam == 0x0144 && !bNoTrackMenu)
            {
                if(bCaretDisplaying)
                    UndisplayCaret();
                    
                SendMessage(pGUIInfo, MSG_ACTIVEMENU, 0, 0L);
                set_cliprgn(0, 0, vc.numxpixels - 1, vc.numypixels - 1);
                iID = TrackMenu(pGUIInfo->pPopupMenuItem, 0, FALSE);
                set_cliprgn(pGUIInfo->dc.clientrect.left, 
                    pGUIInfo->dc.clientrect.top,
                    pGUIInfo->dc.clientrect.right,
                    pGUIInfo->dc.clientrect.bottom);
                
                if( iID > 0)
                {
                    pMsg->uMsg = MSG_COMMAND;
                    pMsg->wParam = (WPARAM)iID;
                    pMsg->lParam = 0L;
                }
                else
                    pMsg->uMsg = MSG_NULL;

                if(bCaretDisplaying)
                    SetCaretPos(iCaretX, iCaretY);
            }
            // See if Alt + x key has pressed.
            else if((HIBYTE(pMsg->wParam)) == 0x04 && !bNoTrackMenu)
            {
                iIndex = CanActiveMenuByAltKey(pGUIInfo->pPopupMenuItem, (UINT)pMsg->wParam);
    
                if(bCaretDisplaying)
                    UndisplayCaret();
                    
                if(iIndex >= 0)
                {
                    SendMessage(pGUIInfo, MSG_ACTIVEMENU, iIndex, 0L);
                    set_cliprgn(0, 0, vc.numxpixels - 1, vc.numypixels - 1);
                    iID = TrackMenu(pGUIInfo->pPopupMenuItem, iIndex, TRUE);
                    set_cliprgn(pGUIInfo->dc.clientrect.left, 
                        pGUIInfo->dc.clientrect.top,
                        pGUIInfo->dc.clientrect.right,
                        pGUIInfo->dc.clientrect.bottom);
                    if( iID > 0)
                    {
                        pMsg->uMsg = MSG_COMMAND;
                        pMsg->wParam = (WPARAM)iID;
                        pMsg->lParam = 0L;
                    }
                    else
                        pMsg->uMsg = MSG_SYSCHAR;
                }
                else
                    pMsg->uMsg = MSG_SYSCHAR;

                if(bCaretDisplaying)
                    SetCaretPos(iCaretX, iCaretY);
            }
            else
            {
                pMsg->uMsg = MSG_CHAR;
            }
            break;

        case ME_LBUTTONDOWN:
            iIndex = CanActiveMenu(pGUIInfo->pPopupMenuItem, &(pMsg->pt));
            if(iIndex >= 0)
            {
                if(bCaretDisplaying)
                    UndisplayCaret();
                    
                SendMessage(pGUIInfo, MSG_ACTIVEMENU, 0, 0L);
                set_cliprgn(0, 0, vc.numxpixels - 1, vc.numypixels - 1);
                iID = TrackMenu(pGUIInfo->pPopupMenuItem, iIndex, TRUE);
                set_cliprgn(pGUIInfo->dc.clientrect.left, 
                    pGUIInfo->dc.clientrect.top,
                    pGUIInfo->dc.clientrect.right,
                    pGUIInfo->dc.clientrect.bottom);
                if( iID > 0)
                {
                    pMsg->uMsg = MSG_COMMAND;
                    pMsg->wParam = (WPARAM)iID;
                    pMsg->lParam = 0L;
                }
                else
                {
                    if(IsInClientArea(pGUIInfo, pMsg->pt))
                        pMsg->uMsg = MSG_LBUTTONDOWN;
                    else
                        pMsg->uMsg = MSG_NCLBUTTONDOWN;
                    pMsg->lParam = (LPARAM)(MAKELONG(pMsg->pt.x, pMsg->pt.y));
                }
            }
            else
            {
                if(IsInClientArea(pGUIInfo, pMsg->pt))

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩免费看的电影| 中文字幕欧美激情| 奇米777欧美一区二区| 91精选在线观看| 国产偷国产偷亚洲高清人白洁| 国产亚洲欧美在线| 久久精品日产第一区二区三区高清版| 欧美日韩国产高清一区| 91精品久久久久久蜜臀| 欧美性xxxxx极品少妇| 99精品视频在线观看| 91农村精品一区二区在线| 成年人午夜久久久| 欧美日韩精品一区二区天天拍小说 | 午夜精品一区二区三区三上悠亚| 亚洲乱码精品一二三四区日韩在线 | 成人黄色在线看| 久久夜色精品国产噜噜av| 国产专区欧美精品| 成人午夜视频在线| 欧美日本国产视频| 狠狠色综合日日| 国产精品一级在线| 色婷婷久久一区二区三区麻豆| 夜色激情一区二区| 6080yy午夜一二三区久久| 久久av中文字幕片| 亚洲视频在线一区二区| 欧美三级日韩在线| 久久精品免费看| 首页国产丝袜综合| 全国精品久久少妇| 国产乱码一区二区三区| 在线观看欧美黄色| 国产女人18水真多18精品一级做| 日韩欧美一区在线| 午夜在线成人av| 国产精品99久久久久| 欧美综合天天夜夜久久| 亚洲国产乱码最新视频| 欧美激情一区二区三区蜜桃视频| 蜜桃视频第一区免费观看| 国产人久久人人人人爽| 欧美日韩国产精品成人| 国产 欧美在线| 免费在线观看视频一区| 国产精品福利一区| 日韩午夜在线观看视频| 99re66热这里只有精品3直播| 免费欧美在线视频| 亚洲精品中文字幕在线观看| 欧美成va人片在线观看| 欧美日韩国产综合一区二区| 成人黄色在线看| 九九精品视频在线看| 亚洲综合丁香婷婷六月香| 国产欧美一区二区精品婷婷| 欧美一区二区私人影院日本| 欧美最猛性xxxxx直播| 成人听书哪个软件好| 亚洲精品你懂的| 97精品视频在线观看自产线路二| 亚洲一区二区av电影| 欧美亚洲动漫另类| 午夜一区二区三区视频| 8x福利精品第一导航| 午夜精品久久久久久久99樱桃| 欧美在线一区二区| 国产精品18久久久久久久久| 国产精品免费丝袜| 欧美r级电影在线观看| 91丝袜呻吟高潮美腿白嫩在线观看| 亚洲不卡av一区二区三区| 国产欧美一区二区精品性| 亚洲精品一区二区三区精华液 | 99国产精品国产精品久久| 国产欧美一区二区精品性色 | 日韩黄色片在线观看| 欧美变态tickle挠乳网站| 北条麻妃一区二区三区| 午夜精品久久久久久久| 久久九九久久九九| 777色狠狠一区二区三区| 国产成a人亚洲精| 日日骚欧美日韩| 一区二区三区精品在线观看| 日韩视频在线一区二区| 欧美精品一区二| 欧美精品亚洲二区| 欧美探花视频资源| 成人美女视频在线观看18| 中文字幕巨乱亚洲| 91精品欧美福利在线观看| 97se亚洲国产综合自在线观| av一区二区不卡| 久久看人人爽人人| 国产精品一线二线三线精华| 国产一区在线观看麻豆| 久久精品国产**网站演员| 精品亚洲欧美一区| 国产精品1区2区| 99精品国产视频| 欧美久久一二三四区| 日韩视频一区二区三区在线播放| 精品伦理精品一区| 国产精品欧美久久久久无广告 | 午夜精品久久久久久久| 亚洲一线二线三线视频| 三级欧美在线一区| 美女一区二区视频| 国产精品99久久久| 国产91丝袜在线播放0| 蜜臀av在线播放一区二区三区| 亚洲色图在线视频| 欧美亚洲禁片免费| 欧美日韩国产美| 欧美日韩一区二区三区高清| a级精品国产片在线观看| 国产成人精品影院| 国内精品免费**视频| 成人性视频免费网站| 成人免费观看视频| 99riav久久精品riav| 色婷婷综合久久久久中文一区二区| 久草热8精品视频在线观看| 成人免费电影视频| 在线免费观看不卡av| 欧美在线视频日韩| 日韩欧美国产成人一区二区| 欧美日韩国产精选| 国产精品国模大尺度视频| 亚洲女子a中天字幕| 国产一区久久久| 99久久99久久综合| 亚洲精品国产无天堂网2021 | 欧美四级电影网| 一本大道久久精品懂色aⅴ| 欧美日韩美女一区二区| 国产精品一区二区久久精品爱涩 | 丝袜美腿亚洲综合| 蜜桃精品视频在线| 99精品国产99久久久久久白柏| 欧美三区在线视频| 久久综合久久综合九色| 国产日韩精品一区| 美国av一区二区| 欧美日韩综合在线免费观看| 91官网在线免费观看| 精品粉嫩aⅴ一区二区三区四区| 久久久久9999亚洲精品| 亚洲国产va精品久久久不卡综合| 丁香一区二区三区| 欧美一级在线免费| 亚洲成人黄色小说| 在线观看日韩国产| 久久人人超碰精品| 老司机一区二区| 欧美一区2区视频在线观看| 亚洲一区二区四区蜜桃| 国产精品亚洲午夜一区二区三区| 欧美人xxxx| 午夜精品福利视频网站| 正在播放亚洲一区| 日本美女一区二区三区| 欧美日韩一卡二卡三卡| 亚洲va天堂va国产va久| 色噜噜狠狠一区二区三区果冻| 欧美一级电影网站| 国产在线国偷精品免费看| 精品国产成人在线影院| 精品综合久久久久久8888| 精品处破学生在线二十三| 蜜桃精品视频在线| 日本一区二区三区高清不卡| 成人激情免费视频| 一区二区三区四区国产精品| 国产精品综合久久| 中文字幕精品一区| 欧美日韩中文国产| 色综合咪咪久久| 国产精品白丝在线| 成人性生交大片免费看中文网站| 欧美成人a∨高清免费观看| 国产精品 欧美精品| 日本一区二区免费在线观看视频 | 综合自拍亚洲综合图不卡区| 欧美激情自拍偷拍| 国产激情精品久久久第一区二区| 欧美在线观看18| 亚洲一二三四在线观看| 色婷婷av一区| 亚洲成a人v欧美综合天堂| 日韩你懂的电影在线观看| 美女网站色91| 久久久五月婷婷| 国产在线精品一区二区夜色 | 亚洲一区二区三区四区中文字幕| 亚洲午夜激情网站| 精品电影一区二区| 欧美日韩国产天堂|