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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? cehuangyiview.cpp

?? 一個(gè)畢業(yè)設(shè)計(jì)。用vc編寫(xiě)的一個(gè)簡(jiǎn)易測(cè)謊儀后臺(tái)軟件。用控件實(shí)現(xiàn)access數(shù)據(jù)庫(kù)的鏈接
?? CPP
字號(hào):
// cehuangyiView.cpp : implementation of the CCehuangyiView class
//

#include "stdafx.h"
#include "cehuangyi.h"

#include "cehuangyiSet.h"
#include "cehuangyiDoc.h"
#include "cehuangyiView.h"
#include "test.h"
#include "wenti.h"
#include "wentiset.h"
#include "people.h"

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

/////////////////////////////////////////////////////////////////////////////
// CCehuangyiView

IMPLEMENT_DYNCREATE(CCehuangyiView, CRecordView)

BEGIN_MESSAGE_MAP(CCehuangyiView, CRecordView)
	//{{AFX_MSG_MAP(CCehuangyiView)
	ON_BN_CLICKED(IDC_START, OnStart)
	ON_BN_CLICKED(IDC_STOP, OnStop)
	ON_WM_TIMER()
	ON_BN_CLICKED(IDC_PEOPLE, OnPeople)
	ON_BN_CLICKED(IDC_QUESTION, OnQuestion)
	//}}AFX_MSG_MAP
	// Standard printing commands
	ON_COMMAND(ID_FILE_PRINT, CRecordView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_DIRECT, CRecordView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_PREVIEW, CRecordView::OnFilePrintPreview)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCehuangyiView construction/destruction

CCehuangyiView::CCehuangyiView()
	: CRecordView(CCehuangyiView::IDD)
{
	//{{AFX_DATA_INIT(CCehuangyiView)
	m_pSet = NULL;
	m_survey = NULL;
	m_name = _T("");
	m_wenti = _T("");
	m_wentiid = _T("");
	m_nanswer = -1;
	//}}AFX_DATA_INIT
	// TODO: add construction code here

}

CCehuangyiView::~CCehuangyiView()
{
}

void CCehuangyiView::DoDataExchange(CDataExchange* pDX)
{
	CRecordView::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CCehuangyiView)
	DDX_Text(pDX, IDC_NAME, m_name);
	DDX_Text(pDX, IDC_WENTI, m_wenti);
	DDX_Text(pDX, IDC_WENTIID, m_wentiid);
	DDX_Radio(pDX, IDC_YES, m_nanswer);
	//}}AFX_DATA_MAP
}

BOOL CCehuangyiView::PreCreateWindow(CREATESTRUCT& cs)
{
	// TODO: Modify the Window class or styles here by modifying
	//  the CREATESTRUCT cs

	return CRecordView::PreCreateWindow(cs);
}

void CCehuangyiView::OnInitialUpdate()
{
	m_pSet = &GetDocument()->m_cehuangyiSet;
	m_survey = &GetDocument()->m_surveyset;
	CRecordView::OnInitialUpdate();
	GetParentFrame()->RecalcLayout();
	ResizeParentToFit();
	m_survey->Open();

}

/////////////////////////////////////////////////////////////////////////////
// CCehuangyiView printing

BOOL CCehuangyiView::OnPreparePrinting(CPrintInfo* pInfo)
{
	// default preparation
	return DoPreparePrinting(pInfo);
}

void CCehuangyiView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add extra initialization before printing
}

void CCehuangyiView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add cleanup after printing
}

/////////////////////////////////////////////////////////////////////////////
// CCehuangyiView diagnostics

#ifdef _DEBUG
void CCehuangyiView::AssertValid() const
{
	CRecordView::AssertValid();
}

void CCehuangyiView::Dump(CDumpContext& dc) const
{
	CRecordView::Dump(dc);
}

CCehuangyiDoc* CCehuangyiView::GetDocument() // non-debug version is inline
{
	ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CCehuangyiDoc)));
	return (CCehuangyiDoc*)m_pDocument;
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CCehuangyiView database support
CRecordset* CCehuangyiView::OnGetRecordset()
{
	return m_pSet;
	return m_survey;
}


