青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

CFileDialog文件選擇對話框的使用

CFileDialog文件選擇對話框的使用:首先構造一個對象并提供相應的參數,構造函數原型如下: CFileDialog::CFileDialog( BOOL bOpenFileDialog, LPCTSTR lpszDefExt = NULL, LPCTSTR lpszFileName = NULL, DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, LPCTSTR lpszFilter = NULL, CWnd* pParentWnd = NULL );參數意義如下:

  • bOpenFileDialog 為TRUE則顯示打開對話框,為FALSE則顯示保存對話文件對話框。
  • lpszDefExt 指定默認的文件擴展名。
  • lpszFileName 指定默認的文件名。
  • dwFlags 指明一些特定風格。
  • lpszFilter 是最重要的一個參數,它指明可供選擇的文件類型和相應的擴展名。參數格式如: "Chart Files (*.xlc)|*.xlc|Worksheet Files (*.xls)|*.xls|Data Files (*.xlc;*.xls)|*.xlc; *.xls|All Files (*.*)|*.*||";文件類型說明和擴展名間用 | 分隔,同種類型文件的擴展名間可以用 ; 分割,每種文件類型間用 | 分隔,末尾用 || 指明。
  • pParentWnd 為父窗口指針。
創建文件對話框可以使用DoModal(),在返回后可以利用下面的函數得到用戶選擇:
  • CString CFileDialog::GetPathName( ) 得到完整的文件名,包括目錄名和擴展名如:c:"test"test1.txt
  • CString CFileDialog::GetFileName( ) 得到完整的文件名,包括擴展名如:test1.txt
  • CString CFileDialog::GetExtName( ) 得到完整的文件擴展名,如:txt
  • CString CFileDialog::GetFileTitle ( ) 得到完整的文件名,不包括目錄名和擴展名如:test1
  • POSITION CFileDialog::GetStartPosition( ) 對于選擇了多個文件的情況得到第一個文件位置。
  • CString CFileDialog::GetNextPathName( POSITION& pos ) 對于選擇了多個文件的情況得到下一個文件位置,并同時返回當前文件名。但必須已經調用過POSITION CFileDialog::GetStartPosition( )來得到最初的POSITION變量。

 實例:

char szFliter[] = "log Fliex(*.log)|*.log||";
 CFileDialog dlg(TRUE,NULL,
"", OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT |
     OFN_ALLOWMULTISELECT, szFliter);
 m_itrVecStrPathSave 
= m_vecStrPathSave.begin();
 
int iNum = 0;
 
 
for(int iCount = 0; m_vecStrPathSave.size() > iCount; iCount++)
 
{
  m_vecStrPathSave.erase(m_vecStrPathSave.begin(), m_vecStrPathSave.end());
  
break;
 }

   
 
if(IDOK == dlg.DoModal())
 
