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

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

?? 串口通信dlg.cpp

?? 本人用vc++編的關于串口通信的小程序
?? CPP
字號:
// 串口通信Dlg.cpp : implementation file
//

#include "stdafx.h"
#include "串口通信.h"
#include "DataSendDlg.h"
#include "DataReceiveDlg.h"
#include "串口通信Dlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About

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

// Dialog Data
	//{{AFX_DATA(CAboutDlg)
	enum { IDD = IDD_ABOUTBOX };
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAboutDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	//{{AFX_MSG(CAboutDlg)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

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

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
	//{{AFX_MSG_MAP(CAboutDlg)
		// No message handlers
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyDlg dialog

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

void CMyDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CMyDlg)
	DDX_Control(pDX, IDC_OPEN_RADIO, m_SetRadio);
	DDX_Control(pDX, IDC_MSCOMM, m_Comm);
	DDX_Text(pDX, IDC_EDIT_RECEIVE, m_Receive);
	DDX_Text(pDX, IDC_EDIT_SEND, m_Send);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CMyDlg, CDialog)
	//{{AFX_MSG_MAP(CMyDlg)
	ON_WM_SYSCOMMAND()
	ON_WM_PAINT()
	ON_WM_QUERYDRAGICON()
	ON_BN_CLICKED(IDC_BUTTON_SEND, OnButtonSend)
	ON_BN_CLICKED(IDC_BUTTON_SAVE, OnButtonSave)
	ON_BN_CLICKED(IDC_BUTTON_ABOUT, OnButtonAbout)
	ON_BN_CLICKED(IDC_BUTTON_OPENS, OnButtonOpenS)
	ON_BN_CLICKED(IDC_BUTTON_OPENR, OnButtonOpenR)
	ON_BN_CLICKED(IDC_OPEN_RADIO, OnOpenRadio)
	ON_BN_CLICKED(IDC_CLOSE_RADIO, OnCloseRadio)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyDlg message handlers

BOOL CMyDlg::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
	
	// TODO: Add extra initialization here
//	this->InitCOM(1,"9600,n,8,1");
	((CComboBox *)this->GetDlgItem(IDC_COMBO_COMNUM))->SetCurSel(0);
	((CComboBox *)this->GetDlgItem(IDC_COMBO_RATE))->SetCurSel(2);
	((CComboBox *)this->GetDlgItem(IDC_COMBO_CHECK))->SetCurSel(2);
	((CComboBox *)this->GetDlgItem(IDC_COMBO_DATA))->SetCurSel(2);
	((CComboBox *)this->GetDlgItem(IDC_COMBO_STOP))->SetCurSel(0);
	((CComboBox *)this->GetDlgItem(IDC_COMBO_SAVE))->SetCurSel(0);
	((CButton *)this->GetDlgItem(IDC_CHECK_SAVE))->SetCheck(1);
	this->SetDlgItemText(IDC_EDIT_COMSTATE,"已關閉");
	::AfxGetModuleState()->m_dwVersion = 0x0601;
	this->m_pRS=new CDaoRecordset(&m_db);
	CFileFind fd;
	if(!fd.FindFile("temp.mdb"))
	{
			this->m_db.Create("temp.mdb");
			CString sqlcmd="create table Send(時間 VARCHAR(50),數據 VARCHAR(250));";
			this->m_db.Execute(sqlcmd);
			sqlcmd="create table Receive(時間 VARCHAR(50),數據 VARCHAR(250));";
			this->m_db.Execute(sqlcmd);
			this->m_db.Close();
	}
	fd.Close();
	this->m_bmp[0].LoadBitmap(IDB_BITMAP_CLOSE);
	this->m_bmp[1].LoadBitmap(IDB_BITMAP_OPEN);
	//((CStatic *)this->GetDlgItem(IDC_PIC))->SetBitmap(HBITMAP(this->m_bmp[0]));
	CheckRadioButton(IDC_OPEN_RADIO,IDC_CLOSE_RADIO,IDC_CLOSE_RADIO);
	iSetRadio=FALSE;
	return TRUE;  // return TRUE  unless you set the focus to a control
}