/////////////////////////////////////////////////////////////////////////////
// CCehuangyiView message handlers



void CCehuangyiView::OnStart() 
{
	// TODO: Add your control notification handler code here
	if (bfirst){
		DCB dcb;
	 
        hcom=CreateFile("COM2",GENERIC_READ|GENERIC_WRITE,0,NULL,OPEN_EXISTING,0,NULL);// OPEN COM
	    if (hcom==(HANDLE)-1)
		{
			MessageBox("com error");
	   
		}
		BuildCommDCB("COM2",&dcb);//配置串口
		SetCommState(hcom,&dcb);

		COMMTIMEOUTS CommTimeOuts;
		CommTimeOuts.ReadIntervalTimeout = 0xFFFFFFFF;
		CommTimeOuts.ReadTotalTimeoutMultiplier = 0;
		CommTimeOuts.ReadTotalTimeoutConstant = 0;
		CommTimeOuts.WriteTotalTimeoutMultiplier = 0;
		CommTimeOuts.WriteTotalTimeoutConstant = 5000;
		SetCommTimeouts( hcom, &CommTimeOuts );

		char szMessage[2] ;
	    unsigned char lpBuffer[10]  ;
	
		szMessage[0]=0x55;
		szMessage[1]=0xaa;
		DWORD dwBytesWritten;
		int i;
		for (i=0;i<2;i++){
	          WriteFile(hcom,szMessage,1,&dwBytesWritten,NULL);
		}
		DWORD dwBytesRead;
	    ReadFile(hcom,lpBuffer,6,&dwBytesRead,NULL);
	}

	number=0;
	SetTimer(1,500,NULL);

	
	draw();
}

void CCehuangyiView::OnStop() 
{
	// TODO: Add your control notification handler code here
	UpdateData();
	bfirst=false;
	CString strans;
	strans="Yes";
	GetDlgItem(IDC_YES+m_nanswer)->GetWindowText(strans);
	KillTimer(1);
	if (!m_pSet->IsEOF())
		m_pSet->MoveLast();
    UpdateData(false);
	if (m_survey->CanAppend()){
		m_survey->AddNew();
		m_survey->m_column1=m_name;
		m_survey->m_column2=m_wentiid;
		m_survey->m_column3=strans;
		m_survey->m_pzs=m_pSet->m___ID-number+1;
		m_survey->m_pze=m_pSet->m___ID;
		m_survey->m_hxe=m_pSet->m___ID;
		m_survey->m_xte=m_pSet->m___ID;
		m_survey->m_hxs=m_pSet->m___ID-number+1;
		m_survey->m_xts=m_pSet->m___ID-number+1;
	    
		if (m_survey->CanUpdate())
			m_survey->Update();
	    if (!m_survey->IsEOF())
			m_survey->MoveLast();
	    m_survey->Requery();
	    UpdateData(FALSE);
	}
	m_survey->Edit();
	UpdateData(false);
	if (m_survey->CanUpdate())//確定記錄是否允許更新
		m_survey->Update();
	for (int w=0;w<160;w++){
		px[w]=py[w]=pyh[w]=pyx[w]=0;
		pt[w]=ph[w]=ppx[w]=CPoint(px[w],py[w]);
	}
	
	for (int sy=0;sy<4;sy++){
		lin[sy]=CPoint(0,0);
	}


}

