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

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

?? elevatordlg.cpp

?? 常考設計題
?? CPP
字號:
// ElevatorDlg.cpp : implementation file
//

#include "stdafx.h"
#include "Elevator.h"
#include "ElevatorDlg.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()

/////////////////////////////////////////////////////////////////////////////
// CElevatorDlg dialog

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

void CElevatorDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CElevatorDlg)
	DDX_Control(pDX, IDC_UP_9, m_up_9);
	DDX_Control(pDX, IDC_UP_8, m_up_8);
	DDX_Control(pDX, IDC_UP_7, m_up_7);
	DDX_Control(pDX, IDC_UP_6, m_up_6);
	DDX_Control(pDX, IDC_UP_5, m_up_5);
	DDX_Control(pDX, IDC_UP_4, m_up_4);
	DDX_Control(pDX, IDC_UP_3, m_up_3);
	DDX_Control(pDX, IDC_UP_2, m_up_2);
	DDX_Control(pDX, IDC_UP_1, m_up_1);
	DDX_Control(pDX, IDC_DOWN_9, m_down_9);
	DDX_Control(pDX, IDC_DOWN_8, m_down_8);
	DDX_Control(pDX, IDC_DOWN_7, m_down_7);
	DDX_Control(pDX, IDC_DOWN_6, m_down_6);
	DDX_Control(pDX, IDC_DOWN_5, m_down_5);
	DDX_Control(pDX, IDC_DOWN_4, m_down_4);
	DDX_Control(pDX, IDC_DOWN_3, m_down_3);
	DDX_Control(pDX, IDC_DOWN_2, m_down_2);
	DDX_Control(pDX, IDC_GO, m_go);
	DDX_Control(pDX, IDC_DEST_9, m_dest_9);
	DDX_Control(pDX, IDC_DEST_8, m_dest_8);
	DDX_Control(pDX, IDC_DEST_7, m_dest_7);
	DDX_Control(pDX, IDC_DEST_6, m_dest_6);
	DDX_Control(pDX, IDC_DEST_5, m_dest_5);
	DDX_Control(pDX, IDC_DEST_4, m_dest_4);
	DDX_Control(pDX, IDC_DEST_3, m_dest_3);
	DDX_Control(pDX, IDC_DEST_2, m_dest_2);
	DDX_Control(pDX, IDC_DEST_1, m_dest_1);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CElevatorDlg, CDialog)
	//{{AFX_MSG_MAP(CElevatorDlg)
	ON_WM_SYSCOMMAND()
	ON_WM_PAINT()
	ON_WM_QUERYDRAGICON()
	ON_WM_CTLCOLOR()
	ON_BN_CLICKED(IDC_UP_1, OnPressUp_1)
	ON_BN_CLICKED(IDC_UP_2, OnPressUp_2)
	ON_BN_CLICKED(IDC_UP_3, OnPressUp_3)
	ON_BN_CLICKED(IDC_UP_4, OnPressUp_4)
	ON_BN_CLICKED(IDC_UP_5, OnPressUp_5)
	ON_BN_CLICKED(IDC_UP_6, OnPressUp_6)
	ON_BN_CLICKED(IDC_UP_7, OnPressUp_7)
	ON_BN_CLICKED(IDC_UP_8, OnPressUp_8)
	ON_BN_CLICKED(IDC_DEST_1, OnDest_1)
	ON_BN_CLICKED(IDC_DEST_2, OnDest_2)
	ON_BN_CLICKED(IDC_DEST_3, OnDest_3)
	ON_BN_CLICKED(IDC_DEST_4, OnDest_4)
	ON_BN_CLICKED(IDC_DEST_5, OnDest_5)
	ON_BN_CLICKED(IDC_DEST_6, OnDest_6)
	ON_BN_CLICKED(IDC_DEST_7, OnDest_7)
	ON_BN_CLICKED(IDC_DEST_8, OnDest_8)
	ON_BN_CLICKED(IDC_DEST_9, OnDest_9)
	ON_BN_CLICKED(IDC_DOWN_2, OnPressDown_2)
	ON_BN_CLICKED(IDC_DOWN_3, OnPressDown_3)
	ON_BN_CLICKED(IDC_DOWN_4, OnPressDown_4)
	ON_BN_CLICKED(IDC_DOWN_5, OnPressDown_5)
	ON_BN_CLICKED(IDC_DOWN_6, OnPressDown_6)
	ON_BN_CLICKED(IDC_DOWN_7, OnPressDown_7)
	ON_BN_CLICKED(IDC_DOWN_8, OnPressDown_8)
	ON_BN_CLICKED(IDC_DOWN_9, OnPressDown_9)
	ON_BN_CLICKED(IDC_GO, OnGo)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CElevatorDlg message handlers

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

	//初始化為停靠在第一層
	for (int i=0;i<9;i++)
	{
		m_bFloor[i]=false;
	}

	m_bFloor[0]=true;
	CStatic* pStatic=(CStatic*)this->GetDlgItem (IDC_FLOOR_1);
	pStatic->ModifyStyleEx (105,WS_EX_STATICEDGE,0);

	//將第一層向下的按鈕和第九層向上的按鈕屏蔽掉
	CButton* pButton1=(CButton*)this->GetDlgItem (IDC_DOWN_1);
	pButton1->EnableWindow (false);
	CButton* pButton2=(CButton*)this->GetDlgItem (IDC_UP_9);
	pButton2->EnableWindow (false);

	//初始時電梯沒有運動
	m_up=false;
	m_down=false;

	//設置電梯的定時器,啟動電梯控制邏輯
	m_elevator.SetMyTimer (50);

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

