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

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

?? 串口通信dlg.cpp

?? 串口通信的東東 串口通信的東東 串口通信的
?? 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一区二区三区免费野_久草精品视频
日韩在线观看一区二区| 色综合天天综合网天天看片| 亚洲精品欧美综合四区| 色婷婷精品大在线视频| 国产99久久久国产精品潘金| 麻豆精品蜜桃视频网站| 午夜久久久久久久久久一区二区| 亚洲精品中文字幕乱码三区| 激情深爱一区二区| 九色porny丨国产精品| 经典一区二区三区| 欧美最猛黑人xxxxx猛交| 欧洲精品在线观看| 国产三级三级三级精品8ⅰ区| 99精品视频一区二区| 成人成人成人在线视频| 91老师片黄在线观看| 在线观看www91| 亚洲国产精品综合小说图片区| 亚洲人xxxx| 水蜜桃久久夜色精品一区的特点| 不卡一卡二卡三乱码免费网站| 欧美zozo另类异族| 国产色产综合产在线视频| 日产国产高清一区二区三区| 国产中文字幕精品| 精品国产自在久精品国产| 中文无字幕一区二区三区 | 亚洲欧美日韩国产手机在线| 国产精品一区在线观看乱码 | 午夜电影一区二区三区| 91影视在线播放| 国产精品进线69影院| 洋洋av久久久久久久一区| 老色鬼精品视频在线观看播放| 成人免费视频caoporn| 欧美日韩五月天| 精品噜噜噜噜久久久久久久久试看| 视频在线观看91| 制服丝袜中文字幕亚洲| 精品国产污污免费网站入口 | 精品999在线播放| 韩国午夜理伦三级不卡影院| 久久综合九色综合欧美98| 日韩一区日韩二区| 精品一区二区三区在线观看国产 | 91国产免费观看| 欧美一卡2卡3卡4卡| 国产精品久久久久一区| 99久久精品国产网站| 一区二区三区.www| 91精品蜜臀在线一区尤物| 日本sm残虐另类| 欧美在线你懂得| 视频一区视频二区中文| 欧美刺激午夜性久久久久久久| 久久电影网电视剧免费观看| 中文字幕欧美日本乱码一线二线| 99久久免费视频.com| 不卡视频一二三| 亚洲第一综合色| 91婷婷韩国欧美一区二区| 亚洲第一二三四区| 久久综合狠狠综合久久综合88 | 精品伊人久久久久7777人| 亚洲国产精品传媒在线观看| 欧美网站一区二区| 亚洲激情校园春色| 日韩欧美国产1| 免费成人你懂的| 国产精品女同互慰在线看| 欧美日韩成人综合在线一区二区| 亚洲男人天堂一区| 日韩免费视频一区二区| 99r国产精品| 精品一区二区三区在线播放| 亚洲欧洲在线观看av| 日韩午夜在线影院| 日本亚洲一区二区| 自拍偷拍欧美激情| 色综合视频在线观看| 免费高清在线视频一区·| 亚洲色图在线看| 337p粉嫩大胆噜噜噜噜噜91av| a亚洲天堂av| 亚洲人成小说网站色在线 | 国产麻豆91精品| 精品国产百合女同互慰| 欧美三级资源在线| 丁香天五香天堂综合| 日韩不卡一区二区三区| 一区二区三区日韩精品视频| 久久久久成人黄色影片| 成人动漫视频在线| 国精产品一区一区三区mba视频 | 久久99久国产精品黄毛片色诱| 日本一区二区三区免费乱视频| 欧美日韩黄色影视| 在线观看一区不卡| 色综合天天视频在线观看| 国产aⅴ精品一区二区三区色成熟| 五月激情丁香一区二区三区| 亚洲另类春色校园小说| 国产精品免费丝袜| 国产色婷婷亚洲99精品小说| 精品国产露脸精彩对白| 日韩你懂的在线播放| 欧美浪妇xxxx高跟鞋交| 麻豆一区二区三区| 午夜成人在线视频| 亚洲在线成人精品| 欧美成人video| 7777精品伊人久久久大香线蕉经典版下载 | 国产亚洲欧洲一区高清在线观看| 制服丝袜亚洲网站| 日韩一卡二卡三卡国产欧美| 欧美日韩1区2区| 欧美日韩精品免费| 欧美日韩午夜在线| 91精品婷婷国产综合久久| 欧美高清性hdvideosex| 91精品国产高清一区二区三区蜜臀| 欧美三级三级三级| 欧美肥大bbwbbw高潮| 欧美精品第一页| 777亚洲妇女| 精品久久久久一区二区国产| 亚洲精品一区二区三区蜜桃下载| 精品免费日韩av| 国产亚洲福利社区一区| 老司机午夜精品99久久| 韩国一区二区三区| 成人性生交大片| 91麻豆福利精品推荐| 91久久久免费一区二区| 欧美日韩视频一区二区| 欧美一区在线视频| 国产欧美久久久精品影院| 亚洲色图制服丝袜| 日韩不卡一区二区三区| 国产成人三级在线观看| 亚洲一卡二卡三卡四卡| 午夜精品免费在线| 国产综合色产在线精品| 成人精品国产一区二区4080| 精品视频在线看| 精品福利一区二区三区免费视频| 久久久国产精品麻豆| 综合久久久久综合| 日本午夜一区二区| 国产精品自拍av| 色诱视频网站一区| 日韩欧美一二三区| 亚洲伦理在线精品| 日本不卡不码高清免费观看| 国产·精品毛片| 欧美一区二区三区电影| 亚洲国产精品av| 图片区小说区区亚洲影院| aaa亚洲精品| 在线免费观看成人短视频| 91久久免费观看| 欧美日韩国产首页| 欧美第一区第二区| 久久久精品tv| 国产精品五月天| 伊人夜夜躁av伊人久久| 亚洲一区二区三区中文字幕在线| 亚洲精品国产精华液| 亚洲风情在线资源站| 日本欧洲一区二区| 国产精品一级在线| 99久久久国产精品| 欧美日韩免费观看一区二区三区| 这里是久久伊人| 国产欧美日韩精品一区| 亚洲黄色片在线观看| 视频在线观看国产精品| 国产一区二区三区免费观看| 99在线热播精品免费| 欧美性大战久久| 欧美v亚洲v综合ⅴ国产v| 国产精品视频九色porn| 天堂一区二区在线| 国产一区不卡在线| 欧美色图在线观看| 2021中文字幕一区亚洲| 亚洲欧洲色图综合| 日本午夜精品一区二区三区电影| 国产成人av影院| 欧美系列在线观看| 久久久无码精品亚洲日韩按摩| 国产精品成人一区二区三区夜夜夜 | 成人丝袜18视频在线观看| 一本到三区不卡视频| 日韩一级黄色大片| 中文字幕综合网| 九色综合狠狠综合久久| 色成年激情久久综合| 日韩精品一区二区三区视频播放 |