{
  POSITION mPos 
= dlg.GetStartPosition();
  CFileStatus status;
  itrVecStrSort 
= vecStrSort.begin();
  itrVecStrSortName 
= vecStrSortName.begin();
  CMainFrame 
* pMainFrame;
  CLogSwitchToolView 
*pView;
  pMainFrame 
= (CMainFrame *)AfxGetApp()->m_pMainWnd;
  pView 
= (CLogSwitchToolView*)pMainFrame->GetActiveView();
  pView
->m_bScrollSet = TRUE;

  
while(NULL != mPos)
  
{
   m_vecStrPathSave.push_back(dlg.GetNextPathName(mPos));  
   iNum
++;  
  }

  iNum
--;  
  CStdioFile sdfFile;
  CFileException en;
  CString strLine;

  
if(!sdfFile.Open(m_vecStrPathSave[0], CFile::modeRead, &en))
  
{
   en.ReportError();
   
return;
  }

  sdfFile.Close();

  
while(0 < iNum)
  
{
   itrVecStrSort 
= vecStrSort.begin();
   itrVecStrSortName 
= vecStrSortName.begin();
   OnPateDel(m_vecStrPathSave[iNum]);
   iNum
--;   
  }

  m_strUse 
= m_vecStrPathSave[0];
  m_iMain 
= 1;   
  pView
->m_iCol = 1;  
  m_bSearchDiff 
= FALSE;
  m_iSearchDiffCount
= 0;
  m_bSearchSame 
= FALSE;
  m_bExtract 
= FALSE;
  m_bFileOpen 
= TRUE;
  
  
for(int iCount = 0; pView->m_vecStrText.size() > iCount; iCount++)
  
{
   pView
->m_vecStrText.erase(pView->m_vecStrText.begin(), pView->m_vecStrText.end());
   
break;
  }


  
for(int iCountTwo = 0; pView->m_vecNum.size() > iCountTwo; iCountTwo++)
  
{
   pView
->m_vecNum.erase(pView->m_vecNum.begin(), pView->m_vecNum.end());
   
break;
  }
  
  m_compDlgBar.m_comboBoxFile.ShowWindow(SW_SHOW);  
  m_compDlgBar.m_comboBoxFile.ResetContent();
  m_compDlgBar.m_comboBoxFileTwo.ResetContent();
  
int iCountThree;
  iCountThree 
= 0;
  
  OnPateDel(m_vecStrPathSave[
0]);

  
for(int iCountFour = vecStrSortName.size() - 10 <= iCountFour; iCountFour--)
  
{
   m_compDlgBar.m_comboBoxFile.InsertString(iCountThree,vecStrSortName[iCountFour]);
   iCountThree
++;
  }

  m_compDlgBar.m_comboBoxFile.SetCurSel(
0);
  iCountThree 
= 0;
/////////////////////////////////////   
  for(int iCountFive = vecStrSortName.size() - 10 <= iCountFive; iCountFive--)
  
{
   m_compDlgBar.m_comboBoxFileTwo.InsertString(iCountThree,vecStrSortName[iCountFive]);
   iCountThree
++;
  }

  m_compDlgBar.m_comboBoxFileTwo.SetCurSel(
1);
  OnTextDel();
  Invalidate();
  g_intPoint 
= 1;
 }

 [一些小心得]

例: CFileDialog GetFile(TRUE,NULL,NULL,OFN_FILEMUSTEXIST,"Microsoft Excel(*.xls)|*.xls|All Files(*.*)|*.*||");