void CElevatorDlg::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 CElevatorDlg::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 CElevatorDlg::OnQueryDragIcon()
{
	return (HCURSOR) m_hIcon;
}

//更改界面顯示的消息映射函數
HBRUSH CElevatorDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) 
{
	HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor);
	
	// TODO: Change any attributes of the DC here
	int i;
	for (i=0;i<9;i++)
	{
		if (m_bFloor[i])
			break;
	}

	if (pWnd->GetDlgCtrlID() == IDC_FLOOR_1+i) 
    { 
		// 如果電梯停靠在該層,則該層顯示為紅色;否則不予處理
        pDC->SetTextColor(RGB(0, 0, 255)); 
    } 

	if (m_up)
	{
		if (pWnd->GetDlgCtrlID ()== IDC_LIGHT_UP)
			pDC->SetTextColor (RGB(255,0,0));
	}

	if (m_down)
	{
		if (pWnd->GetDlgCtrlID ()== IDC_LIGHT_DOWN)
			pDC->SetTextColor (RGB(255,0,0));
	}

	// TODO: Return a different brush if the default is not desired
	return hbr;
}


void CElevatorDlg::OnPressUp_1() 
{
	// TODO: Add your control notification handler code here
	HighLight(UP_1);
	m_elevator.RequestUp(1);
}

void CElevatorDlg::OnPressUp_2() 
{
	// TODO: Add your control notification handler code here
	HighLight(UP_2);
	m_elevator.RequestUp(2);
}

void CElevatorDlg::OnPressUp_3() 
{
	// TODO: Add your control notification handler code here
	HighLight(UP_3);
	m_elevator.RequestUp(3);
}

void CElevatorDlg::OnPressUp_4() 
{
	// TODO: Add your control notification handler code here
	HighLight(UP_4);
	m_elevator.RequestUp(4);
}

void CElevatorDlg::OnPressUp_5() 
{
	// TODO: Add your control notification handler code here
	HighLight(UP_5);
	m_elevator.RequestUp(5);
}

void CElevatorDlg::OnPressUp_6() 
{
	// TODO: Add your control notification handler code here
	HighLight(UP_6);
	m_elevator.RequestUp(6);
}

void CElevatorDlg::OnPressUp_7() 
{
	// TODO: Add your control notification handler code here
	HighLight(UP_7);
	m_elevator.RequestUp(7);
}

void CElevatorDlg::OnPressUp_8() 
{
	// TODO: Add your control notification handler code here
	HighLight(UP_8);
	m_elevator.RequestUp(8);
}

void CElevatorDlg::OnDest_1() 
{
	// TODO: Add your control notification handler code here
	HighLight(DEST_1);
	m_elevator .RequestDest(1);
}

void CElevatorDlg::OnDest_2() 
{
	// TODO: Add your control notification handler code here
	HighLight(DEST_2);
	m_elevator .RequestDest(2);
}

void CElevatorDlg::OnDest_3() 
{
	// TODO: Add your control notification handler code here
	HighLight(DEST_3);
	m_elevator .RequestDest(3);
}

