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

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

?? testdlg.cpp

?? CEComm: Windows CE 4.0下的串口調試程序 串口精靈源代碼 TTY:Windows 下的類似超級終端的原代碼. TAPICase: Windows 下用TAPI撥號的例子 image
?? CPP
字號:
// TestDlg.cpp : implementation file
//

#include "stdafx.h"
#include "Test.h"
#include "TestDlg.h"
#include "Serial.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CTestDlg dialog

CTestDlg::CTestDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CTestDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CTestDlg)
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CTestDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CTestDlg)
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CTestDlg, CDialog)
	//{{AFX_MSG_MAP(CTestDlg)
	ON_WM_HELPINFO()
	ON_CBN_SELCHANGE(IDC_PORT, OnSelchangePort)
	ON_CBN_SELCHANGE(IDC_BAUD, OnSelchangeBaud)
	ON_CBN_SELCHANGE(IDC_DATABITS, OnSelchangeDatabits)
	ON_CBN_SELCHANGE(IDC_STOPBITS, OnSelchangeStopbits)
	ON_CBN_SELCHANGE(IDC_PARITY, OnSelchangeParity)
	ON_BN_CLICKED(IDC_BTNOPEN, OnBtnopen)
	ON_BN_CLICKED(IDC_CHKRCVHEX, OnChkrcvhex)
	ON_BN_CLICKED(IDC_CHKSNDHEX, OnChksndhex)
	ON_BN_CLICKED(IDC_AUTOSEND, OnAutosend)
	ON_EN_CHANGE(IDC_EDTFREQENCY, OnChangeEdtfreqency)
	ON_EN_KILLFOCUS(IDC_EDTFREQENCY, OnKillfocusEdtfreqency)
	ON_BN_CLICKED(IDC_CLSRCV, OnClsrcv)
	ON_BN_CLICKED(IDC_CLSSEND, OnClssend)
	ON_MESSAGE(WM_COMM_RXCHAR, OnCommunication)
	ON_BN_CLICKED(IDC_MANSEND, OnMansend)
	ON_BN_CLICKED(IDC_RESET, OnReset)
	ON_BN_CLICKED(IDC_SAVE, OnSave)
	ON_WM_TIMER()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CTestDlg message handlers

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

	// 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
	
	CenterWindow(GetDesktopWindow());	// center to the hpc screen

	// TODO: Add extra initialization here

	// Init default Value in Main Window
	// Also Init struct "DlgAttr",which is used save the changed Value in Main Window 
	// Port
	CComboBox* pComboBox = (CComboBox*)GetDlgItem(IDC_PORT);
	pComboBox->SetCurSel (0);
	pComboBox->GetLBText(pComboBox->GetCurSel(),DlgAttr.PORT);
	// Baud
	pComboBox = (CComboBox*)GetDlgItem(IDC_BAUD);
	pComboBox->SetCurSel(3);
	pComboBox->GetLBText(pComboBox->GetCurSel(),DlgAttr.BAUD);
	// Databits
	pComboBox = (CComboBox*)GetDlgItem(IDC_DATABITS);
	pComboBox->SetCurSel(2);
	pComboBox->GetLBText(pComboBox->GetCurSel(),DlgAttr.DATABITS);
	// Stopbits
	pComboBox = (CComboBox*)GetDlgItem(IDC_STOPBITS);
	pComboBox->SetCurSel(0);
	pComboBox->GetLBText(pComboBox->GetCurSel(),DlgAttr.STOPBITS);
	// Parity
	pComboBox = (CComboBox*)GetDlgItem(IDC_PARITY);
	pComboBox->SetCurSel(1);
	pComboBox->GetLBText(pComboBox->GetCurSel(),DlgAttr.PARITY);
	// Show HEX 
	CButton* pBtn = (CButton*)GetDlgItem(IDC_CHKRCVHEX);
	pBtn->SetCheck (0);
	DlgAttr.RCVHEX = pBtn->GetCheck ();
	// Send Hex
	pBtn = (CButton*)GetDlgItem(IDC_CHKSNDHEX);	
	pBtn->SetCheck (0);
	DlgAttr.SENDHEX  = pBtn->GetCheck ();
	// Auto Send
	pBtn = (CButton*)GetDlgItem(IDC_AUTOSEND);	
	pBtn->SetCheck (0);
	DlgAttr.AUTOSEND = pBtn->GetCheck ();
	// Auto send frequency
	CEdit* pEdt = (CEdit*)GetDlgItem(IDC_EDTFREQUENCY);
	pEdt->SetWindowText (_T("1000"));
	pEdt->GetWindowText (DlgAttr.FREQUENCY);

	// Send bytes count
	pEdt = (CEdit*)GetDlgItem(IDC_SNDBYTES);
	pEdt->SetWindowText (_T("0"));

	// Receive bytes count
	pEdt = (CEdit*)GetDlgItem(IDC_RCVBYTES);
	pEdt->SetWindowText (_T("0"));
	
	// Set StatusBar text
	CStatic* pStatic = (CStatic*)GetDlgItem(IDC_STATUSBAR);
	m_statusbar_str = DlgAttr.PORT+" OPEND! BAUD:" + DlgAttr.BAUD + ",DATABITS:" + DlgAttr.DATABITS + ",STOPBITS:" + DlgAttr.STOPBITS + ",PARITY:" + DlgAttr.PARITY + ".";
	pStatic->SetWindowText (m_statusbar_str);
	
	m_com.InitializePort(this->m_hWnd,DlgAttr.PORT ,(UINT)CStringToInt(DlgAttr.BAUD),DlgAttr.PARITY ,(UINT)CStringToInt(DlgAttr.DATABITS),(UINT)CStringToInt(DlgAttr.STOPBITS));
	m_com.StartReadThread ();

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

