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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? gprsdlg.cpp

?? gprs開發(fā)使用程序
?? CPP
字號:
/*!	\file		GPRSDlg.cpp
	\brief		應(yīng)用程序界面實現(xiàn)文件
	\author		陳華毅
	\version	1.0

	用戶通過這個窗口實現(xiàn)了與應(yīng)用程序的交互,通過這個界面控制和使用GPRS模塊。
	\defgroup	GPRSDLG_IMPLEMENT	CGPRSDlg類實現(xiàn)說明
*/
#include "stdafx.h"
#include "GPRS.h"
#include "GPRSDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
//@{Group: GPRSDLG_IMPLEMENT


CGPRSDlg::CGPRSDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CGPRSDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CGPRSDlg)
	m_strMsg = _T("");
	m_strNum = _T("");
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
	m_hRevThread = INVALID_HANDLE_VALUE;
	m_hRevThread = CreateThread(NULL,0,(unsigned long (__cdecl *)(void *))CommThread,this,0,&m_dwThreadID);

}

void CGPRSDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CGPRSDlg)
	DDX_Text(pDX, IDC_EDIT_MSG, m_strMsg);
	DDX_Text(pDX, IDC_EDIT_NUM, m_strNum);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CGPRSDlg, CDialog)
	//{{AFX_MSG_MAP(CGPRSDlg)
	ON_BN_CLICKED(IDC_BUTTON_BACK, OnButtonBack)
	ON_BN_CLICKED(IDC_BUTTON_CALL, OnButtonCall)
	ON_BN_CLICKED(IDC_BUTTON_SEND, OnButtonSend)
	ON_BN_CLICKED(IDC_BUTTON0, OnButton0)
	ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
	ON_BN_CLICKED(IDC_BUTTON10, OnButton10)
	ON_BN_CLICKED(IDC_BUTTON11, OnButton11)
	ON_BN_CLICKED(IDC_BUTTON21, OnButton21)
	ON_BN_CLICKED(IDC_BUTTON3, OnButton3)
	ON_BN_CLICKED(IDC_BUTTON4, OnButton4)
	ON_BN_CLICKED(IDC_BUTTON5, OnButton5)
	ON_BN_CLICKED(IDC_BUTTON6, OnButton6)
	ON_BN_CLICKED(IDC_BUTTON7, OnButton7)
	ON_BN_CLICKED(IDC_BUTTON8, OnButton8)
	ON_BN_CLICKED(IDC_BUTTON9, OnButton9)
	ON_EN_SETFOCUS(IDC_EDIT_MSG, OnSetfocusEditMsg)
	ON_WM_DESTROY()
	ON_BN_CLICKED(IDC_BUTTON_RESET, OnButtonReset)
	ON_BN_CLICKED(IDC_BUTTON_MSGBACK, OnButtonMsgback)
	ON_EN_SETFOCUS(IDC_EDIT_NUM, OnSetfocusEditNum)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CGPRSDlg message handlers

BOOL CGPRSDlg::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

	/* 隱藏“開始”欄 */
	HWND lpClassName;
	lpClassName = ::FindWindow(TEXT("HHTaskBar"), NULL);
	::ShowWindow(lpClassName, SW_HIDE);
	
	/* 把work area 設(shè)為整個屏幕 */
	INT screenx=GetSystemMetrics(SM_CXSCREEN);
	INT screeny=GetSystemMetrics(SM_CYSCREEN);

	CRect rcWorkArea;
	rcWorkArea.left = 0;
	rcWorkArea.right = screenx;
	rcWorkArea.top = 0;
	rcWorkArea.bottom = screeny;
	::SystemParametersInfo(SPI_SETWORKAREA, 0, &rcWorkArea, SPIF_SENDCHANGE);

	m_iFocus = EDIT_NUM_FOCUS;
	m_gprs.CallState = FALSE;

	if (m_gprs.GPRSInit())
	{
		AfxMessageBox(_T("IntitGPRS模塊失敗!請重新啟動程序!"));
	}

	SetDlgItemText(IDC_EDIT_MSG, _T("歡迎使用深圳市旋極歷通科技\r\nGPRS演示程序"));

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

