?? infodlg.h
字號:
/*
Filename : InfoDlg.h
Part of : File Browser
Description : Declaration of File Browser's info dialog
Version : 3.2
This example is only to be used with PC Connectivity API version 3.2.
Compability ("as is") with future versions is not quaranteed.
Copyright (c) 2007 Nokia Corporation.
This material, including but not limited to documentation and any related
computer programs, is protected by intellectual property rights of Nokia
Corporation and/or its licensors.
All rights are reserved. Reproducing, modifying, translating, or
distributing any or all of this material requires the prior written consent
of Nokia Corporation. Nokia Corporation retains the right to make changes
to this material at any time without notice. A copyright license is hereby
granted to download and print a copy of this material for personal use only.
No other license to any other intellectual property rights is granted. The
material is provided "as is" without warranty of any kind, either express or
implied, including without limitation, any warranty of non-infringement,
merchantability and fitness for a particular purpose. In no event shall
Nokia Corporation be liable for any direct, indirect, special, incidental,
or consequential loss or damages, including but not limited to, lost profits
or revenue,loss of use, cost of substitute program, or loss of data or
equipment arising out of the use or inability to use the material, even if
Nokia Corporation has been advised of the likelihood of such damages occurring.
*/
#ifndef __NOKIA_PCCS_FILEBROWSER_EXAMPLE__INFODLG_H__
#define __NOKIA_PCCS_FILEBROWSER_EXAMPLE__INFODLG_H__
#pragma once
#include "afxcmn.h"
// CInfoDlg dialog
class CInfoDlg : public CDialog
{
DECLARE_DYNAMIC(CInfoDlg)
public:
CInfoDlg(CWnd* pParent = NULL); // standard constructor
virtual ~CInfoDlg();
void SetFolderInfo(CONAPI_FOLDER_INFO2* folderInfo2) { m_pFolderInfo = folderInfo2; };
void SetFileInfo(CONAPI_FILE_INFO* fileInfo) { m_pFileInfo = fileInfo; };
void ViewFolderInfo();
void ViewFileInfo();
// Dialog Data
enum { IDD = IDD_INFO_DIALOG };
protected:
virtual BOOL OnInitDialog();
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
private:
CListCtrl m_ItemList;
CONAPI_FOLDER_INFO2* m_pFolderInfo;
CONAPI_FILE_INFO* m_pFileInfo;
};
#endif //__NOKIA_PCCS_FILEBROWSER_EXAMPLE__INFODLG_H__
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -