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

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

?? qimwindowdlg.cpp

?? 我們一個小組
?? CPP
字號:
// QimWindowDlg.cpp : implementation file
//

#include "stdafx.h"
#include "QimWindow.h"
#include "QimWindowDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif

const int MAX_RESULT_PER_PAGE = 5 ;

const int STATUS_INPUT_PY = 0 ;
const int STATUS_CHOOSE_PHRASE = 1;

const int INPUT_NEED_UPDATE = 0 ;
const int INPUT_NOT_NEED_UPDATE = 1 ;


// CAboutDlg dialog used for App About

class CAboutDlg : public CDialog
{
public:
	CAboutDlg();

// Dialog Data
	enum { IDD = IDD_ABOUTBOX };

	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support

// Implementation
protected:
	DECLARE_MESSAGE_MAP()
};

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
}

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
END_MESSAGE_MAP()


// CQimWindowDlg dialog




CQimWindowDlg::CQimWindowDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CQimWindowDlg::IDD, pParent), m_nCurrentDisplayPage(1), m_nCurrentStatus(STATUS_INPUT_PY), m_nCurrentHandledPos(0), m_bInputNeedUpdate(INPUT_NEED_UPDATE)
{
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CQimWindowDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
}

BEGIN_MESSAGE_MAP(CQimWindowDlg, CDialog)
	ON_WM_SYSCOMMAND()
	ON_WM_PAINT()
	ON_WM_QUERYDRAGICON()
	//}}AFX_MSG_MAP
	ON_EN_CHANGE(IDC_EDIT_PINYIN, &CQimWindowDlg::OnInput)
	ON_WM_DESTROY()
END_MESSAGE_MAP()


// CQimWindowDlg message handlers

BOOL CQimWindowDlg::OnInitDialog()
{
	CDialog::OnInitDialog();

	// Add "About..." menu item to system menu.

	// IDM_ABOUTBOX must be in the system command range.
	ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
	ASSERT(IDM_ABOUTBOX < 0xF000);

	CMenu* pSysMenu = GetSystemMenu(FALSE);
	if (pSysMenu != NULL)
	{
		CString strAboutMenu;
		strAboutMenu.LoadString(IDS_ABOUTBOX);
		if (!strAboutMenu.IsEmpty())
		{
			pSysMenu->AppendMenu(MF_SEPARATOR);
			pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
		}
	}

	// Set the icon for this dialog.  The framework does this automatically
	//  when the application's main window is not a dialog
	SetIcon(m_hIcon, TRUE);			// Set big icon
	SetIcon(m_hIcon, FALSE);		// Set small icon

	if ( !m_Qim.Load(".\\dic\\static_table.txt", ".\\dic\\dynamic_table.txt", ".\\dic\\hash_table.txt") )
	{
		MessageBox("Load dictionary error!") ;
		return FALSE ;
	}

	return TRUE;  // return TRUE  unless you set the focus to a control
}

void CQimWindowDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
	if ((nID & 0xFFF0) == IDM_ABOUTBOX)
	{
		CAboutDlg dlgAbout;
		dlgAbout.DoModal();
	}
	else
	{
		CDialog::OnSysCommand(nID, lParam);
	}
}

// If you add a minimize button to your dialog, you will need the code below
//  to draw the icon.  For MFC applications using the document/view model,
//  this is automatically done for you by the framework.

void CQimWindowDlg::OnPaint()
{
	if (IsIconic())
	{
		CPaintDC dc(this); // device context for painting

		SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0);

		// Center icon in client rectangle
		int cxIcon = GetSystemMetrics(SM_CXICON);
		int cyIcon = GetSystemMetrics(SM_CYICON);
		CRect rect;
		GetClientRect(&rect);
		int x = (rect.Width() - cxIcon + 1) / 2;
		int y = (rect.Height() - cyIcon + 1) / 2;

		// Draw the icon
		dc.DrawIcon(x, y, m_hIcon);
	}
	else
	{
		CDialog::OnPaint();
	}
}

// The system calls this function to obtain the cursor to display while the user drags
//  the minimized window.
HCURSOR CQimWindowDlg::OnQueryDragIcon()
{
	return static_cast<HCURSOR>(m_hIcon);
}