#define NOTIFY(s)	OnNotify(-1, (LPARAM)(s))

afx_msg	LRESULT CGPRSDlg::OnNotify(WPARAM wParam, LPARAM lParam)
{
	CEdit *pOutput = (CEdit *)GetDlgItem(IDC_EDIT_STATE);	
	ASSERT(NULL != pOutput);

	if (0 > (INT)wParam)
	{
		pOutput->SetWindowText((LPCTSTR)lParam);
	}else{
		if (0 == wParam)
		{
			pOutput->ReplaceSel(_T("NULL\r\n"));
		}else{
			UCHAR *lpData = (UCHAR *)lParam;
			CString str, strTemp;
			str.Format(_T("%02X"), lpData[0]);
			for (WORD w = 1; w < wParam; w++)
			{
				strTemp.Format(_T(" %02X"), lpData[w]);
				str += strTemp;
			}
			str += _T("\r\n");

			pOutput->ReplaceSel((LPCTSTR)str);
		}
	}

	return 0;
}

void CGPRSDlg::OnButtonBack() 
{
	// TODO: Add your control notification handler code here
	CString strEdit;
	GetDlgItemText(IDC_EDIT_NUM, strEdit);
	strEdit = strEdit.Left(strEdit.GetLength() - 1);
	SetDlgItemText(IDC_EDIT_NUM, strEdit);
}

void CGPRSDlg::OnButtonCall() 
{
	// TODO: Add your control notification handler code here
	CEdit* pNumberWnd=(CEdit*)GetDlgItem(IDC_EDIT_NUM);
	ASSERT(NULL != pNumberWnd);

	CString strBtnCall;
	GetDlgItemText(IDC_BUTTON_CALL, strBtnCall);

	if (_T("撥號") == strBtnCall)
	{
		NOTIFY(_T("打電話!"));
		SetDlgItemText(IDC_BUTTON_CALL, _T("掛機"));
		UpdateData(TRUE);
		m_gprs.gprsCall(m_strNum);
		m_gprs.CallState = TRUE;
	}else{
		SetDlgItemText(IDC_BUTTON_CALL, _T("撥號"));
		m_gprs.gprsHang();
		NOTIFY(_T("通話結(jié)束!"));
		m_gprs.CallState = FALSE;
	}

//	m_gprs.m_serial.WriteComm((UCHAR*)"AT&F\r", 4);
}

//DEL void CGPRSDlg::OnButtonHang() 
//DEL {
//DEL 	// TODO: Add your control notification handler code here
//DEL 	m_gprs.gprsHang();
//DEL }

void CGPRSDlg::OnButtonSend() 
{
	// TODO: Add your control notification handler code here
	
	CEdit* pNumberWnd=(CEdit*)GetDlgItem(IDC_EDIT_NUM);
	ASSERT(NULL != pNumberWnd);
	CEdit* pContentWnd=(CEdit*)GetDlgItem(IDC_EDIT_MSG);
	ASSERT(NULL != pContentWnd);

	/* 檢查號碼 */
	UpdateData(TRUE);
	if(m_strNum.GetLength() < 11)
	{
		AfxMessageBox(_T("請輸入正確的號碼!"));
		pNumberWnd->SetFocus();
		pNumberWnd->SetSel(-1, 0);
		return;
	}

	/* 檢查短消息內(nèi)容是否空,或者超長 */
	if (m_strMsg.GetLength() < 1)
	{
		AfxMessageBox(_T("請輸入消息內(nèi)容!"));
		pContentWnd->SetFocus();
		pContentWnd->SetSel(-1, 0);
		return;
	}else if(m_strMsg.GetLength() > 70){		/* 我們決定全部用UCS2編碼,最大70個字符(半角/全角) */
		AfxMessageBox(_T("消息內(nèi)容太長,無法發(fā)送!"));
		pContentWnd->SetFocus();
		pContentWnd->SetSel(-1, 0);
		return;
	}else{}

	SuspendThread(m_hRevThread);		/* 暫停讀取線程 */
	EnterCriticalSection(&m_csSend);	/* 進入發(fā)送短消息關(guān)鍵代碼區(qū) */
	NOTIFY(_T("正在發(fā)送!"));
	if (m_gprs.gprsSendMessage(m_strNum, m_strMsg))		/* 發(fā)送短消息 */
	{
		NOTIFY(_T("發(fā)送成功!"));
	}else{
		NOTIFY(_T("發(fā)送失敗!"));
	}
	LeaveCriticalSection(&m_csSend);	/* 離開發(fā)送短消息關(guān)鍵代碼區(qū) */
	ResumeThread(m_hRevThread);			/* 恢復讀取線程 */
}