void CCehuangyiView::OnTimer(UINT nIDEvent) 
{
	// TODO: Add your message handler code here and/or call default
	draw();
	char szg[1];
	szg[0]=0x00;
	unsigned char read[6];
	for (int i=0;i<6;i++)
	{
		read[i]=0;
	}
    DWORD dwBytesWritten;
    WriteFile(hcom,szg,1,&dwBytesWritten,NULL);
	DWORD dwBytesRead;
    ReadFile(hcom,read,6,&dwBytesRead,NULL);
	int k=((int)read[4]+(int)(0x0f&read[5])*256);
	pz=4096-((int)read[0]+(int)(0x0f&read[1])*256);
	xt= 4096-k;
	hx = ((int)read[2]+(int)(0x0f&read[3])*256+k/5-500);
	

	UpdateData(true);
	if (m_pSet->CanAppend()){
		m_pSet->AddNew();
	    m_pSet->m_hx=hx;
		m_pSet->m_pz=pz;
        m_pSet->m_xt=xt;

		if (m_pSet->CanUpdate())
			m_pSet->Update();
		if (!m_pSet->IsEOF())
			m_pSet->MoveLast();
	    m_pSet->Requery();
	    UpdateData(false);
	}
	m_pSet->Edit();
	UpdateData(true);
	if (m_pSet->CanUpdate())//確定記錄是否允許更新
		m_pSet->Update();

	CClientDC dc(this);
	OnPrepareDC(&dc);
	
	CPen wPen;
	CPen *lpen;
	LOGPEN testPen;
	POINT Width={1}; //The POINT structure defines the x- and y- coordinates of a point. 

	testPen.lopnStyle =PS_SOLID;
	testPen.lopnWidth =Width;
	testPen.lopnColor =RGB(255,0,0);
	
	wPen.CreatePenIndirect (&testPen); //Initializes a pen that has the style, width, and color given in the structure pointed to by lpLogPen. 
    lpen=dc.SelectObject(&wPen);
    
	int num;
	int num1;
	int num2;

	if (number>150){
		num=150;
	    num1=150;
		num2=150;
		px[0]=3;
		for (int l=0;l<150;l++)
		{
			px[l+1]=px[l]+5;
			py[l]=py[l+1];
			pyh[l]=pyh[l+1];
			pyx[l]=pyx[l+1];
		}
		py[150]=(int)(pz*120/4096)+3;
		pyh[150]=(int)((hx+500)*120/5000)+124;
		pyx[150]=(int)(xt*120/4096)+2435;
		for (int m=0;m<151;m++)
		{
			pt[m]=CPoint(px[m],py[m]);
			ph[m]=CPoint(px[m],pyh[m]);
			ppx[m]=CPoint(px[m],pyx[m]);
		}
	}else{
		num=number;
		num1=number;
		num2=number;
		px[num]=753;
		py[num]=(int)(pz*120/4096)+3;
		pyh[num]=(int)((hx+500)*120/5000)+124;
		pyx[num]=(int)(xt*120/4096)+245;
		for (num ;num>0;num--){
			px[num-1]=px[num-1]-5;
		}
        for (int n=0;n<=num1;n++)
		{
			pt[n]=CPoint(px[n],py[n]);
			ph[n]=CPoint(px[n],pyh[n]);
			ppx[n]=CPoint(px[n],pyx[n]);
		}
	}
	int yu=(num1+1)%2;
    if (num1<5){
		dc.Polyline(pt,num1+1);
		dc.Polyline(ph,num1+1);
		dc.Polyline(ppx,num1+1);
	}else if (num1==5){
			dc.PolyBezier(pt,4);
			dc.PolyBezier(ph,4);
			dc.PolyBezier(ppx,4);
	}else{
		switch (yu){
		case 0:{
			int a=(num2-3)/2-1;
			for (int g=0;g<=a;g++){
				if (g==0){
					p[g][0]=pt[2*g];
					p[g][1]=pt[2*g+1];
					p[g][2]=pt[2*g+2];
					h[g][0]=ph[2*g];
					h[g][1]=ph[2*g+1];
					h[g][2]=ph[2*g+2];
					x[g][0]=ppx[2*g];
					x[g][1]=ppx[2*g+1];
					x[g][2]=ppx[2*g+2];
				}else if (g==a){
					p[g][1]=pt[2*g+1];
					p[g][2]=pt[2*g+2];
					p[g][3]=pt[2*g+3];
					h[g][1]=ph[2*g+1];
					h[g][2]=ph[2*g+2];
					h[g][3]=ph[2*g+3];
					x[g][1]=ppx[2*g+1];
					x[g][2]=ppx[2*g+2];
					x[g][3]=ppx[2*g+3];
				}else{
					p[g][1]=pt[2*g+1];
					p[g][2]=pt[2*g+2];
					h[g][1]=ph[2*g+1];
					h[g][2]=ph[2*g+2];
					x[g][1]=ppx[2*g+1];
					x[g][2]=ppx[2*g+2];
				}
			}
			for (int j=0;j<a;j++){
				p[j][3]=p[j+1][0]=CPoint((int)((px[2*j+2]+px[2*j+3])/2),(int)((py[2*j+2]+py[2*j+3])/2));
				h[j][3]=h[j+1][0]=CPoint((int)((px[2*j+2]+px[2*j+3])/2),(int)((pyh[2*j+2]+pyh[2*j+3])/2));
				x[j][3]=x[j+1][0]=CPoint((int)((px[2*j+2]+px[2*j+3])/2),(int)((pyx[2*j+2]+pyx[2*j+3])/2));
			}

			for (int c=0;c<=a;c++){
				for (int t=0;t<4;t++){
					lin[t]=p[c][t];
					lhx[t]=h[c][t];
					lxt[t]=x[c][t];
				}
				dc.PolyBezier(lin,4);
				dc.PolyBezier(lhx,4);
				dc.PolyBezier(lxt,4);
			}

			break;
			   }
		case 1:{
			int a=(num2-2)/2-1;
		    
			for (int i=0;i<=a;i++){
				if (i==0){
					p[i][0]=pt[2*i];
					p[i][1]=pt[2*i+1];
					p[i][2]=pt[2*i+2];
					h[i][0]=ph[2*i];
					h[i][1]=ph[2*i+1];
					h[i][2]=ph[2*i+2];
					x[i][0]=ppx[2*i];
					x[i][1]=ppx[2*i+1];
					x[i][2]=ppx[2*i+2];
				}else if (i==a){
					p[i][1]=pt[2*i+1];
					p[i][2]=CPoint((int)((px[2*i+1]+px[2*i+3])/2),(int)((py[2*i+1]+py[2*i+3])/2));
					p[i][3]=pt[2*i+3];
					h[i][1]=ph[2*i+1];
					h[i][2]=CPoint((int)((px[2*i+1]+px[2*i+3])/2),(int)((pyh[2*i+1]+pyh[2*i+3])/2));
					h[i][3]=ph[2*i+3];
					x[i][1]=ppx[2*i+1];
					x[i][2]=CPoint((int)((px[2*i+1]+px[2*i+3])/2),(int)((pyx[2*i+1]+pyx[2*i+3])/2));
					x[i][3]=ppx[2*i+3];
				}else{
					p[i][1]=pt[2*i+1];
					p[i][2]=pt[2*i+2];
					h[i][1]=ph[2*i+1];
					h[i][2]=ph[2*i+2];
					x[i][1]=ppx[2*i+1];
					x[i][2]=ppx[2*i+2];
				}
			}
			for (int d=0;d<a;d++){
				p[d][3]=p[d+1][0]=CPoint((int)((px[2*d+2]+px[2*d+3])/2),(int)((py[2*d+2]+py[2*d+3])/2));
				h[d][3]=h[d+1][0]=CPoint((int)((px[2*d+2]+px[2*d+3])/2),(int)((pyh[2*d+2]+pyh[2*d+3])/2));
				x[d][3]=x[d+1][0]=CPoint((int)((px[2*d+2]+px[2*d+3])/2),(int)((pyx[2*d+2]+pyx[2*d+3])/2));
			}

			
			for (int k=0;k<=a;k++){
				for (int o=0;o<4;o++){
					lin[o]=p[k][o];
					lhx[o]=h[k][o];
					lxt[o]=x[k][o];
				}
				dc.PolyBezier(lin,4);
				dc.PolyBezier(lhx,4);
				dc.PolyBezier(lxt,4);
			}

			break;
			   }
		}
	}
    number++;
	CRecordView::OnTimer(nIDEvent);
}