void CQimWindowDlg::OnInput()
{
	if (m_bInputNeedUpdate == INPUT_NOT_NEED_UPDATE)
	{
		m_bInputNeedUpdate = INPUT_NEED_UPDATE ;
		return ;
	}

	CString strPy; 
	CWnd* pWnd = GetDlgItem(IDC_EDIT_PINYIN) ;
	pWnd->GetWindowText(strPy) ;
	int nLen=pWnd->GetWindowTextLength();   
	((CEdit*)pWnd)->SetSel(nLen, nLen) ;

	if (strPy.GetLength() == 0)
	{
		CWnd* pWnd = GetDlgItem(IDC_EDIT_PHRASE);
		pWnd->SetWindowText("") ;
		return ;
	}

	//in case that the input is a digit from the beginning
	/*if( isdigit(strPy.GetAt(0)) )
	{
		return ;
	}*/

	m_vecResultWord.clear() ;
	

	if (m_nCurrentStatus == STATUS_INPUT_PY)
	{
		m_strCurrentPy.assign( (LPCTSTR)strPy) ;

		m_nCurrentDisplayPage = 1 ;
		string strInput ((LPCTSTR)strPy) ;

		vector<string> vecDynamicResult ;
		int nDynamicLongestMatchLength ;
		if ( ( nDynamicLongestMatchLength = m_Qim.GetDynamicPraseByLongestMatchedPy(strInput, vecDynamicResult) ) > 0)
		{
			for (size_t i = 0; i<vecDynamicResult.size(); i++)
			{
				m_vecResultWord.push_back(vecDynamicResult[i]) ;
			}
		}

		//add static phrase
		vector<string> vecStaticResult;
		int nStaticLongestMatchLength ;
		if ( ( nStaticLongestMatchLength = m_Qim.GetStaticWordByLongestMatchedPy(strInput, vecStaticResult)) > 0)
		{
			for (size_t i = 0; i<vecStaticResult.size(); i++)
			{
				m_vecResultWord.push_back(vecStaticResult[i]) ;
			}
		}

		OnDisplayPhrase(m_nCurrentDisplayPage);
	}
	else if (m_nCurrentStatus == STATUS_CHOOSE_PHRASE)
	{
		string strUnhandledPy = m_strCurrentPy.substr(m_nCurrentHandledPos) ;

		if (strUnhandledPy.size() == 0)
		{
			return ;
		}

		char c = strPy.GetAt(strPy.GetLength()-1) ;

		if( c < '0' || c> '9' )
		{
			m_nCurrentHandledPos = 0;
			m_strCurrentPhrase = "";
			m_nCurrentDisplayPage = 1; 
			CWnd* pWnd = GetDlgItem(IDC_EDIT_PINYIN) ;
			m_nCurrentStatus = STATUS_INPUT_PY ;
			m_strCurrentPy += c ;
			pWnd->SetWindowText(m_strCurrentPy.c_str()) ;

			return ;
		}

		vector<string> vecDynamicResult ;
		int nDynamicLongestMatchLength ;
		if ( ( nDynamicLongestMatchLength = m_Qim.GetDynamicPraseByLongestMatchedPy(strUnhandledPy, vecDynamicResult) ) > 0)
		{
			for (size_t i = 0; i<vecDynamicResult.size(); i++)
			{
				m_vecResultWord.push_back(vecDynamicResult[i]) ;
			}
		}

		//add static phrase
		vector<string> vecStaticResult;
		int nStaticLongestMatchLength ;
		if ( ( nStaticLongestMatchLength = m_Qim.GetStaticWordByLongestMatchedPy(strUnhandledPy, vecStaticResult)) > 0)
		{
			for (size_t i = 0; i<vecStaticResult.size(); i++)
			{
				m_vecResultWord.push_back(vecStaticResult[i]) ;
			}
		}

		int choice = static_cast<int>( strPy.GetAt(strPy.GetLength()-1) - '0' );
		choice = (m_nCurrentDisplayPage-1)*MAX_RESULT_PER_PAGE + choice ;
		

		//move to next possible py
		if (choice <= vecDynamicResult.size())
		{
			m_strCurrentSlimcutPy += m_strCurrentPy.substr(m_nCurrentHandledPos, nDynamicLongestMatchLength) ;
			m_nCurrentHandledPos += nDynamicLongestMatchLength ;
			
			
		}
		else
		{
			m_strCurrentSlimcutPy += m_strCurrentPy.substr(m_nCurrentHandledPos, 1) ;
			m_nCurrentHandledPos += nStaticLongestMatchLength ;
			
		}

		strPy = m_strCurrentPy.substr(m_nCurrentHandledPos).c_str() ;

		m_strCurrentPhrase += m_vecResultWord[choice-1].c_str() ;
		strPy = m_strCurrentPhrase.c_str() + strPy ;

		pWnd = GetDlgItem(IDC_EDIT_PINYIN) ;
		m_bInputNeedUpdate = INPUT_NOT_NEED_UPDATE ;
		pWnd->SetWindowText(strPy) ;
		int   nLen=pWnd->GetWindowTextLength();   
		((CEdit*)pWnd)->SetSel(nLen,nLen);
		m_nCurrentDisplayPage = 1 ;

		m_vecResultWord.clear() ;

		strUnhandledPy = m_strCurrentPy.substr(m_nCurrentHandledPos) ;
		vecDynamicResult.clear() ;
		if ( ( nDynamicLongestMatchLength = m_Qim.GetDynamicPraseByLongestMatchedPy(strUnhandledPy, vecDynamicResult) ) > 0)
		{
			for (size_t i = 0; i<vecDynamicResult.size(); i++)
			{
				m_vecResultWord.push_back(vecDynamicResult[i]) ;
			}
		}

		//add static phrase
		vecStaticResult.clear();
		if ( ( nStaticLongestMatchLength = m_Qim.GetStaticWordByLongestMatchedPy(strUnhandledPy, vecStaticResult)) > 0)
		{
			for (size_t i = 0; i<vecStaticResult.size(); i++)
			{
				m_vecResultWord.push_back(vecStaticResult[i]) ;
			}
		}

		if (m_nCurrentHandledPos == m_strCurrentPy.size()||m_vecResultWord.size() == 0)
		{
			m_nCurrentHandledPos = 0 ;
			
			m_bInputNeedUpdate = INPUT_NOT_NEED_UPDATE ;
			m_nCurrentStatus = STATUS_INPUT_PY ;
			pWnd = GetDlgItem(IDC_EDIT_PINYIN) ;
			pWnd->SetWindowText("") ;
			pWnd = GetDlgItem(IDC_EDIT_PHRASE) ;
			pWnd->SetWindowText("") ;

			CString strText ;
			pWnd = GetDlgItem(IDC_EDIT_TEXT) ;
			pWnd->GetWindowText(strText) ;
			strText += m_strCurrentPhrase.c_str() ;
			pWnd->SetWindowText(strText) ;

			//MessageBox( (m_strCurrentPy +" "+ m_strCurrentSlimcutPy +" "+ m_strCurrentPhrase).c_str() ) ;
			m_Qim.InsertDynamicPhrase1(m_strCurrentPy, m_strCurrentSlimcutPy, m_strCurrentPhrase, 1.5) ;

			m_strCurrentPy = "" ;
			m_strCurrentSlimcutPy = "" ;
			m_strCurrentPhrase = "" ;
		}
		else
		{
			OnDisplayPhrase(m_nCurrentDisplayPage);
		}		
	}
	
}