void CElevatorDlg::OnDest_4() 
{
	// TODO: Add your control notification handler code here
	HighLight(DEST_4);
	m_elevator .RequestDest(4);
}

void CElevatorDlg::OnDest_5() 
{
	// TODO: Add your control notification handler code here
	HighLight(DEST_5);
	m_elevator .RequestDest(5);
}

void CElevatorDlg::OnDest_6() 
{
	// TODO: Add your control notification handler code here
	HighLight(DEST_6);
	m_elevator .RequestDest(6);
}

void CElevatorDlg::OnDest_7() 
{
	// TODO: Add your control notification handler code here
	HighLight(DEST_7);
	m_elevator .RequestDest(7);
}

void CElevatorDlg::OnDest_8() 
{
	// TODO: Add your control notification handler code here
	HighLight(DEST_8);
	m_elevator .RequestDest(8);
}

void CElevatorDlg::OnDest_9() 
{
	// TODO: Add your control notification handler code here
	HighLight(DEST_9);
	m_elevator .RequestDest(9);
}

void CElevatorDlg::OnPressDown_2() 
{
	// TODO: Add your control notification handler code here
	HighLight(DOWN_2);
	m_elevator.RequestDown(2);
}

void CElevatorDlg::OnPressDown_3() 
{
	// TODO: Add your control notification handler code here
	HighLight(DOWN_3);
	m_elevator.RequestDown(3);
}

void CElevatorDlg::OnPressDown_4() 
{
	// TODO: Add your control notification handler code here
	HighLight(DOWN_4);
	m_elevator.RequestDown(4);
}

void CElevatorDlg::OnPressDown_5() 
{
	// TODO: Add your control notification handler code here
	HighLight(DOWN_5);
	m_elevator.RequestDown(5);
}

void CElevatorDlg::OnPressDown_6() 
{
	// TODO: Add your control notification handler code here
	HighLight(DOWN_6);
	m_elevator.RequestDown(6);
}

void CElevatorDlg::OnPressDown_7() 
{
	// TODO: Add your control notification handler code here
	HighLight(DOWN_7);
	m_elevator.RequestDown(7);
}

void CElevatorDlg::OnPressDown_8() 
{
	// TODO: Add your control notification handler code here
	HighLight(DOWN_8);
	m_elevator.RequestDown(8);
}

void CElevatorDlg::OnPressDown_9() 
{
	// TODO: Add your control notification handler code here
	HighLight(DOWN_9);
	m_elevator.RequestDown(9);
}

//用戶按下“Go”按鈕
void CElevatorDlg::OnGo() 
{
	// TODO: Add your control notification handler code here
	HighLight(GO);
	m_elevator.CloseDoor();
}

//用戶對界面的操作通過改變界面元素的狀態來實現
//這里的界面元素指的是位于系統主界面之上的所有靜態文本、按鈕等控件
//界面元素的狀態有兩種:正常顯示和高亮顯示
//HighLight()將界面元素由正常顯示轉為高亮顯示
//StopHighLight()將界面元素由高亮顯示恢復為正常顯示
//參數i表示需要改變狀態的界面元素的代碼
//如果需要了解每個界面元素的詳細代碼,請查閱常量定義(const.h)
void CElevatorDlg::HighLight(int i)
{
	//樓層指示按鈕
	if ((FLOOR_1-1<i)&&(i<FLOOR_9+1))
	{
		CStatic* pStatic=(CStatic*)this->GetDlgItem (i);
		ASSERT(pStatic);
		pStatic->ModifyStyleEx(105,WS_EX_STATICEDGE,0);
		m_bFloor[i-FLOOR_1]=true;

		this->Invalidate (false);
		return ;
	}

	//各個樓層的向上按鈕
	if ((UP_1-1<i)&&(i<UP_8+1))
	{
		CSXButton* pButton=(CSXButton*)this->GetDlgItem (i);
		pButton->ChangeColor (RGB(255,0,0));
		return ;
	}

	//各個樓層的向下按鈕
	if ((DOWN_2-1<i)&&(i<DOWN_9+1))
	{
		CSXButton* pButton=(CSXButton*)this->GetDlgItem (i);
		pButton->ChangeColor (RGB(255,0,0));
		return ;
	}

	//電梯內部的目標樓層按鈕
	if ((DEST_1-1<i)&&(i<DEST_9+1))
	{
		CSXButton* pButton=(CSXButton*)this->GetDlgItem (i);
		pButton->ChangeColor (RGB(255,0,0));
		return ;
	}

	//Go按鈕
	if (i==GO)
	{
		m_go.ChangeColor (RGB(255,0,0));
		return ;
	}

	//上下指示燈
	if (i==LIGHT_UP)
	{
		this->m_up =true;
		this->Invalidate (false);
		return ;
	}

	if (i==LIGHT_DOWN)
	{
		this->m_down =true;
		this->Invalidate (false);
		return ;
	}
}