void CMyDlg::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 CMyDlg::OnPaint() 
{
	if (IsIconic())
	{
		CPaintDC dc(this); // device context for painting

		SendMessage(WM_ICONERASEBKGND, (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 to obtain the cursor to display while the user drags
//  the minimized window.
HCURSOR CMyDlg::OnQueryDragIcon()
{
	return (HCURSOR) m_hIcon;
}

void CMyDlg::InitCOM(int com_num,CString args)
{
	//串口初始化///////////////////////////////////////////////////////////////////////
	m_Comm.SetCommPort(com_num);	//串口號,一般從1到4 
	m_Comm.SetInputMode(1);	//0-Text 接收數據的類型,0表示文本類型,1表示二進制類型
	m_Comm.SetSettings(args);//串口的參數設置,依次為波特率、奇偶校驗(n-無校驗,e-偶校驗,o-奇校驗)、數據位數、停止位數
	m_Comm.SetRThreshold(1);//設定當接收幾個字符時觸發OnComm事件,0表示不產生事件,1表示每接收一個字符就產生一個事件
	m_Comm.SetInputLen(0);	//從接收緩沖區讀取的字節數,0表示全部讀取
	if(!m_Comm.GetPortOpen())//檢測是否已經打開過端口
	{
		m_Comm.SetPortOpen(TRUE); //如沒有打開則將端口打開
	}
	else
		AfxMessageBox("Open The Serial Port 1 Failurre!");
	m_Comm.GetInput(); 
	///////////////////////////////////////////////////////////////////////////////////
}

void CMyDlg::OnButtonSend() 
{
	// TODO: Add your control notification handler code here
	if(!this->m_Comm.GetPortOpen())
	{
		AfxMessageBox("COM端口還沒有打開!請先設置參數,然后再打開!");
		return;
	}
	this->UpdateData(TRUE);

	if(this->m_Send.IsEmpty())
	{
		AfxMessageBox("請在發送區輸入數據!");
		return;
	}
	if(((CButton *)this->GetDlgItem(IDC_CHECK_SAVE))->GetCheck()==1)
		this->Save(this->m_Send,'S');

///////////////////////////////////////////////////////////////////字符轉十六進制
	if(((CButton *)this->GetDlgItem(IDC_CHECK_HEX))->GetCheck()==1)
	{
		this->m_Send.MakeUpper();
		int strlen=this->m_Send.GetLength();
		for(int i=0;i<strlen;i++)
		{
			if(this->m_Send.GetAt(i)>='0'&&this->m_Send.GetAt(i)<='9')
				this->m_Send.SetAt(i,this->m_Send.GetAt(i)-'0');
			if(this->m_Send.GetAt(i)>='A'&&this->m_Send.GetAt(i)<='F')
				this->m_Send.SetAt(i,this->m_Send.GetAt(i)-'A'+10);
		}
	}
	//AfxMessageBox(this->m_Send);
//////////////////////////////////////////////////////////////////
	int count=this->m_Send.GetLength();
	CByteArray array;
	array.RemoveAll();
	array.SetSize(count);
	for(int i=0;i<count;i++)
		array.SetAt(i,this->m_Send[i]);
	this->m_Comm.SetOutput(COleVariant(array));
	this->m_Send.Empty();
	this->UpdateData(FALSE);
}

BEGIN_EVENTSINK_MAP(CMyDlg, CDialog)
    //{{AFX_EVENTSINK_MAP(CMyDlg)
	ON_EVENT(CMyDlg, IDC_MSCOMM, 1 /* OnComm */, OnComm, VTS_NONE)
	//}}AFX_EVENTSINK_MAP
END_EVENTSINK_MAP()

void CMyDlg::OnComm() 
{
	// TODO: Add your control notification handler code here
	VARIANT variant;
	COleSafeArray safearray;
	long i=0;
	int len;
	char rxdata[1000];
	if(this->m_Comm.GetCommEvent()==2)
	{
			variant=this->m_Comm.GetInput();
			safearray=variant;
			len=safearray.GetOneDimSize();
			for(i=0;i<len;i++)
				safearray.GetElement(&i,&rxdata[i]);
			rxdata[i]='\0';
///////////////////////////////////////////////////////////////十六進制轉字符
		//	AfxMessageBox(rxdata);
			if(((CButton *)this->GetDlgItem(IDC_CHECK_HEX))->GetCheck()==1)
			{
				for(int j=0;j<i;j++)
				{
					if(rxdata[j]>=0&&rxdata[j]<=9)
						rxdata[j]+='0';
					if(rxdata[j]>=10&&rxdata[j]<=15)
						rxdata[j]=rxdata[j]+'A'-10;
				}
			}
///////////////////////////////////////////////////////////////
			this->m_Receive+=rxdata;
	}
	this->UpdateData(FALSE);
}

void CMyDlg::OnOK() 
{
	// TODO: Add extra validation here
	if(this->m_Receive.IsEmpty())
		return;
	if(AfxMessageBox("數據還沒有保存,是否保存?",1)==1)
		this->Save(this->m_Receive,'R');
	this->m_Receive.Empty();
	this->UpdateData(false);
	//CDialog::OnOK();
}


void CMyDlg::Save(CString strdata,char flag) 
{
	// TODO: Add your control notification handler code here
	CString temp,filename=_T("Temp.txt");
	if(flag=='R')filename=_T("Receive.txt");
	if(flag=='S')filename=_T("Send.txt");
	this->GetDlgItemText(IDC_COMBO_SAVE,temp);
	if(temp.Compare("文本")==0)
	{
		temp.Empty();
		CFile fp;
		if(!fp.Open(filename,CFile::modeCreate|CFile::modeWrite|CFile::modeNoTruncate,NULL))
		{
			AfxMessageBox("不能打開保存文件!");
			fp.Close();
			return;
		}
		fp.SeekToEnd();
		CTime t=CTime::GetCurrentTime();
		temp.Format("時間:%d年%d月%d日%d時%d分%d秒",t.GetYear(),t.GetMonth(),t.GetDay(),t.GetHour(),t.GetMinute(),t.GetSecond());
		fp.Write(temp,temp.GetLength());
		temp.Empty();
		temp="	數據內容:";
		fp.Write(temp,temp.GetLength());
		temp.Empty();
		fp.Write(strdata,strdata.GetLength());
		temp.Format("	數據長度:%d字節。",strdata.GetLength());
		fp.Write(temp,temp.GetLength());
		temp.Empty();
		fp.Write("\r\n",2);
	}
	else
	{
		CTime tt=CTime::GetCurrentTime();
		CString strtemp;
		strtemp.Format("%d年%d月%d日%d時%d分%d秒",tt.GetYear(),tt.GetMonth(),tt.GetDay(),tt.GetHour(),tt.GetMinute(),tt.GetSecond());
		try
		{
			this->m_db.Open("temp.mdb");
			if(flag=='S')
			{
				this->m_pRS->Open(AFX_DAO_USE_DEFAULT_TYPE,"select * from Send",NULL);
				this->m_pRS->AddNew();
				this->m_pRS->SetFieldValue("時間",strtemp.GetBuffer(0));
				this->m_pRS->SetFieldValue("數據",this->m_Send.GetBuffer(0));
				this->m_pRS->Update();
			}
			if(flag=='R')
			{
				this->m_pRS->Open(AFX_DAO_USE_DEFAULT_TYPE,"select * from Receive",NULL);
				this->m_pRS->AddNew();
				this->m_pRS->SetFieldValue("時間",strtemp.GetBuffer(0));
				this->m_pRS->SetFieldValue("數據",this->m_Receive.GetBuffer(0));
				this->m_pRS->Update();
			}
			this->m_pRS->Close();
		}
		catch(CDaoException *e)
		{
		//	DispDaoException(e);
			AfxMessageBox("不能打開數據庫!");
		}
		this->m_db.Close();
	}
}


void CMyDlg::OnButtonSave() 
{
	// TODO: Add your control notification handler code here
	if(this->m_Receive.IsEmpty())
		return;
	this->Save(this->m_Receive,'R');
	this->m_Receive.Empty();
	this->UpdateData(false);
}

void CMyDlg::OnButtonAbout() 
{
	// TODO: Add your control notification handler code here
	CAboutDlg dlg;
	dlg.DoModal();
}

BOOL CMyDlg::DestroyWindow() 
{
	// TODO: Add your specialized code here and/or call the base class
	delete this->m_pRS;
	return CDialog::DestroyWindow();
}

void CMyDlg::OnButtonOpenS() 
{
	// TODO: Add your control notification handler code here
	CString temp;
	this->GetDlgItemText(IDC_COMBO_SAVE,temp);
	if(temp.Compare("文本")==0)
	{
		::ShellExecute(NULL, "open","Send.txt", NULL, NULL, SW_SHOWNORMAL);
	}
	else
	{
		CDataSendDlg dlgs;
		dlgs.DoModal();
	}
}

void CMyDlg::OnButtonOpenR() 
{
	// TODO: Add your control notification handler code here
	CString temp;
	this->GetDlgItemText(IDC_COMBO_SAVE,temp);
	if(temp.Compare("文本")==0)
	{
		::ShellExecute(NULL, "open","Receive.txt", NULL, NULL, SW_SHOWNORMAL);
	}
	else
	{
		CDataReceiveDlg dlgr;
		dlgr.DoModal();
	}
}


void CMyDlg::OnOpenRadio() 
{
	// TODO: Add your control notification handler code here
//	int iSetRadio;
//	iSetRadio=GetCheckedRadioButton(IDC_OPEN_RADIO,IDC_CLOSE_RADIO);
//	if(!(iSetRadio==IDC_OPEN_RADIO))
	if(iSetRadio==FALSE)
	{
	CString args,temp;
	int com_num=1;
	this->GetDlgItemText(IDC_COMBO_COMNUM,temp);
	if(temp.Compare("COM2")==0)
		com_num=2;
	temp.Empty();
	this->GetDlgItemText(IDC_COMBO_RATE,temp);
	if(temp.Compare("1200")==0||temp.Compare("2400")==0||temp.Compare("9600")==0)
		args=temp;
	else
		args="9600";
	args+=",";
	temp.Empty();
	this->GetDlgItemText(IDC_COMBO_CHECK,temp);
	if(temp.Compare("無校驗")==0)
		args+="n,";
	if(temp.Compare("偶校驗")==0)
		args+="e,";
	if(temp.Compare("奇校驗")==0)
		args+="o,";
	temp.Empty();
	this->GetDlgItemText(IDC_COMBO_DATA,temp);
	if(temp.Compare("6")==0||temp.Compare("7")==0||temp.Compare("8")==0)
		args+=temp+",";
	else
		args+="8,";
	temp.Empty();
	this->GetDlgItemText(IDC_COMBO_STOP,temp);
	if(temp.Compare("1")==0||temp.Compare("2")==0)
		args+=temp;
	else
		args+="1";
	this->InitCOM(com_num,args);
	this->SetDlgItemText(IDC_EDIT_COMSTATE,"已打開");
	iSetRadio=TRUE;
	}
}

void CMyDlg::OnCloseRadio() 
{
	// TODO: Add your control notification handler code here
//	int iSetRadio;
//	iSetRadio=GetCheckedRadioButton(IDC_OPEN_RADIO,IDC_CLOSE_RADIO);
//	if(!(iSetRadio==IDC_CLOSE_RADIO))
	if(iSetRadio==TRUE)
	{
	this->m_Comm.SetPortOpen(false);
	this->SetDlgItemText(IDC_EDIT_COMSTATE,"已關閉");
	iSetRadio=FALSE;
	}
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品国产乱码久久久久久夜甘婷婷| 欧美撒尿777hd撒尿| 成人午夜激情影院| 欧美系列一区二区| 一区二区三区四区激情| 成+人+亚洲+综合天堂| 国产精品美女久久久久久久久| 青娱乐精品视频| 欧美精品日韩一区| 日韩va欧美va亚洲va久久| 91亚洲国产成人精品一区二三| 国产无人区一区二区三区| 国产成人午夜片在线观看高清观看| www国产精品av| 日韩在线观看一区二区| 欧美日本在线播放| 奇米色一区二区| 欧美一区二区视频网站| 久久精品国产一区二区三 | 欧美群妇大交群的观看方式| 国产精品―色哟哟| 91免费版pro下载短视频| 国产精品久久久久久久久快鸭| aaa国产一区| 夜夜精品浪潮av一区二区三区| 欧美日韩精品一区二区三区| 美女网站一区二区| 国产午夜精品美女毛片视频| eeuss鲁片一区二区三区在线观看| 精品国产亚洲在线| 国内久久婷婷综合| 中文字幕在线视频一区| 欧美视频日韩视频| 蜜臀av性久久久久av蜜臀妖精| 日韩欧美123| 99久久精品国产一区二区三区| 亚洲国产视频一区| 久久久久久电影| 成人激情av网| 狠狠色狠狠色综合系列| 亚洲精品国产精华液| 欧美精品一区二区三| 色拍拍在线精品视频8848| 亚洲小少妇裸体bbw| 精品国产乱码久久久久久浪潮| 成人亚洲精品久久久久软件| 久久激五月天综合精品| 亚洲精品国产第一综合99久久 | 91麻豆精品91久久久久同性| 看片网站欧美日韩| 亚洲老司机在线| 精品精品国产高清一毛片一天堂| 欧美亚洲高清一区| 国产精品一区一区| 亚洲一区二区三区三| 久久蜜桃av一区精品变态类天堂 | 国产精品午夜电影| 日韩精品一区二区三区swag| 色悠悠久久综合| 亚洲大片在线观看| 一本色道久久综合精品竹菊| 美女网站视频久久| 亚洲成va人在线观看| 一色桃子久久精品亚洲| 91黄色免费网站| 91蝌蚪国产九色| 国产福利电影一区二区三区| 狠狠色综合日日| 日韩一区精品字幕| 日韩一区有码在线| 国产精品久久久久影院| 2021久久国产精品不只是精品| 91麻豆精品国产91久久久久| 欧美综合久久久| 成人aa视频在线观看| 国产69精品久久久久777| 日本亚洲电影天堂| 日韩高清欧美激情| 亚洲一区精品在线| 亚洲免费资源在线播放| 亚洲欧美偷拍三级| 欧美激情综合网| 日本一区二区成人| 久久综合九色综合欧美就去吻| 欧美久久久久中文字幕| 欧美精品一级二级| 欧美日韩国产高清一区二区三区 | 久久久久久久网| 欧美一级久久久| 91精品国产综合久久精品图片| 67194成人在线观看| 欧美三级午夜理伦三级中视频| 国产精品一区久久久久| 国产乱子轮精品视频| 日韩激情中文字幕| 亚洲精品国产a| 亚洲人成网站在线| 亚洲综合激情网| 日韩一区精品视频| 喷白浆一区二区| 久久精品国产第一区二区三区| 韩国欧美一区二区| 国产毛片一区二区| 成人午夜视频网站| av电影在线不卡| 成人高清免费观看| 欧美日韩精品一二三区| 欧美一区二区免费视频| 久久久99精品久久| 国产精品福利电影一区二区三区四区 | 精品久久久久一区| 国产精品电影院| 亚洲一区二区三区四区不卡| 亚洲精品免费电影| 日韩精品电影一区亚洲| 久久国内精品自在自线400部| 国产91精品入口| 91福利在线导航| 久久在线免费观看| 亚洲精品视频一区| 男人的天堂亚洲一区| 99re8在线精品视频免费播放| 欧美中文一区二区三区| 2024国产精品| 一区二区三区日韩在线观看| 亚洲亚洲精品在线观看| 国产高清不卡二三区| 在线免费观看成人短视频| 久久只精品国产| 亚洲香蕉伊在人在线观| 蜜臀av亚洲一区中文字幕| caoporen国产精品视频| 7777精品伊人久久久大香线蕉 | 欧美电影一区二区| 久久久久久久综合| 日本大胆欧美人术艺术动态 | 国产一区二区三区在线观看免费 | 欧美激情在线一区二区三区| 亚洲第一狼人社区| 成人一区二区视频| 欧美精品一区二区三区在线| 亚洲欧美色综合| 亚洲视频一区二区在线观看| 久久成人av少妇免费| 一本色道综合亚洲| 国产精品美日韩| 精品综合久久久久久8888| 在线观看视频一区| 精品国产一二三| 亚洲精品欧美在线| 成人免费黄色在线| 26uuu欧美| 日本欧美一区二区在线观看| va亚洲va日韩不卡在线观看| 欧美一区二区性放荡片| 亚洲第一av色| 91小视频在线| 亚洲欧洲在线观看av| 国产精品一二三| 久久欧美一区二区| 午夜激情一区二区三区| 国产99久久久国产精品潘金 | 日韩一区在线播放| 不卡免费追剧大全电视剧网站| 日韩一区和二区| 麻豆国产欧美一区二区三区| 欧美日韩午夜精品| 亚洲三级小视频| 色又黄又爽网站www久久| 国产精品免费免费| 国产成人av网站| 久久久天堂av| www.亚洲国产| 成人欧美一区二区三区黑人麻豆| 91亚洲精品乱码久久久久久蜜桃| 国产精品日韩成人| 国产不卡免费视频| 国产日韩精品视频一区| 久久国产剧场电影| 欧美韩日一区二区三区| 国产999精品久久久久久| 国产精品盗摄一区二区三区| 成熟亚洲日本毛茸茸凸凹| 日韩毛片在线免费观看| 99久久婷婷国产综合精品| 国产精品萝li| 在线影视一区二区三区| ...xxx性欧美| 欧美群妇大交群中文字幕| 日本亚洲视频在线| 日本一区二区成人| 99精品在线免费| 五月天网站亚洲| 欧美精品tushy高清| 精品一区二区三区视频| 中文字幕av在线一区二区三区| 色94色欧美sute亚洲线路一久| 亚洲综合在线五月| 在线免费不卡电影| 国产一区二区不卡在线 |