void CCehuangyiView::draw()
{
    CClientDC dc(this);
	OnPrepareDC(&dc);
	CBrush SolidBrush(RGB(255,255,255)); // choose the blue brush
	dc.SelectObject(&SolidBrush);
	dc.Rectangle (3,3 ,753,365);// draw a blue rectangle
	CPen wPen;
	CPen *lpen;
	LOGPEN testPen;
	POINT Width={2,1}; //The POINT structure defines the x- and y- coordinates of a point. 

 	testPen.lopnStyle =PS_DASH;
	testPen.lopnWidth =Width;
	testPen.lopnColor =RGB(0,0,0);
	
	wPen.CreatePenIndirect (&testPen); //Initializes a pen that has the style, width, and color given in the structure pointed to by lpLogPen. 
    lpen=dc.SelectObject(&wPen);
	dc.MoveTo(1,1); 
	dc.LineTo(1 ,367);
    dc.LineTo(755,367);
    dc.LineTo(755,1);
    dc.LineTo(1 ,1);
	dc.MoveTo(3,124);
	dc.LineTo(753,124);
	dc.MoveTo(3,245);
	dc.LineTo(753,245);

}

void CCehuangyiView::OnPeople() 
{
	// TODO: Add your control notification handler code here
	CPeople people;
	if (people.DoModal()==IDOK)
	{
		this->m_name =  people.m_people;
		this->UpdateData(false);
	}
}