CFileDialog GetFile(打開文件對話框(TRUE),擴展名(NULL),文件名(NULL),風格-文件必須存在(OFN_FILEMUSTEXIST),查 看文件類型-EXCEL文件,所有文件(Microsoft Excel(*.xls)|*.xls|All Files(*.*)|*.*||);

風格的宏定義

#define OFN_READONLY                 0x00000001 #define OFN_OVERWRITEPROMPT          0x00000002 #define OFN_HIDEREADONLY             0x00000004 #define OFN_NOCHANGEDIR              0x00000008 #define OFN_SHOWHELP                 0x00000010 #define OFN_ENABLEHOOK               0x00000020 #define OFN_ENABLETEMPLATE           0x00000040 #define OFN_ENABLETEMPLATEHANDLE     0x00000080 #define OFN_NOVALIDATE               0x00000100 #define OFN_ALLOWMULTISELECT         0x00000200 #define OFN_EXTENSIONDIFFERENT       0x00000400 #define OFN_PATHMUSTEXIST            0x00000800 #define OFN_FILEMUSTEXIST            0x00001000 #define OFN_CREATEPROMPT             0x00002000 #define OFN_SHAREAWARE               0x00004000 #define OFN_NOREADONLYRETURN         0x00008000 #define OFN_NOTESTFILECREATE         0x00010000 #define OFN_NONETWORKBUTTON          0x00020000 #define OFN_NOLONGNAMES              0x00040000     // force no long names for 4.x modules #if(WINVER >= 0x0400) #define OFN_EXPLORER                 0x00080000     // new look commdlg #define OFN_NODEREFERENCELINKS       0x00100000 #define OFN_LONGNAMES                0x00200000     // force long names for 3.x modules #define OFN_ENABLEINCLUDENOTIFY      0x00400000     // send include message to callback #define OFN_ENABLESIZING             0x00800000 #endif /* WINVER >= 0x0400 */ #if (_WIN32_WINNT >= 0x0500) #define OFN_DONTADDTORECENT          0x02000000 #define OFN_FORCESHOWHIDDEN          0x10000000    // Show All files including System and hidden files #endif // (_WIN32_WINNT >= 0x0500)

這個就不解釋了,應該都能看懂吧

需要注意的是,用了CFileDialog之后,會把程序的當前路徑設置成選中文件的路徑 所以,如果程序里有用到IO訪問或者數據庫訪問之類的本地操作時,需要注意你的當前路徑 用相對路徑的話就不是原來你的程序路徑了,切記!

 

CFileDialog文件選擇對話框的使用

CFileDialog文件選擇對話框的使用: 首先構造一個對象并提供相應的參數,構造函數原型如下: CFileDialog::CFileDialog( BOOL bOpenFileDialog, LPCTSTR lpszDefExt = NULL, LPCTSTR lpszFileName = NULL, DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, LPCTSTR lpszFilter = NULL, CWnd* pParentWnd = NULL );參數意義如下:

  • bOpenFileDialog 為TRUE則顯示打開對話框,為FALSE則顯示保存對話文件對話框。
  • lpszDefExt 指定默認的文件擴展名。
  • lpszFileName 指定默認的文件名。
  • dwFlags 指明一些特定風格。
  • lpszFilter 是最重要的一個參數,它指明可供選擇的文件類型和相應的擴展名。參數格式如: "Chart Files (*.xlc)|*.xlc|Worksheet Files (*.xls)|*.xls|Data Files (*.xlc;*.xls)|*.xlc; *.xls|All Files (*.*)|*.*||";文件類型說明和擴展名間用 | 分隔,同種類型文件的擴展名間可以用 ; 分割,每種文件類型間用 | 分隔,末尾用 || 指明。
  • pParentWnd 為父窗口指針。
創建文件對話框可以使用DoModal(),在返回后可以利用下面的函數得到用戶選擇:
  • CString CFileDialog::GetPathName( ) 得到完整的文件名,包括目錄名和擴展名如:c:"test"test1.txt
  • CString CFileDialog::GetFileName( ) 得到完整的文件名,包括擴展名如:test1.txt
  • CString CFileDialog::GetExtName( ) 得到完整的文件擴展名,如:txt
  • CString CFileDialog::GetFileTitle ( ) 得到完整的文件名,不包括目錄名和擴展名如:test1
  • POSITION CFileDialog::GetStartPosition( ) 對于選擇了多個文件的情況得到第一個文件位置。
  • CString CFileDialog::GetNextPathName( POSITION& pos ) 對于選擇了多個文件的情況得到下一個文件位置,并同時返回當前文件名。但必須已經調用過POSITION CFileDialog::GetStartPosition( )來得到最初的POSITION變量。

CColorDialog顏色選擇對話框的使用: 首先通過CColorDialog::CColorDialog( COLORREF clrInit = 0, DWORD dwFlags = 0, CWnd* pParentWnd = NULL )構造一個對象,其中clrInit為初始顏色。通過調用DoModal()創建對話框,在返回后調用COLORREF CColorDialog::GetColor( )得到用戶選擇的顏色值。

CFontDialog字體選擇對話框的使用: 首先構造一個對象并提供相應的參數,構造函數原型如下: CFontDialog::CFontDialog( LPLOGFONT lplfInitial = NULL, DWORD dwFlags = CF_EFFECTS | CF_SCREENFONTS, CDC* pdcPrinter = NULL, CWnd* pParentWnd = NULL );構造一個對象,其中參數lplfInitial指向一個LOGFONG結構.如果該參數設置為NULL表示不設置初始字體。pdcPrinter指向 一個代表打印機設備環境的DC對象,若設置該參數則選擇的字體就為打印機所用。pParentWnd用于指定父窗口。通過調用DoModal()創建對話 框,在返回后通過調用以下函數來得到用戶選擇:

  • void CFontDialog::GetCurrentFont( LPLOGFONT lplf );用來獲得所選字體的屬性。該函數有一個參數,該參數是指向LOGFONT結構的指針,函數將所選字體的各種屬性寫入這個LOGFONT結構中。
  • CString CFontDialog::GetFaceName( ) 得到所選字體名字。
  • int CFontDialog::GetSize( ) 得到所選字體的尺寸(以10個象素為單位)。
  • COLORREF CFontDialog::GetColor( ) 得到所選字體的顏色。
  • BOOL CFontDialog::IsStrikeOut( ) BOOL CFontDialog::IsUnderline( ) BOOL CFontDialog::IsBold( ) BOOL CFontDialog::IsItalic( ) 得到所選字體的其他屬性,是否有刪除線,是否有下劃線,是否為粗體,是否為斜體。

 

附   dwFlags

Flags
A set of bit flags you can use to initialize the dialog box. When the dialog box returns, it sets these flags to indicate the user's input. This member can be a combination of the following flags.
OFN_ALLOWMULTISELECT
Specifies that the File Name list box allows multiple selections. If you also set the OFN_EXPLORER flag, the dialog box uses the Explorer-style user interface; otherwise, it uses the old-style user interface.
If the user selects more than one file, the lpstrFile buffer returns the path to the current directory followed by the file names of the selected files. The nFileOffset member is the offset, in bytes or characters, to the first file name, and the nFileExtension member is not used. For Explorer-style dialog boxes, the directory and file name strings are NULL separated, with an extra NULL character after the last file name. This format enables the Explorer-style dialog boxes to return long file names that include spaces. For old-style dialog boxes, the directory and file name strings are separated by spaces and the function uses short file names for file names with spaces. You can use the FindFirstFile function to convert between long and short file names.
If you specify a custom template for an old-style dialog box, the definition of the File Name list box must contain the LBS_EXTENDEDSEL value.
OFN_CREATEPROMPT
If the user specifies a file that does not exist, this flag causes the dialog box to prompt the user for permission to create the file. If the user chooses to create the file, the dialog box closes and the function returns the specified name; otherwise, the dialog box remains open. If you use this flag with the OFN_ALLOWMULTISELECT flag, the dialog box allows the user to specify only one nonexistent file.
OFN_DONTADDTORECENT
Windows 2000/XP: Prevents the system from adding a link to the selected file in the file system directory that contains the user's most recently used documents. To retrieve the location of this directory, call the SHGetSpecialFolderLocation function with the CSIDL_RECENT flag.
OFN_ENABLEHOOK
Enables the hook function specified in the lpfnHook member.
OFN_ENABLEINCLUDENOTIFY
Windows 2000/XP: Causes the dialog box to send CDN_INCLUDEITEM notification messages to your OFNHookProc hook procedure when the user opens a folder. The dialog box sends a notification for each item in the newly opened folder. These messages enable you to control which items the dialog box displays in the folder's item list.
OFN_ENABLESIZING
Windows 2000/XP, Windows 98/Me: Enables the Explorer-style dialog box to be resized using either the mouse or the keyboard. By default, the Explorer-style Open and Save As dialog boxes allow the dialog box to be resized regardless of whether this flag is set. This flag is necessary only if you provide a hook procedure or custom template. The old-style dialog box does not permit resizing.
OFN_ENABLETEMPLATE
Indicates that the lpTemplateName member is a pointer to the name of a dialog template resource in the module identified by the hInstance member. If the OFN_EXPLORER flag is set, the system uses the specified template to create a dialog box that is a child of the default Explorer-style dialog box. If the OFN_EXPLORER flag is not set, the system uses the template to create an old-style dialog box that replaces the default dialog box.
OFN_ENABLETEMPLATEHANDLE
Indicates that the hInstance member identifies a data block that contains a preloaded dialog box template. The system ignores lpTemplateName if this flag is specified. If the OFN_EXPLORER flag is set, the system uses the specified template to create a dialog box that is a child of the default Explorer-style dialog box. If the OFN_EXPLORER flag is not set, the system uses the template to create an old-style dialog box that replaces the default dialog box.
OFN_EXPLORER
Indicates that any customizations made to the Open or Save As dialog box use the new Explorer-style customization methods. For more information, see Explorer-Style Hook Procedures and Explorer-Style Custom Templates.
By default, the Open and Save As dialog boxes use the Explorer-style user interface regardless of whether this flag is set. This flag is necessary only if you provide a hook procedure or custom template, or set the OFN_ALLOWMULTISELECT flag.
If you want the old-style user interface, omit the OFN_EXPLORER flag and provide a replacement old-style template or hook procedure. If you want the old style but do not need a custom template or hook procedure, simply provide a hook procedure that always returns FALSE.
OFN_EXTENSIONDIFFERENT
Specifies that the user typed a file name extension that differs from the extension specified by lpstrDefExt. The function does not use this flag if lpstrDefExt is NULL.
OFN_FILEMUSTEXIST
Specifies that the user can type only names of existing files in the File Name entry field. If this flag is specified and the user enters an invalid name, the dialog box procedure displays a warning in a message box. If this flag is specified, the OFN_PATHMUSTEXIST flag is also used. This flag can be used in an Open dialog box. It cannot be used with a Save As dialog box.
OFN_FORCESHOWHIDDEN
Windows 2000/XP: Forces the showing of system and hidden files, thus overriding the user setting to show or not show hidden files. However, a file that is marked both system and hidden is not shown.
OFN_HIDEREADONLY
Hides the Read Only check box.
OFN_LONGNAMES
For old-style dialog boxes, this flag causes the dialog box to use long file names. If this flag is not specified, or if the OFN_ALLOWMULTISELECT flag is also set, old-style dialog boxes use short file names (8.3 format) for file names with spaces. Explorer-style dialog boxes ignore this flag and always display long file names.
OFN_NOCHANGEDIR
Restores the current directory to its original value if the user changed the directory while searching for files.
Windows NT 4.0/2000/XP: This flag is ineffective for GetOpenFileName.
OFN_NODEREFERENCELINKS
Directs the dialog box to return the path and file name of the selected shortcut (.LNK) file. If this value is not specified, the dialog box returns the path and file name of the file referenced by the shortcut.
OFN_NOLONGNAMES
For old-style dialog boxes, this flag causes the dialog box to use short file names (8.3 format). Explorer-style dialog boxes ignore this flag and always display long file names.
OFN_NONETWORKBUTTON
Hides and disables the Network button.
OFN_NOREADONLYRETURN
Specifies that the returned file does not have the Read Only check box selected and is not in a write-protected directory.
OFN_NOTESTFILECREATE
Specifies that the file is not created before the dialog box is closed. This flag should be specified if the application saves the file on a create-nonmodify network share. When an application specifies this flag, the library does not check for write protection, a full disk, an open drive door, or network protection. Applications using this flag must perform file operations carefully, because a file cannot be reopened once it is closed.
OFN_NOVALIDATE
Specifies that the common dialog boxes allow invalid characters in the returned file name. Typically, the calling application uses a hook procedure that checks the file name by using the FILEOKSTRING message. If the text box in the edit control is empty or contains nothing but spaces, the lists of files and directories are updated. If the text box in the edit control contains anything else, nFileOffset and nFileExtension are set to values generated by parsing the text. No default extension is added to the text, nor is text copied to the buffer specified by lpstrFileTitle. If the value specified by nFileOffset is less than zero, the file name is invalid. Otherwise, the file name is valid, and nFileExtension and nFileOffset can be used as if the OFN_NOVALIDATE flag had not been specified.
OFN_OVERWRITEPROMPT
Causes the Save As dialog box to generate a message box if the selected file already exists. The user must confirm whether to overwrite the file.
OFN_PATHMUSTEXIST
Specifies that the user can type only valid paths and file names. If this flag is used and the user types an invalid path and file name in the File Name entry field, the dialog box function displays a warning in a message box.
OFN_READONLY
Causes the Read Only check box to be selected initially when the dialog box is created. This flag indicates the state of the Read Only check box when the dialog box is closed.
OFN_SHAREAWARE
Specifies that if a call to the OpenFile function fails because of a network sharing violation, the error is ignored and the dialog box returns the selected file name. If this flag is not set, the dialog box notifies your hook procedure when a network sharing violation occurs for the file name specified by the user. If you set the OFN_EXPLORER flag, the dialog box sends the CDN_SHAREVIOLATION message to the hook procedure. If you do not set OFN_EXPLORER, the dialog box sends the SHAREVISTRING registered message to the hook procedure.
OFN_SHOWHELP
Causes the dialog box to display the Help button. The hwndOwner member must specify the window to receive the HELPMSGSTRING registered messages that the dialog box sends when the user clicks the Help button. An Explorer-style dialog box sends a CDN_HELP notification message to your hook procedure when the user clicks the Help button.
OFN_USESHELLITEM
Do not use.

posted on 2010-02-22 11:58 wrh 閱讀(2727) 評論(0)  編輯 收藏 引用


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


導航

<2010年11月>
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011

統計

常用鏈接

留言簿(19)

隨筆檔案

文章檔案

收藏夾

搜索

最新評論

閱讀排行榜

評論排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美v日韩v国产v| 国产精品久久久久婷婷| 亚洲国产成人久久综合一区| 亚洲影院一区| 香蕉久久精品日日躁夜夜躁| 亚洲欧美中文另类| 久久精品国产精品亚洲精品| 嫩草伊人久久精品少妇av杨幂| 亚洲第一页中文字幕| 亚洲黄色一区二区三区| 一区二区三区免费看| 亚洲一卡二卡三卡四卡五卡| 欧美亚洲自偷自偷| 免费成人黄色av| 欧美日韩免费高清一区色橹橹| 国产精品美女久久久久久免费| 国产精品资源| 亚洲精品一二区| 欧美自拍偷拍午夜视频| 久久亚洲欧美| aa日韩免费精品视频一| 久久久精品性| 国产精品久久久久久久久久久久久 | 久久精品理论片| 麻豆成人综合网| 亚洲日本成人在线观看| 午夜天堂精品久久久久| 欧美成人激情在线| 国产伦精品一区| 亚洲毛片在线观看.| 久久久国产视频91| 一本色道久久综合亚洲精品高清| 欧美制服丝袜| 欧美日韩精品免费观看视一区二区 | 久久国产精品亚洲va麻豆| 欧美成人精品| 性欧美暴力猛交69hd| 欧美精品一线| 怡红院精品视频在线观看极品| 亚洲一区二区三区精品视频| 亚洲日本电影| 女人色偷偷aa久久天堂| 性做久久久久久免费观看欧美| 欧美激情精品久久久久久变态| 国产一区二区三区四区hd| 亚洲一区二区三区免费观看| 欧美高清成人| 久久综合五月| 在线播放亚洲| 猛男gaygay欧美视频| 亚洲女性裸体视频| 国产精品乱码人人做人人爱| 亚洲欧洲精品成人久久奇米网 | 亚洲免费观看高清完整版在线观看| 久久国产精彩视频| 国产女主播视频一区二区| 亚洲专区免费| 一区二区三区日韩欧美精品| 欧美日本免费一区二区三区| 亚洲精品一区二区三区四区高清| 欧美国产日韩在线观看| 免费欧美网站| 亚洲精品女av网站| 亚洲人成啪啪网站| 欧美日韩激情小视频| 日韩西西人体444www| 日韩视频久久| 国产精品久久999| 午夜在线观看免费一区| 亚洲一区二区免费看| 国产欧美日韩91| 久久精品欧美日韩精品| 欧美一区二区国产| 午夜精品理论片| 日韩午夜精品视频| 国产精品久久久久久久电影| 欧美亚洲在线视频| 久久精品国产亚洲一区二区| 亚洲电影av在线| 亚洲精品免费在线观看| 欧美午夜不卡影院在线观看完整版免费| 亚洲视频一区二区免费在线观看| 国产精品99久久久久久www| 国产伦精品一区二区三区高清| 久久一区二区三区av| 欧美大胆成人| 亚洲欧美怡红院| 久久久久久婷| 中日韩美女免费视频网站在线观看| 99视频在线观看一区三区| 国产日产高清欧美一区二区三区| 久久久精品性| 欧美精品91| 久久国产免费看| 欧美+亚洲+精品+三区| 亚洲视频在线播放| 久久久久久夜| 亚洲一区图片| 美女视频一区免费观看| 亚洲欧美国产日韩中文字幕| 久久久精品免费视频| 亚洲欧美成人一区二区在线电影 | 曰韩精品一区二区| 日韩午夜在线播放| 黄色成人av| 一本色道久久综合精品竹菊 | 亚洲日韩欧美视频一区| 亚洲综合第一| 99re这里只有精品6| 亚洲一区二区三区欧美| 亚洲成人在线网| 亚洲一区二区在线播放| 亚洲人成艺术| 久久激情五月丁香伊人| 亚洲专区欧美专区| 欧美精品一区二区三区很污很色的| 欧美一区二区免费视频| 欧美日本不卡高清| 久久久久欧美精品| 国产精品亚洲网站| 亚洲人成欧美中文字幕| 在线免费观看成人网| 欧美一级二级三级蜜桃| 亚洲男人的天堂在线aⅴ视频| 男人插女人欧美| 榴莲视频成人在线观看| 国色天香一区二区| 欧美在线一区二区| 午夜免费在线观看精品视频| 欧美日韩亚洲视频| 亚洲免费观看高清完整版在线观看熊 | 91久久综合亚洲鲁鲁五月天| 亚洲自拍偷拍一区| 午夜精品视频在线| 国产精品高清在线| 亚洲在线一区二区三区| 亚洲欧美一区二区视频| 国产精品萝li| 亚洲一区二区在线视频| 亚洲欧美日韩综合| 国产精品亚洲一区二区三区在线| 亚洲网在线观看| 欧美一区二区视频免费观看| 国产精品青草综合久久久久99 | 亚洲激情电影在线| 久久亚洲国产精品一区二区| 久久免费精品日本久久中文字幕| 国产欧美日韩91| 久久久久国产精品麻豆ai换脸| 美女主播视频一区| 日韩视频免费观看高清在线视频| 欧美日产国产成人免费图片| 99精品99| 欧美一区二区在线免费观看| 国产欧美日韩综合一区在线播放| 亚洲在线观看免费| 久久免费一区| 亚洲欧洲一区二区三区久久| 欧美国产精品日韩| 正在播放亚洲一区| 久久久久久有精品国产| 亚洲日本一区二区| 国产精品网站在线| 久久美女艺术照精彩视频福利播放| 欧美成人国产| 亚洲欧美日韩综合aⅴ视频| 一区二区三区在线观看视频 | 欧美精选午夜久久久乱码6080| 亚洲精品婷婷| 久久精品男女| 一本色道久久综合狠狠躁篇怎么玩| 国产精品对白刺激久久久| 久久国产精品99国产精| 亚洲国产婷婷| 久久精品久久综合| 一区二区三区精品| 极品尤物一区二区三区| 欧美日韩一区三区| 久久成人综合网| 夜夜嗨av一区二区三区中文字幕 | 亚洲精品中文字| 国产日韩精品一区二区三区| 免费在线视频一区| 亚洲欧美一级二级三级| 亚洲欧洲精品一区二区精品久久久| 午夜精品视频在线观看| 亚洲精品国产欧美| 国产一区日韩二区欧美三区| 欧美另类一区| 美国成人直播| 欧美在线一二三区| 亚洲一品av免费观看| 一区二区三区欧美激情| 国产精品99久久久久久宅男| 激情久久久久久久久久久久久久久久| 亚洲精品一区中文| 久久午夜精品| 久久精品国亚洲| 亚洲欧美影音先锋| 宅男精品导航|