void CGPRSDlg::OnButton0() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("0"));	
}

void CGPRSDlg::OnButton1() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("1"));		 	
}

void CGPRSDlg::OnButton10() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("*"));
}

void CGPRSDlg::OnButton11() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("#"));
}

//DEL void CGPRSDlg::OnButton2() 
//DEL {
//DEL 	// TODO: Add your control notification handler code here
//DEL //	ShowText(CString("0"));
//DEL }

void CGPRSDlg::OnButton21() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("2"));
}

void CGPRSDlg::OnButton3() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("3"));
}

void CGPRSDlg::OnButton4() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("4"));
}

void CGPRSDlg::OnButton5() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("5"));
}

void CGPRSDlg::OnButton6() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("6"));
}

void CGPRSDlg::OnButton7() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("7"));
}

void CGPRSDlg::OnButton8() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("8"));
}

void CGPRSDlg::OnButton9() 
{
	// TODO: Add your control notification handler code here
	ShowText(CString("9"));
}

//DEL void CGPRSDlg::OnSetfocusEditCallnum() 
//DEL {
//DEL 	// TODO: Add your control notification handler code here
//DEL 	m_iFocus = EDIT_NUM_FOCUS;	
//DEL }

void CGPRSDlg::OnSetfocusEditMsg() 
{
	// TODO: Add your control notification handler code here
	m_iFocus = EDIT_MSG_FOCUS;	
}

//DEL void CGPRSDlg::OnSetfocusEditMsgnum() 
//DEL {
//DEL 	// TODO: Add your control notification handler code here
//DEL 	m_iFocus = EDIT_MSGNUM_FOCUS;	
//DEL }

VOID CGPRSDlg::ShowText(CString str)
{
	if (EDIT_NUM_FOCUS == m_iFocus)
	{
		CString strEdit;
		GetDlgItemText(IDC_EDIT_NUM, strEdit);
		strEdit += str;
		SetDlgItemText(IDC_EDIT_NUM, strEdit);
	}else{
		CString strEdit;
		GetDlgItemText(IDC_EDIT_MSG, strEdit);
		strEdit += str;
		SetDlgItemText(IDC_EDIT_MSG, strEdit);
	}
}

void CGPRSDlg::OnDestroy() 
{
	CDialog::OnDestroy();
	
	// TODO: Add your message handler code here

	/* 顯示“開始”欄 */
	HWND lpClassName;
	lpClassName = ::FindWindow(TEXT("HHTaskBar"), NULL);
	::ShowWindow(lpClassName, SW_SHOW);
}