int CQimWindowDlg::OnDisplayPhrase(int nPage)
{
	if ( ((nPage-1)*MAX_RESULT_PER_PAGE+1) < 0 )
	{
		return nPage+1;
	}
	
	
	if ( ( (nPage-1)*MAX_RESULT_PER_PAGE+1 ) > static_cast<int>(m_vecResultWord.size()) )
	{
		return nPage-1 ;
	}

	CString strResult ;

	if (nPage*MAX_RESULT_PER_PAGE >= static_cast<int>(m_vecResultWord.size()))
	{
		// from (nPage-1)*MAX_RESULT_PER_PAGE  to  m_vecResultWord.size()
		int index=1 ;
		for ( size_t i=(nPage-1)*MAX_RESULT_PER_PAGE; i<m_vecResultWord.size(); i++, index++)
		{
			CString temp ;

			temp.Format("%d.", index) ;
			temp += ( m_vecResultWord[i] + "\t").c_str() ;

			strResult += temp ;
		}
	}

	else 
	{
		//from (nPage-1)*MAX_RESULT_PER_PAGE, display 5 result
		int index=1 ;
		for ( size_t i= (nPage-1)*MAX_RESULT_PER_PAGE; index <6; i++, index++)
		{
			CString temp ;

			temp.Format("%d.", index) ;
			temp += ( m_vecResultWord[i] + "\t").c_str() ;

			strResult += temp ;
		}
	}

	CWnd* pWnd = GetDlgItem(IDC_EDIT_PHRASE);
	pWnd->SetWindowText(strResult) ;

	return nPage;

}