void CCehuangyiView::OnDraw(CDC* pDC) 
{
	// TODO: Add your specialized code here and/or call the base class
	draw();
    bfirst=true;
}

void CCehuangyiView::OnQuestion() 
{
	// TODO: Add your control notification handler code here
	CWenti wenti;

	if (wenti.DoModal()==IDOK)
	{
		this->m_wentiid =  wenti.m_id;
		this->m_wenti	=	wenti.m_wenti;
		this->UpdateData(false);
	}
}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
青草av.久久免费一区| 久久美女艺术照精彩视频福利播放 | 久久精品男人的天堂| 美日韩一区二区三区| 欧美一区二区三区色| 亚洲一区二三区| 91.com在线观看| 蜜桃视频在线观看一区| 26uuu国产日韩综合| 国产传媒久久文化传媒| 国产精品乱人伦| 91极品视觉盛宴| 五月天欧美精品| 精品国产自在久精品国产| 国产一区二区三区香蕉| 国产精品久线观看视频| 91成人免费在线视频| 日韩不卡一区二区| 2024国产精品视频| 色先锋aa成人| 免费的成人av| 国产精品国产三级国产aⅴ原创| 日韩理论电影院| 欧美精品 国产精品| 国产自产2019最新不卡| 久久er99热精品一区二区| 日韩精品一区二| av电影在线观看一区| 丝袜美腿亚洲综合| 国产欧美日韩亚州综合| 色综合夜色一区| 美女脱光内衣内裤视频久久网站| 在线视频一区二区免费| 久久国产精品免费| 一区二区三区四区av| 日韩欧美综合在线| 日本伦理一区二区| 国产在线播精品第三| 亚洲午夜国产一区99re久久| 久久久久久黄色| 欧美精品一二三| 东方aⅴ免费观看久久av| 午夜久久久久久久久| 国产精品成人午夜| 精品久久五月天| 欧美日本韩国一区| 不卡大黄网站免费看| 久久99久久久久| 亚洲午夜免费视频| 亚洲欧洲精品天堂一级| 亚洲精品一线二线三线| 欧美精品成人一区二区三区四区| 奇米四色…亚洲| ㊣最新国产の精品bt伙计久久| 成人av免费观看| 精品制服美女丁香| 伊人夜夜躁av伊人久久| 国产欧美视频一区二区三区| 日韩色在线观看| 欧美日韩久久久一区| 色综合久久久久久久| 成人三级在线视频| 国产精品1区2区3区| 另类小说欧美激情| 日韩电影免费在线| 亚洲一区二区黄色| 玉米视频成人免费看| 日韩美女视频19| 国产精品国产精品国产专区不片| 色av成人天堂桃色av| 国产成人午夜精品影院观看视频| 1024成人网| 国产免费成人在线视频| 精品电影一区二区三区| 日韩美女一区二区三区四区| 91精品黄色片免费大全| 欧美日韩国产首页在线观看| 欧美午夜电影一区| 欧美视频在线播放| 在线观看不卡一区| 欧美视频一区二区| 欧美乱熟臀69xxxxxx| 欧美日韩亚洲综合| 91麻豆精品国产91久久久更新时间| 国产乱子伦一区二区三区国色天香 | 欧美日韩一级二级| 精品视频免费在线| 欧美片在线播放| 欧美一区二区高清| 日韩女优av电影在线观看| wwwwxxxxx欧美| 欧美激情一区二区三区全黄| 国产精品精品国产色婷婷| 中文字幕在线观看一区| 亚洲激情成人在线| 午夜不卡在线视频| 久久99国内精品| 国产精品一二二区| 色综合中文字幕国产 | 麻豆精品久久精品色综合| 91在线视频免费观看| 不卡电影一区二区三区| 99re热这里只有精品免费视频| 五月天中文字幕一区二区| 奇米影视7777精品一区二区| 国产美女av一区二区三区| a在线播放不卡| 欧美日韩午夜在线视频| 日韩视频一区二区| 国产精品免费av| 亚洲一区二区三区四区不卡| 美女免费视频一区| 成人蜜臀av电影| 欧美日韩你懂的| 精品国产凹凸成av人网站| 中文字幕中文字幕一区| 亚洲在线视频网站| 久久99久久99| 99精品一区二区| 7777精品伊人久久久大香线蕉超级流畅| 99久久免费精品| 欧美精品一级二级三级| 国产日韩欧美高清在线| 一区二区三区在线视频观看| 蜜桃av一区二区在线观看| 成人av在线资源| 91精品国产综合久久婷婷香蕉 | 国产精品美女久久久久久久久久久 | 国产精品久久久久7777按摩| 天使萌一区二区三区免费观看| 亚洲激情av在线| 国产米奇在线777精品观看| 色狠狠桃花综合| 久久先锋影音av鲁色资源网| 一区二区三区四区在线播放| 国产精品系列在线观看| 欧美日韩国产精品成人| 国产精品精品国产色婷婷| 久久av资源站| 欧美三级三级三级| 成人欧美一区二区三区黑人麻豆 | 99在线精品免费| 欧美成人三级在线| 亚洲成人久久影院| 精品久久久影院| 一区二区三区久久久| 成人av中文字幕| 久久精品亚洲精品国产欧美kt∨| 国产视频一区二区在线| 日韩精品免费专区| 欧美亚洲综合色| 亚洲欧美在线另类| 丁香另类激情小说| 久久久五月婷婷| 久久99久久久久| 欧美一区二区美女| 日本伊人午夜精品| 欧美日韩中文一区| 亚洲高清视频在线| 91在线免费视频观看| 国产精品丝袜一区| 丁香啪啪综合成人亚洲小说| 久久嫩草精品久久久精品| 免费精品99久久国产综合精品| 国产suv一区二区三区88区| 欧美精品一区二区三区四区| 蜜臀精品久久久久久蜜臀 | 欧美日本乱大交xxxxx| 亚洲欧美日韩电影| 91视视频在线观看入口直接观看www| 欧美日韩免费高清一区色橹橹| 日韩精品中文字幕一区| 久久99国内精品| 日韩久久精品一区| 美女视频网站黄色亚洲| 精品理论电影在线| 国产精品一区二区无线| 欧美激情综合在线| www.在线成人| 亚洲精选免费视频| 欧美在线观看一二区| 香蕉加勒比综合久久| 日韩一区二区精品葵司在线| 精品在线一区二区三区| 国产视频一区二区在线观看| 成人av在线看| 亚洲永久免费视频| 欧美另类videos死尸| 久久av中文字幕片| 欧美国产激情一区二区三区蜜月 | 青青青伊人色综合久久| 欧美大片拔萝卜| 成人亚洲一区二区一| 亚洲精选在线视频| 欧美一区二区人人喊爽| 国产精品18久久久久| 亚洲人123区| 欧美一区二区美女| 粉嫩13p一区二区三区| 亚洲夂夂婷婷色拍ww47|