VOID CGPRSDlg::CommThread(LPVOID pParam)
{
	CGPRSDlg* pDlg = (CGPRSDlg*)(pParam);
	CHAR ReadBuffer[512] = {0};
	DWORD dwCommModemStatus;
	DWORD dwBytesRead = 0;
	INT nLength = 0;
	CString msg;
	SetCommMask(pDlg->m_gprs.m_serial.m_hFile, EV_RXCHAR);

	while(INVALID_HANDLE_VALUE != pDlg->m_gprs.m_serial.m_hFile)
	{		
		WaitCommEvent(pDlg->m_gprs.m_serial.m_hFile, &dwCommModemStatus, NULL);
		SetCommMask(pDlg->m_gprs.m_serial.m_hFile, EV_RXCHAR);
		if (dwCommModemStatus & EV_RXCHAR)
		{
			Sleep(20);
			nLength = pDlg->m_gprs.m_serial.ReadComm((unsigned char *)ReadBuffer,512);	
			msg = CString(ReadBuffer);
	//		pDlg->ShowMsg(msg);
			
			if (strstr(ReadBuffer, "NO"))
			{
				pDlg->m_gprs.CallState = FALSE;
				pDlg->SetDlgItemText(IDC_BUTTON_CALL, _T("撥號"));
			}

			if (strstr(ReadBuffer, "RING"))
			{
				if (!pDlg->m_gprs.CallState)
				{
					pDlg->SetDlgItemText(IDC_EDIT_STATE, _T("有來電!"));
					if(AfxMessageBox(_T("有來電!按\"是\"接聽,按\"否\"拒接!"), MB_YESNO) == IDYES)
					{
						pDlg->m_gprs.m_serial.WriteComm((UCHAR*)"ata\r", 4);
						pDlg->SetDlgItemText(IDC_EDIT_STATE, _T("通話中!"));
						pDlg->SetDlgItemText(IDC_BUTTON_CALL, _T("掛機"));
						pDlg->m_gprs.CallState = TRUE;
						memset(&ReadBuffer, 0, sizeof(ReadBuffer));
					}else{
						pDlg->m_gprs.m_serial.WriteComm((UCHAR*)"ath\r", 4);
						pDlg->m_gprs.m_serial.ReadComm((unsigned char *)ReadBuffer,512);
						memset(&ReadBuffer, 0, sizeof(ReadBuffer));
						pDlg->SetDlgItemText(IDC_EDIT_STATE, _T("通話結(jié)束!"));
						pDlg->m_gprs.CallState = FALSE;
					}
				}
			
			}

			if ((strstr(ReadBuffer, "MTI:")) && (strstr(ReadBuffer, "SM")))
			{	
				pDlg->SetDlgItemText(IDC_EDIT_STATE, _T("有新短消息!"));
				if(AfxMessageBox(_T("有新短消息!按\"是\"讀取,按\"否\"返回!"), MB_YESNO) == IDYES)
				{
					/* 讀取新短消息存放序號 */
					CString Index = "";
					INT count = 0;
					for (INT i = 0; i < msg.GetLength(); i++)
					{
						if (',' == msg[i])
						{
							Index = msg.Mid(i + 1);
							break;
						}		
					}

					/* 按序號讀取短消息 */
					UCHAR sendbuf[256];
					CString cmd = "AT+CMGR=" + Index + "\r"; 

					for (INT i1 = 0; i1 < cmd.GetLength(); i1++)
					{
						sendbuf[i1] = cmd[i1]; 
					}

					pDlg->SetDlgItemText(IDC_EDIT_STATE, _T("讀取短消息!"));
					pDlg->m_gprs.m_serial.WriteComm(sendbuf, cmd.GetLength());	
					Sleep(1000);
					pDlg->m_gprs.m_serial.ReadComm((UCHAR *)ReadBuffer,512);

					/* 從ReadBuffer提取pdu串 */
					CHAR pdu[512] = {0};
					DWORD nLength = 0;
					pDlg->m_gprs.gprsGetPdu(ReadBuffer, pdu); 

					/* pdu串轉(zhuǎn)換成Unicode字符填充SmParam */
					SM_PARAM SmParam;
					memset(&SmParam, 0, sizeof(SM_PARAM));
					pDlg->m_gprs.gprsDecodePdu(pdu, &SmParam);
					CString strFrom = CString(SmParam.TPA);
					CString strTime = CString(SmParam.TP_SCTS);
					CString strContent = CString(SmParam.TP_UD);

					/* 格式化對方號碼輸出串 */
					CString From = "";
					From.Format(_T("%s%s"), _T("來自 :"), strFrom);

					/* 格式化短消息發(fā)送時間輸出串 */
					CString Time = "";
					Time.Format(_T("%s%s%s%s%s%s%s%s%s%s%s%s%s"), _T("時間 :"), _T("20"),
						strTime.Left(2), _T("-"), strTime.Mid(2,2), _T("-"), strTime.Mid(4,2),
						_T(" "), strTime.Mid(6,2), _T(":"), strTime.Mid(8,2), _T(":"), strTime.Mid(10,2));

					/* 格式化短消息內(nèi)容輸出串 */
					CString Content = "";
					Content.Format(_T("%s%s"), _T("內(nèi)容 :"), strContent);

					/* 輸出格式化的短消息 */
					CString Msg = "";
					Msg.Format(_T("%s%s%s%s%s"), From, _T("\r\n"), Time, _T("\r\n"), Content);
					pDlg->ShowMsg(Msg);
					pDlg->SetDlgItemText(IDC_EDIT_STATE, _T("讀取短消息成功!"));
					Sleep(500);			
				}else{
					pDlg->m_gprs.m_serial.ReadComm((UCHAR *)ReadBuffer,512);
					memset(&ReadBuffer, 0, sizeof(ReadBuffer));
					pDlg->SetDlgItemText(IDC_EDIT_STATE, _T("有新短消息末讀!"));
				}
			}
		}	
	}
}