void CTestDlg::OnHelpInfo()
{
	// TODO: implement help here
	MessageBox(_T("Free Software!\nVersion:1.30\nAuthor:rootgr.wu\nEmail:rootgr@wst.net.cn\nMSN:wutieru@hotmail.com\n"));
}

void CTestDlg::OnSelchangePort() 
{
	CComboBox* pComboBox = (CComboBox*)GetDlgItem(IDC_PORT);
	pComboBox->GetLBText(pComboBox->GetCurSel(),DlgAttr.PORT);
}

void CTestDlg::OnSelchangeBaud() 
{
	CComboBox* pComboBox = (CComboBox*)GetDlgItem(IDC_BAUD);
	pComboBox->GetLBText(pComboBox->GetCurSel(),DlgAttr.BAUD);
}

void CTestDlg::OnSelchangeDatabits() 
{	
	CComboBox* pComboBox = (CComboBox*)GetDlgItem(IDC_DATABITS);
	pComboBox->GetLBText(pComboBox->GetCurSel(),DlgAttr.DATABITS);	
}

void CTestDlg::OnSelchangeStopbits() 
{
	CComboBox* pComboBox = (CComboBox*)GetDlgItem(IDC_STOPBITS);
	pComboBox->GetLBText(pComboBox->GetCurSel(),DlgAttr.STOPBITS);
}

void CTestDlg::OnSelchangeParity() 
{
	CComboBox* pComboBox = (CComboBox*)GetDlgItem(IDC_PARITY);
	pComboBox->GetLBText(pComboBox->GetCurSel(),DlgAttr.PARITY);
}