void CElevatorDlg::StopHighLight(int i)
{
	//樓層指示按鈕
	if ((FLOOR_1-1<i)&&(i<FLOOR_9+1))
	{
		CStatic* pStatic=(CStatic*)this->GetDlgItem (i);
		ASSERT(pStatic);
		pStatic->ModifyStyleEx(WS_EX_STATICEDGE,105,0);
		m_bFloor[i-FLOOR_1]=false;

		this->Invalidate (false);		
		return ;
	}

	//各個樓層的向上按鈕
	if ((UP_1-1<i)&&(i<UP_8+1))
	{
		CSXButton* pButton=(CSXButton*)this->GetDlgItem (i);
		pButton->ChangeColor (RGB(0,0,0));
		return ;
	}

	//各個樓層的向下按鈕
	if ((DOWN_2-1<i)&&(i<DOWN_9+1))
	{
		CSXButton* pButton=(CSXButton*)this->GetDlgItem (i);
		pButton->ChangeColor (RGB(0,0,0));
		return ;
	}

	//電梯內部的目標樓層按鈕
	if ((DEST_1-1<i)&&(i<DEST_9+1))
	{
		CSXButton* pButton=(CSXButton*)this->GetDlgItem (i);
		pButton->ChangeColor (RGB(0,0,0));
		return ;
	}

	//Go按鈕
	if (i==GO)
	{
		m_go.ChangeColor (RGB(0,0,0));
		return ;
	}

	//上下指示燈
	if (i==LIGHT_UP)
	{
		this->m_up =false;
		this->Invalidate (false);
		return ;
	}

	if (i==LIGHT_DOWN)
	{
		this->m_down =false;
		this->Invalidate (false);
		return ;
	}

}