VOID CGPRSDlg::ShowMsg(CString str)
{
	CEdit *pOutput = (CEdit *)GetDlgItem(IDC_EDIT_MSG);
	pOutput->SetWindowText(str);
}

void CGPRSDlg::OnButtonReset() 
{
	// TODO: Add your control notification handler code here
	SetDlgItemText(IDC_EDIT_MSG, _T(""));
}

void CGPRSDlg::OnButtonMsgback() 
{
	// TODO: Add your control notification handler code here
	CString strEdit;
	GetDlgItemText(IDC_EDIT_MSG, strEdit);
	strEdit = strEdit.Left(strEdit.GetLength() - 1);
	SetDlgItemText(IDC_EDIT_MSG, strEdit);
}

void CGPRSDlg::OnSetfocusEditNum() 
{
	// TODO: Add your control notification handler code here
	m_iFocus = EDIT_NUM_FOCUS;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一区永久视频免费观看| 亚洲午夜激情网站| 精品国产一区二区三区不卡| 欧美高清视频www夜色资源网| 在线一区二区三区四区| 91色视频在线| 在线视频国产一区| 欧美中文字幕一区| 欧美日韩一级二级| 正在播放一区二区| 精品免费日韩av| 久久久久青草大香线综合精品| 久久综合精品国产一区二区三区| 日韩精品一区二区三区swag | 欧美精品乱人伦久久久久久| 欧美私模裸体表演在线观看| 欧美日韩免费高清一区色橹橹| 欧美日韩国产在线观看| 欧美一区二区三区电影| 久久久久久久一区| 中文字幕亚洲区| 亚洲国产精品一区二区久久恐怖片 | 日韩区在线观看| 精品成a人在线观看| 国产欧美一区二区三区网站 | 成人福利视频网站| 91污在线观看| 欧美日韩亚洲综合在线 欧美亚洲特黄一级 | 99综合电影在线视频| 在线这里只有精品| 日韩一区二区三区电影| 国产人伦精品一区二区| 亚洲精品欧美二区三区中文字幕| 午夜欧美视频在线观看| 国内偷窥港台综合视频在线播放| 本田岬高潮一区二区三区| 欧美亚洲国产怡红院影院| 91精品国产综合久久久蜜臀粉嫩 | 中文字幕字幕中文在线中不卡视频| 亚洲男人电影天堂| 免费观看日韩电影| caoporn国产精品| 欧美猛男男办公室激情| 久久久高清一区二区三区| 一区二区三区中文字幕在线观看| 日韩福利电影在线| 成人av在线播放网站| 欧美日韩一区在线观看| 中文字幕免费不卡| 日本不卡一二三| 99re亚洲国产精品| 欧美va亚洲va香蕉在线| 亚洲免费观看高清完整版在线| 日精品一区二区三区| 丁香天五香天堂综合| 欧美视频一区二区三区在线观看| 久久久99免费| 五月天激情综合网| 成人av在线观| 精品国产一区二区三区久久久蜜月| 玉米视频成人免费看| 国产资源在线一区| 91精品国产综合久久久久久久| 中文字幕一区二区三区在线不卡| 蜜臀久久久久久久| 色综合咪咪久久| 亚洲国产精品ⅴa在线观看| 日韩精品成人一区二区三区| 91热门视频在线观看| 国产亚洲欧洲997久久综合| 日韩黄色小视频| 在线观看免费一区| 亚洲视频一区二区在线| 粉嫩欧美一区二区三区高清影视 | 亚洲综合偷拍欧美一区色| 国产精品18久久久久久久网站| 8x8x8国产精品| 一级女性全黄久久生活片免费| 高清不卡一区二区| 亚洲精品一区二区三区四区高清| 亚洲.国产.中文慕字在线| www.亚洲精品| 中文在线一区二区| 国产麻豆精品久久一二三| 欧美一级片在线看| 天天亚洲美女在线视频| 欧美日韩一卡二卡三卡| 一区二区三区四区五区视频在线观看| 国产精品一卡二卡在线观看| 欧美一区日本一区韩国一区| 亚洲国产另类精品专区| 欧美三级电影网站| 亚洲成av人片在线观看| 在线观看91精品国产入口| 亚洲男人的天堂av| 91片在线免费观看| 亚洲美女一区二区三区| 91极品视觉盛宴| 亚洲自拍偷拍网站| 欧美性色黄大片手机版| 亚洲成人高清在线| 在线不卡一区二区| 热久久一区二区| 精品区一区二区| 国精产品一区一区三区mba视频 | 日韩精品资源二区在线| 免费成人美女在线观看| 精品伦理精品一区| 麻豆精品一区二区| 久久伊99综合婷婷久久伊| 国产一区二区三区免费| 国产婷婷精品av在线| 国产成人av一区| 中文字幕一区二区5566日韩| 91日韩在线专区| 亚洲国产精品影院| 日韩一区二区三| 久久成人麻豆午夜电影| 久久美女艺术照精彩视频福利播放| 国产成人av一区| 一区二区在线看| 欧美日韩精品一区二区天天拍小说| 午夜免费久久看| 26uuu成人网一区二区三区| 福利电影一区二区三区| 亚洲天堂免费看| 欧美日韩不卡一区二区| 黑人精品欧美一区二区蜜桃| 国产精品美女一区二区三区 | 精品人在线二区三区| 国产成人免费视频一区| 一区二区三区四区不卡在线| 337p亚洲精品色噜噜| 国产乱淫av一区二区三区| 国产精品久久久久久久久搜平片 | 日韩视频一区二区| 春色校园综合激情亚洲| 亚洲网友自拍偷拍| 精品国产一区二区三区久久影院| 丁香桃色午夜亚洲一区二区三区| 又紧又大又爽精品一区二区| 日韩午夜激情电影| 成人高清视频在线观看| 日日摸夜夜添夜夜添精品视频 | 免费高清在线一区| 亚洲图片另类小说| 91精品国产福利| 成人免费观看av| 五月天中文字幕一区二区| 国产性天天综合网| 欧美日韩欧美一区二区| 国产成人免费在线观看不卡| 亚洲成人av福利| 中文字幕在线视频一区| 欧美一级理论性理论a| www.亚洲人| 国产原创一区二区三区| 午夜a成v人精品| 中文字幕一区二区三区四区不卡| 日韩视频免费直播| 欧美性色欧美a在线播放| 国产成人综合精品三级| 日本不卡的三区四区五区| √…a在线天堂一区| 久久亚洲欧美国产精品乐播| 欧美日韩三级在线| 99久久综合国产精品| 激情丁香综合五月| 日韩精品久久久久久| 亚洲女同一区二区| 国产精品青草久久| 精品国产1区2区3区| 欧美三级电影在线观看| 91色综合久久久久婷婷| 国产91丝袜在线观看| 日本在线观看不卡视频| 一区二区三区高清| 国产精品家庭影院| 久久美女高清视频| 精品国产亚洲在线| 日韩亚洲欧美在线观看| 欧美日韩aaaaa| 在线观看免费一区| 色综合视频一区二区三区高清| 成人手机电影网| 国产麻豆精品视频| 极品尤物av久久免费看| 日韩精品亚洲一区| 亚洲va国产va欧美va观看| 亚洲精品高清在线| 亚洲视频在线一区| 亚洲欧美日本在线| 中文字幕色av一区二区三区| 国产日韩精品视频一区| 国产亚洲欧美在线| 久久亚洲一区二区三区明星换脸 | 美脚の诱脚舐め脚责91| 日韩电影一区二区三区四区| 婷婷成人综合网| 日本不卡一二三区黄网|