void CTestDlg::OnBtnopen() 
{
	// Get Current Button Status
	CString btnstr;
	CButton* pBtnOpen = (CButton*)GetDlgItem(IDC_BTNOPEN);
	pBtnOpen->GetWindowText(btnstr);
	m_statusbar_str = DlgAttr.PORT+" OPEND! BAUD:" + DlgAttr.BAUD + ",DATABITS:" + DlgAttr.DATABITS + ",STOPBITS:" + DlgAttr.STOPBITS + ",PARITY:" + DlgAttr.PARITY + ".";
	// Set Button Status
	if (btnstr=="OPENED")
	{
		// Set Status Bar Text.
		pBtnOpen->SetWindowText(_T("CLOSED"));
		m_statusbar_str = DlgAttr.PORT+" CLOSED!";
		
		// Close port Handle
		m_com.ClosePort ();
		m_com.StopReadThread ();

	}
	else
	{
		// Set Status Bar Text.
		pBtnOpen->SetWindowText (_T("OPENED"));
		m_statusbar_str = DlgAttr.PORT+" OPEND! BAUD:" + DlgAttr.BAUD + ",DATABITS:" + DlgAttr.DATABITS + ",STOPBITS:" + DlgAttr.STOPBITS + ",PARITY:" + DlgAttr.PARITY + ".";
		
		// Open Port
		m_com.InitializePort(this->m_hWnd,DlgAttr.PORT ,(UINT)CStringToInt(DlgAttr.BAUD),DlgAttr.PARITY ,(UINT)CStringToInt(DlgAttr.DATABITS),(UINT)CStringToInt(DlgAttr.STOPBITS));
		m_com.StartReadThread ();
	}

	// Get Current Status Bar Handle and Set to window
	CStatic* pStatic = (CStatic*)GetDlgItem(IDC_STATUSBAR);
	pStatic->SetWindowText (m_statusbar_str);
}

void CTestDlg::OnChkrcvhex() 
{
	CButton* pBtnCHKRCVHEX = (CButton*)GetDlgItem(IDC_CHKRCVHEX);
	DlgAttr.RCVHEX = pBtnCHKRCVHEX->GetCheck ();
}

void CTestDlg::OnChksndhex() 
{
	CButton* pBtnCHKRCVHEX = (CButton*)GetDlgItem(IDC_CHKSNDHEX);
	DlgAttr.SENDHEX = pBtnCHKRCVHEX->GetCheck ();
}

void CTestDlg::OnAutosend() 
{
	CButton* pBtnAUTOSEND = (CButton*)GetDlgItem(IDC_AUTOSEND);
	if(pBtnAUTOSEND->GetCheck())
		SetTimer(1,(UINT)CStringToInt(DlgAttr.FREQUENCY),NULL);
	else
		KillTimer(1);
}

void CTestDlg::OnChangeEdtfreqency() 
{
	// TODO: If this is a RICHEDIT control, the control will not
	// send this notification unless you override the CDialog::OnInitDialog()
	// function and call CRichEditCtrl().SetEventMask()
	// with the ENM_CHANGE flag ORed into the mask.
	
	// If the edit value changed, stop auto send and uncheck "Auto Send Data"
	// check box first.
	CButton* pBtn = (CButton*)GetDlgItem(IDC_AUTOSEND);
	pBtn->SetCheck (0);
	KillTimer(1);
}

void CTestDlg::OnKillfocusEdtfreqency() 
{
	CEdit* pEdt = (CEdit*)GetDlgItem(IDC_EDTFREQUENCY);
	pEdt->GetWindowText (DlgAttr.FREQUENCY);
}


double CTestDlg::CStringToInt(CString str)
{
	char *m_str;
	int nSize = 2*str.GetLength(); 
	char *pAnsiString = new char[nSize+1]; 
	wcstombs(pAnsiString, str, nSize+1); 
	double x = strtod(pAnsiString,&m_str);
	delete [] pAnsiString;
	return x;
}


void CTestDlg::OnClsrcv() 
{
	CEdit* pEdt = (CEdit*)GetDlgItem(IDC_EDTRCV);
	pEdt->SetWindowText (_T(""));
}

void CTestDlg::OnClssend() 
{
	CEdit* pEdt = (CEdit*)GetDlgItem(IDC_EDTSEND);
	pEdt->SetWindowText (_T(""));
}