BOOL CQimWindowDlg::PreTranslateMessage(MSG* pMsg)
{
	HWND hwnd; 
	GetDlgItem(IDC_EDIT_PINYIN,&hwnd); 

	if( pMsg->message == WM_KEYDOWN && pMsg->hwnd == hwnd)
	{ 
		WORD low = LOWORD(pMsg->lParam) ;
		WORD high = HIWORD(pMsg->lParam);
		if (pMsg->lParam & 0x01000000)
		{
			
			int a=0 ;
			a++ ;
		}
		if (pMsg->wParam >= 'A' && pMsg->wParam <= 'Z') 
		{
			return CDialog::PreTranslateMessage(pMsg); 
		}
		else if (pMsg->wParam == VK_PRIOR)
		{
			m_nCurrentDisplayPage--;
			m_nCurrentDisplayPage = OnDisplayPhrase(m_nCurrentDisplayPage);
		}
		else if (pMsg->wParam == VK_NEXT )
		{
			m_nCurrentDisplayPage++;
			m_nCurrentDisplayPage = OnDisplayPhrase(m_nCurrentDisplayPage);
		}
		else if (pMsg->wParam >= '0' && pMsg->wParam <='9')
		{
			CString strPy; 
			CWnd* pWnd = GetDlgItem(IDC_EDIT_PINYIN) ;
			pWnd->GetWindowText(strPy) ;

			if (m_nCurrentStatus == STATUS_INPUT_PY && strPy.GetLength()==0 )	//input numbers
			{
				CString strText ;
				pWnd = GetDlgItem(IDC_EDIT_TEXT) ;
				pWnd->GetWindowText(strText) ;
				CString strInput ;
				strInput.Format("%c", pMsg->wParam) ;

				pWnd->SetWindowText(strText+strInput) ;

				return TRUE;
			}
			else if (m_nCurrentStatus == STATUS_INPUT_PY && strPy.GetLength()>0 )	//the first time to choose 
			{
				m_nCurrentStatus = STATUS_CHOOSE_PHRASE ;

				
				m_nCurrentHandledPos = 0 ;
				m_vecResultWord.clear() ;
			}
		}
		else if ( pMsg->wParam == VK_BACK)
		{
			if (m_nCurrentStatus == STATUS_CHOOSE_PHRASE)
			{
				m_nCurrentHandledPos = 0;
				m_strCurrentPhrase = "";
				m_nCurrentDisplayPage = 1; 
				CWnd* pWnd = GetDlgItem(IDC_EDIT_PINYIN) ;
				m_nCurrentStatus = STATUS_INPUT_PY ;
				pWnd->SetWindowText(m_strCurrentPy.c_str()) ;
				return TRUE ;
			}
		}
		else if ( pMsg->wParam == VK_RETURN )
		{
			CString strText ;
			CWnd* pWnd = GetDlgItem(IDC_EDIT_TEXT) ;
			pWnd->GetWindowText(strText) ;
			pWnd->SetWindowText(strText + m_strCurrentPy.c_str()) ;

			m_strCurrentPy = "" ;
			m_nCurrentHandledPos = 0;
			m_strCurrentPhrase = "";
			m_nCurrentDisplayPage = 1; 
			m_nCurrentStatus = STATUS_INPUT_PY ;

			pWnd = GetDlgItem(IDC_EDIT_PINYIN) ;
			pWnd->SetWindowText("");
			pWnd = GetDlgItem(IDC_EDIT_PHRASE) ;
			pWnd->SetWindowText("");

			return TRUE ;
		}
		else if ( pMsg->wParam == VK_SPACE)
		{
			CString strPy; 
			CWnd* pWnd = GetDlgItem(IDC_EDIT_PINYIN) ;
			pWnd->GetWindowText(strPy) ;

			/*if (strPy.GetLength()>0)	//
			{
				m_nCurrentStatus = STATUS_CHOOSE_PHRASE ;
				strPy += "1" ;
				pWnd->SetWindowText(strPy) ;
			}*/
			return TRUE ;
		}
		else
		{
			return TRUE ;

		}
	
		//return TRUE; 
		return CDialog::PreTranslateMessage(pMsg);
	} 

	return CDialog::PreTranslateMessage(pMsg);
}