void CElevatorDlg::OnOK() 
{
	// TODO: Add extra validation here
	
	CDialog::OnOK();
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩电影在线一区二区三区| 久久久精品日韩欧美| 亚洲在线视频免费观看| 精品视频一区二区三区免费| 五月婷婷综合网| 欧美电视剧免费全集观看| 国产一区999| 中文字幕亚洲一区二区va在线| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 国产欧美日韩视频在线观看| 国产成人精品免费一区二区| 亚洲视频每日更新| 欧美剧情片在线观看| 国产剧情av麻豆香蕉精品| 中文字幕中文乱码欧美一区二区| 91国产成人在线| 国产精品亚洲第一| **性色生活片久久毛片| 欧美精品色一区二区三区| 精品一区二区三区久久| 国产精品萝li| 日韩视频免费观看高清完整版 | 欧美日韩中文字幕一区| 捆绑调教一区二区三区| 国产精品系列在线| 91精品国产入口| 99免费精品视频| 麻豆久久一区二区| 亚洲欧美日韩小说| 久久久久久99精品| 欧美日韩精品电影| 99久久精品久久久久久清纯| 日韩av不卡一区二区| 国产精品你懂的在线欣赏| 欧美一区二区三区白人| 97久久久精品综合88久久| 蜜桃视频在线观看一区| 亚洲久本草在线中文字幕| www欧美成人18+| 欧美日韩不卡在线| 99精品视频中文字幕| 国产在线精品一区二区| 亚洲高清免费视频| 国产精品丝袜黑色高跟| 欧美一区二区高清| 欧美性xxxxxx少妇| av动漫一区二区| 国产麻豆精品视频| 久久精品国产一区二区三区免费看| 1000部国产精品成人观看| 久久久精品国产免大香伊| 这里只有精品99re| 欧美丝袜第三区| 94-欧美-setu| 成人黄色在线视频| 国产a久久麻豆| 国产真实精品久久二三区| 视频一区视频二区中文字幕| 亚洲日本va在线观看| 国产欧美va欧美不卡在线| 日韩欧美国产一区二区三区| 欧美日韩国产123区| 在线观看精品一区| 色视频成人在线观看免| 99视频国产精品| 高清视频一区二区| 国产91露脸合集magnet| 国产一区二区三区不卡在线观看 | 九色综合国产一区二区三区| 日本中文字幕不卡| 日韩电影在线观看网站| 日韩经典中文字幕一区| 偷偷要91色婷婷| 日韩精品一二三区| 蜜臀va亚洲va欧美va天堂 | 国产成人免费在线观看不卡| 国产精品正在播放| 成人美女视频在线观看| 不卡一区二区在线| 99久久99精品久久久久久| 不卡影院免费观看| 91一区二区在线| 91高清在线观看| 欧美日韩国产欧美日美国产精品| 欧美日本视频在线| 欧美一级专区免费大片| 精品剧情v国产在线观看在线| 2023国产精品视频| 国产欧美一区二区三区在线看蜜臀| 亚洲精品在线网站| 中文乱码免费一区二区| 亚洲素人一区二区| 五月天网站亚洲| 美国毛片一区二区三区| 国产伦精品一区二区三区在线观看 | 国产福利一区二区三区| 国产成人福利片| 91免费国产在线| 67194成人在线观看| 久久综合给合久久狠狠狠97色69| 国产调教视频一区| 夜夜嗨av一区二区三区四季av | 久久一区二区视频| 中文字幕在线不卡一区二区三区| 尤物视频一区二区| 久久福利视频一区二区| 成人涩涩免费视频| 欧美日韩国产高清一区二区三区| 2023国产精品| 亚洲一区二区三区四区的| 久久精品久久99精品久久| 成人激情视频网站| 欧美巨大另类极品videosbest | 亚洲情趣在线观看| 麻豆国产欧美一区二区三区| 成人在线视频首页| 欧美精品777| 国产精品久久久久国产精品日日| 婷婷夜色潮精品综合在线| 国产在线精品一区二区不卡了 | 欧美日韩精品免费| 国产精品国产馆在线真实露脸 | 天天av天天翘天天综合网色鬼国产| 久久国产精品99久久人人澡| 色欧美88888久久久久久影院| 日韩一级黄色片| 一区二区三区四区蜜桃| 国产精一品亚洲二区在线视频| 在线视频一区二区三| 精品黑人一区二区三区久久| 久久99精品久久久久久国产越南 | 国产高清在线精品| 91.麻豆视频| 亚洲精品成人悠悠色影视| 国内精品自线一区二区三区视频| 欧美在线一二三四区| 欧美激情在线看| 久久99久久精品| 91精品国产色综合久久不卡蜜臀| 亚洲视频免费观看| 国产.欧美.日韩| 欧美精品一区二区久久久 | 国产一区高清在线| 欧美电影一区二区三区| 亚洲日本电影在线| 成人黄色av网站在线| 久久精品人人做人人综合| 久久国产婷婷国产香蕉| 欧美日韩国产在线观看| 亚洲一区在线播放| 色婷婷av一区二区三区软件| 国产精品乱人伦中文| 国产精品一区在线| 精品精品国产高清一毛片一天堂| 青娱乐精品视频| 5566中文字幕一区二区电影| 午夜一区二区三区视频| 在线观看国产91| 亚洲午夜久久久久久久久久久| 91浏览器在线视频| 一区二区三区免费观看| 99re热视频精品| 国产精品不卡在线| 99riav一区二区三区| 中文字幕亚洲不卡| 色婷婷综合久久久久中文一区二区 | 欧洲av在线精品| 亚洲一区二区3| 欧美日韩一级视频| 日韩av一区二区三区四区| 欧美一三区三区四区免费在线看| 视频在线在亚洲| 日韩三级电影网址| 国产精品一区二区三区乱码| 国产午夜亚洲精品羞羞网站| 国产成人av福利| 国产精品免费人成网站| 成人激情免费电影网址| 亚洲裸体在线观看| 欧美丝袜自拍制服另类| 免费三级欧美电影| 久久久久久久久久美女| 成人免费毛片app| 一区二区三区中文在线观看| 69av一区二区三区| 国产成人综合精品三级| **欧美大码日韩| 欧美日韩精品欧美日韩精品| 麻豆91在线播放| 中文字幕av不卡| 欧美影视一区二区三区| 免费精品视频在线| 国产欧美一二三区| 精品视频资源站| 国产麻豆精品在线| 亚洲午夜视频在线| 久久九九影视网| 91福利国产精品| 国产一区二区三区免费观看| 一区二区三区蜜桃网|