void CTestDlg::OnCommunication(WPARAM ch, LPARAM port)
{
	CString tempstr;
	CString temp;
	char hex_buf[4];				// hex convert buffer 
	unsigned char ch_buf;			// ansi convert buffer
	int i;							// bytes count in convert buffer

	// get current display string for appending.
	CEdit* pEdt = (CEdit*)GetDlgItem(IDC_EDTRCV);
	pEdt->GetWindowText (tempstr);

	// Ansi data
	ch_buf = (unsigned char)ch;

	// Hex data
	i = sprintf(hex_buf,"%.2X",ch_buf)/2;

// -------------display send bytes count.-----------------
	CString rcvcount;

	// get current counts in the form.
	CEdit* prcvEdt = (CEdit*)GetDlgItem(IDC_RCVBYTES);
	prcvEdt->GetWindowText (rcvcount);

// =-----------check if receive hex combox --------------=
	if(DlgAttr.RCVHEX == 0)	// send ANSI
	{
		tempstr=tempstr+CString(ch_buf);
		temp = UnicodeToAnsi(tempstr);
		pEdt->SetWindowText (temp);
	}
	else					// send HEX
	{
		tempstr=tempstr+hex_buf + " ";
		pEdt->SetWindowText (tempstr);
	}
	// send byte counts to dialog
	rcvcount.Format (_T("%d"),(int)CStringToInt(rcvcount)+i);
	prcvEdt->SetWindowText(rcvcount);
}

void CTestDlg::OnMansend() 
{
	CString tempstr;
	CString sndstr;
	// Get string in IDC_EDTSEND.
	CEdit* pEdt = (CEdit*)GetDlgItem(IDC_EDTSEND);
	pEdt->GetWindowText(tempstr);
	// display bytes count.
	pEdt = (CEdit*)GetDlgItem(IDC_SNDBYTES);
	pEdt->GetWindowText(sndstr);

	// convert unicode to ansi first.
	char *buf = UnicodeToAnsi(tempstr);
	char *Sendbuf = new char[strlen(buf)];
	memset(Sendbuf,0,strlen(buf)/2);

	if(DlgAttr.SENDHEX == 0)				// Send ANSI data.
	{
		m_com.WriteChar (buf);
		sndstr.Format (_T("%d"),(int)CStringToInt(sndstr)+strlen(buf));
	}
	else
	{
		if(IsHex(buf))						// Send HEX data.
		{
			ToHex(buf,Sendbuf);
			m_com.WriteChar (Sendbuf,strlen(buf)/2);
			sndstr.Format (_T("%d"),(int)CStringToInt(sndstr)+strlen(buf)/2);
		}
	}
	pEdt->SetWindowText(sndstr);

	delete [] Sendbuf;
	free(buf);
}

CTestDlg::~CTestDlg()
{
	m_statusbar_str = "";
	m_com.ClosePort ();
	m_com.StopReadThread ();
}

char * CTestDlg::UnicodeToAnsi(LPCTSTR lpString)
{
	// Calculate unicode string length.
	UINT len = wcslen(lpString)*2;
	char *buf = (char *)malloc(len);
	UINT i = wcstombs(buf,lpString,len);
	return buf;
}


void CTestDlg::OnReset() 
{
	CEdit* pEdt = (CEdit*)GetDlgItem(IDC_SNDBYTES);
	pEdt->SetWindowText (_T("0"));
	pEdt = (CEdit*)GetDlgItem(IDC_RCVBYTES);
	pEdt->SetWindowText (_T("0"));
}

void CTestDlg::OnSave() 
{
	FILE *stream;
	int writecount;
	CString edtrcv;
	SYSTEMTIME st;
	// get current receive data.
	CEdit* pEdt = (CEdit*)GetDlgItem(IDC_EDTRCV);
	pEdt->GetWindowText (edtrcv);
	GetLocalTime(&st);
	CString str_time;
	str_time.Format (_T("%.4d-%.2d-%.2d %.2d:%.2d:%.2d\n"),st.wYear,st.wMonth,st.wDay,st.wHour,st.wMinute,st.wSecond);
	edtrcv = str_time + edtrcv;
	if((stream = fopen("receive.log","w+t"))!=NULL)
	{
		writecount = fwrite(UnicodeToAnsi(edtrcv),sizeof(char),strlen(UnicodeToAnsi(edtrcv)),stream);
		fclose(stream);
	}
	else
	{
		AfxMessageBox(L"Open File FAIL!");
	}
	free(stream);
}

void CTestDlg::OnTimer(UINT nIDEvent) 
{
	// TODO: Add your message handler code here and/or call default
	OnMansend();
	CDialog::OnTimer(nIDEvent);
}

void CTestDlg::GetANSI(LPCTSTR lpString,char *charstr)  
{
	int strlen = wcslen(lpString)*2;
	charstr = new char[strlen+1]; 
	wcstombs(charstr, lpString, strlen+1); 
}