void CQimWindowDlg::OnDestroy()
{
	CDialog::OnDestroy();

	m_Qim.Save(".\\dic\\static_table.txt", ".\\dic\\dynamic_table.txt", ".\\dic\\hash_table.txt");
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人精品国产免费网站| 欧美草草影院在线视频| 国产·精品毛片| 国产91精品免费| 国产精品综合在线视频| 国产一区二区导航在线播放| 国产又粗又猛又爽又黄91精品| 美女视频黄 久久| 久久99国产精品麻豆| 国产一区在线看| 国产精品一区二区久久精品爱涩| 国产一区在线观看视频| 国产传媒一区在线| 国产69精品久久777的优势| jiyouzz国产精品久久| 91在线视频免费91| 欧美在线观看视频一区二区| 欧美精品xxxxbbbb| 日韩一区二区三区电影在线观看 | 亚洲成人av在线电影| 亚洲国产你懂的| 天天亚洲美女在线视频| 美国十次综合导航| 国产精品亚洲第一区在线暖暖韩国| 成人美女视频在线观看18| 色综合中文字幕国产| 欧美日韩欧美一区二区| 欧美成人精品3d动漫h| 国产网红主播福利一区二区| 亚洲日本va午夜在线影院| 图片区小说区区亚洲影院| 黑人巨大精品欧美黑白配亚洲| 国产一区91精品张津瑜| 色就色 综合激情| 日韩一区二区三区观看| 国产日韩欧美高清在线| 亚洲精品免费在线观看| 日韩有码一区二区三区| 国产成人av电影在线播放| 色婷婷亚洲精品| 日韩欧美色综合| 亚洲欧洲国产日本综合| 日韩专区中文字幕一区二区| 国产a精品视频| 欧美日韩国产美| 国产日产欧美精品一区二区三区| 亚洲素人一区二区| 蜜桃av噜噜一区二区三区小说| 国产成人小视频| 欧美日韩黄色一区二区| 久久久久久久久久久99999| 一区二区三区蜜桃| 国内成+人亚洲+欧美+综合在线| 99国产麻豆精品| 精品入口麻豆88视频| 亚洲麻豆国产自偷在线| 韩国视频一区二区| 在线视频综合导航| 中文在线一区二区| 日本亚洲免费观看| 91丨九色丨蝌蚪丨老版| 精品国产髙清在线看国产毛片| 1区2区3区国产精品| 韩国女主播成人在线观看| 在线免费不卡视频| 亚洲国产成人私人影院tom| 美女视频黄 久久| 欧美在线观看视频一区二区| 国产精品色在线| 国产在线视频不卡二| 欧美日韩午夜在线视频| 国产精品传媒视频| 国产乱国产乱300精品| 欧美肥妇毛茸茸| 亚洲黄色av一区| 成人午夜又粗又硬又大| 久久久久久久久久久久久久久99 | 久久久精品欧美丰满| 五月天丁香久久| 在线这里只有精品| 亚洲视频你懂的| 国产成a人无v码亚洲福利| 欧美sm极限捆绑bd| 男女性色大片免费观看一区二区 | 久久久www成人免费无遮挡大片| 午夜成人免费视频| 欧美综合在线视频| 一区二区三区四区高清精品免费观看| 国产一区二区三区在线看麻豆| 日韩色在线观看| 日韩一区精品字幕| 欧美高清视频在线高清观看mv色露露十八| 中文字幕亚洲综合久久菠萝蜜| 国产成人综合在线观看| 欧美精品一区二区久久婷婷| 美女精品自拍一二三四| 日韩精品中文字幕在线不卡尤物 | 色哟哟欧美精品| 亚洲欧美日韩小说| 99国产欧美另类久久久精品| 国产精品久久免费看| 成人晚上爱看视频| 日本一二三四高清不卡| 成人的网站免费观看| 国产精品乱码一区二三区小蝌蚪| 国产91在线|亚洲| 日本一区二区在线不卡| zzijzzij亚洲日本少妇熟睡| 国产精品福利一区二区| 不卡的电视剧免费网站有什么| 中文字幕在线不卡| 91美女在线视频| 一二三区精品福利视频| 欧美日韩在线精品一区二区三区激情 | 欧美日韩国产片| 免费人成在线不卡| 久久中文字幕电影| 国产成人av电影在线| 中文字幕佐山爱一区二区免费| 91亚洲大成网污www| 亚洲最色的网站| 欧美日韩精品一区视频| 久草这里只有精品视频| 国产拍欧美日韩视频二区| 91在线视频播放地址| 亚洲愉拍自拍另类高清精品| 欧美日韩黄色影视| 国产在线一区观看| 亚洲欧洲精品天堂一级| 欧美猛男gaygay网站| 蜜桃免费网站一区二区三区| 国产免费观看久久| 欧洲中文字幕精品| 国模大尺度一区二区三区| 久久九九久久九九| 看片网站欧美日韩| ...中文天堂在线一区| 欧美日韩亚洲丝袜制服| 韩国女主播一区二区三区| 国产精品国产馆在线真实露脸| 亚洲欧美另类小说| 欧美欧美午夜aⅴ在线观看| 久久国产欧美日韩精品| 国产精品国产精品国产专区不蜜| 欧美体内she精视频| 韩国毛片一区二区三区| 亚洲理论在线观看| 日韩欧美一级二级| 日本久久一区二区| 激情六月婷婷久久| 亚洲狼人国产精品| 久久丝袜美腿综合| 在线精品视频免费播放| 国产真实乱子伦精品视频| 日韩毛片精品高清免费| 日韩欧美成人激情| 91香蕉视频黄| 国产最新精品精品你懂的| 一区二区三区视频在线看| 精品日韩在线观看| 欧美三区在线视频| 99久久精品国产导航| 精品在线亚洲视频| 亚洲一区二区三区自拍| 国产欧美1区2区3区| 欧美一区二区三区在线电影| 99re热这里只有精品免费视频| 日本成人在线电影网| 一区二区三区四区蜜桃| 国产亚洲一区二区三区在线观看| 欧美日韩在线免费视频| 91视频国产资源| 国产盗摄女厕一区二区三区 | 日本高清不卡视频| 久久99国产精品久久99| 图片区小说区国产精品视频| ㊣最新国产の精品bt伙计久久| 26uuu国产电影一区二区| 欧美日韩国产综合一区二区| 色婷婷亚洲精品| av成人免费在线| 丰满亚洲少妇av| 国产精品中文字幕一区二区三区| 日韩二区三区在线观看| 亚洲一区二区三区三| 亚洲日本在线看| 国产精品电影院| 国产精品视频免费看| 久久精品一区二区三区四区| 日韩精品一区国产麻豆| 欧美卡1卡2卡| 欧美日韩综合色| 在线亚洲一区二区| 91成人国产精品| 在线亚洲高清视频| 欧美专区在线观看一区| 色综合久久综合网97色综合| 91美女福利视频| 一本色道久久综合狠狠躁的推荐| 成人午夜免费电影|