void CTestDlg::ToHex(char *pSource, char *pDest)
{	
	int len = strlen(pSource);
	
	char hexchar;
	for(int i=0;i<len;i+=2)
	{
		// 十位數
		if( pSource[i] >= 0x30 && pSource[i]<= 0x39)
			hexchar = (pSource[i]- 0x30 ) * 16;
		else if(pSource[i] >= 0x41 && pSource[i] <= 0x46)
			hexchar = (pSource[i] - 0x37) * 16;
		else if(pSource[i] >= 0x61 && pSource[i] <= 0x66)
			hexchar = (pSource[i] - 0x57) * 16;

		// 個位數加十位數
		if( pSource[i+1] >= 0x30 && pSource[i+1]<= 0x39)
			hexchar = hexchar + (pSource[i+1]- 0x30 );
		else if(pSource[i+1] >= 0x41 && pSource[i+1] <= 0x46)
			hexchar = hexchar + (pSource[i+1] - 0x37);
		else if(pSource[i+1] >= 0x61 && pSource[i+1] <= 0x66)
			hexchar = hexchar + (pSource[i+1] - 0x57);

		pDest[i/2] = hexchar;
	}
}

BOOL CTestDlg::IsHex(char *pString)
{
	// must be ansi code here
	char HEX[] = "0123456789ABCDEFabcdef";		// support HEX Code
	int len = strlen(pString);
	char *result;

	for (int i=0;i<len;i++)
	{
		result = strchr(HEX,pString[i]);
		if(result==NULL)
		{
			AfxMessageBox(L"unsupport char in send buffer!");
			return FALSE;
		}
	}
	return TRUE;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
香港成人在线视频| 久久久精品tv| 蜜臀久久99精品久久久久宅男| 欧美视频一区二区三区| 日韩电影在线免费看| 日韩欧美一级精品久久| 国产一区二三区| 国产精品久久久久久久久动漫 | 毛片基地黄久久久久久天堂| 91麻豆精品国产91久久久久久| 美女一区二区视频| 日本一区二区三区dvd视频在线| av福利精品导航| 亚洲成人av一区二区三区| 精品国产免费人成电影在线观看四季| 国产一区在线视频| 亚洲欧美在线观看| 91精品国产综合久久精品麻豆 | 国产精品久久综合| 欧美亚洲一区三区| 国内精品久久久久影院一蜜桃| 欧美国产精品专区| 欧美日韩高清一区二区| 粉嫩绯色av一区二区在线观看| 樱桃视频在线观看一区| 日韩欧美国产1| 91女人视频在线观看| 日本中文一区二区三区| 中文av字幕一区| 欧美一区二区女人| 91社区在线播放| 久久精品国产秦先生| 亚洲免费视频中文字幕| 日韩美一区二区三区| 在线免费一区三区| 国产精品夜夜嗨| 亚洲aaa精品| 亚洲视频一区在线观看| 精品国产三级电影在线观看| 在线免费视频一区二区| 国产成人在线免费| 日本午夜一本久久久综合| 中文字幕在线不卡一区二区三区| 日韩一区二区三区精品视频| 亚洲一区影音先锋| 国产女人18水真多18精品一级做| 午夜精品一区在线观看| 欧美精品一二三| 高清国产一区二区三区| 国产精品美女一区二区三区| 国产亚洲污的网站| 中文字幕av一区 二区| 中文字幕av一区 二区| 亚洲欧美另类小说| 亚洲国产日韩综合久久精品| 首页综合国产亚洲丝袜| 免费观看在线综合色| 国产一区在线观看麻豆| 成人午夜视频网站| 在线观看免费一区| 欧美一区二区三区啪啪| www国产精品av| 国产精品电影一区二区| 亚洲综合清纯丝袜自拍| 蜜桃传媒麻豆第一区在线观看| 国产麻豆精品一区二区| 91视频一区二区三区| 亚洲电影视频在线| 亚洲综合av网| 亚洲 欧美综合在线网络| 麻豆成人免费电影| eeuss鲁一区二区三区| 欧美日韩精品欧美日韩精品| 欧美刺激脚交jootjob| 国产精品灌醉下药二区| 亚洲国产日韩综合久久精品| 精品午夜久久福利影院 | 99精品国产热久久91蜜凸| 91免费在线看| 欧美α欧美αv大片| 成人免费在线视频观看| 青青草原综合久久大伊人精品优势 | 日韩一区二区免费在线电影| 久久久久久久久久久久久夜| 亚洲精品福利视频网站| 久久国产精品区| 91免费国产在线| 欧美成人免费网站| 樱花影视一区二区| 国产成人午夜片在线观看高清观看| 在线观看av不卡| 欧美videossexotv100| 秋霞电影网一区二区| 久草在线在线精品观看| 视频一区在线视频| 精品无码三级在线观看视频| 色综合久久综合网97色综合| 精品卡一卡二卡三卡四在线| 一区二区三区免费在线观看| 韩国一区二区在线观看| 日本韩国一区二区三区| 欧美高清一级片在线观看| 麻豆高清免费国产一区| 欧美视频一区二区三区| 中文字幕亚洲视频| 国产精品18久久久久久久网站| 色久优优欧美色久优优| 久久精品人人做人人爽97| 青青草91视频| 精品视频色一区| 亚洲免费电影在线| 99麻豆久久久国产精品免费 | 韩国女主播一区二区三区| 欧美曰成人黄网| 日韩一区在线播放| 韩国精品免费视频| 91精品国产一区二区三区蜜臀| 一区二区三区成人在线视频| 波多野结衣亚洲| 国产精品嫩草影院av蜜臀| 国产毛片精品一区| 久久综合色之久久综合| 玖玖九九国产精品| 日韩一区二区在线播放| 视频一区在线播放| 91精品视频网| 久久精工是国产品牌吗| 欧美一区二区免费| 蜜臀久久99精品久久久久久9| 欧美一区二区久久| 美腿丝袜亚洲一区| 欧美tickling挠脚心丨vk| 麻豆精品精品国产自在97香蕉| 91精品久久久久久蜜臀| 丝袜国产日韩另类美女| 91精品国产一区二区三区| 奇米综合一区二区三区精品视频| 51精品国自产在线| 麻豆视频一区二区| 精品国产99国产精品| 国产在线视频精品一区| 久久久久国产一区二区三区四区| 国产精品中文字幕欧美| 国产亚洲精品aa| 成人av在线一区二区| 成人免费一区二区三区在线观看| proumb性欧美在线观看| 亚洲欧美日韩国产手机在线 | 欧美最猛性xxxxx直播| 午夜电影一区二区三区| 日韩一级完整毛片| 国产揄拍国内精品对白| 日本一区二区高清| 91国偷自产一区二区三区成为亚洲经典| 亚洲精品国产精品乱码不99| 欧美午夜在线观看| 久久se这里有精品| 国产精品视频线看| 欧美性大战久久| 精品一区二区国语对白| 国产精品天干天干在观线| av在线不卡网| 日韩精品一级二级| 欧美国产日韩亚洲一区| 欧美性色欧美a在线播放| 精一区二区三区| 亚洲色图在线视频| 91精品国产91久久久久久最新毛片| 国产精品一二一区| 一区二区三区在线免费视频| 日韩欧美一二三四区| 成人爱爱电影网址| 丝袜美腿高跟呻吟高潮一区| 久久嫩草精品久久久精品一| 色呦呦网站一区| 久久 天天综合| 一区二区三区在线播放| 欧美不卡一区二区| 91麻豆swag| 韩国精品免费视频| 亚洲国产精品尤物yw在线观看| 日韩免费一区二区| 欧洲视频一区二区| 国产精品一二三| 日韩av一级片| 最新国产成人在线观看| 日韩欧美国产高清| 欧美在线一二三四区| 国产一区二区成人久久免费影院| 亚洲激情校园春色| 国产三区在线成人av| 欧美日韩免费电影| eeuss鲁一区二区三区| 久久99热狠狠色一区二区| 一区二区不卡在线播放 | 1区2区3区精品视频| 日韩欧美一级在线播放| 欧美色爱综合网| 91浏览器在线视频| 国产91在线观看丝袜|