?? filebrowserview.h
字號:
/*
* ============================================================================
* Name : CFileBrowserView from FileBrowserView.h
* Part of : FileBrowser
* Created : 03.05.2005 by ToBeReplacedByAuthorXinyu
* Description:
* Declares view for application.
* Version :
* Copyright: ToBeReplacedByCopyrightNone
* ============================================================================
*/
#ifndef FILEBROWSERVIEW_H
#define FILEBROWSERVIEW_H
// INCLUDES
#include <aknview.h>
// CONSTANTS
// UID of view
const TUid KViewId = {1};
// FORWARD DECLARATIONS
class CFileBrowserContainer;
// CLASS DECLARATION
/**
* CFileBrowserView view class.
*
*/
class CFileBrowserView : public CAknView
{
public: // Constructors and destructor
/**
* EPOC default constructor.
*/
void ConstructL();
/**
* Destructor.
*/
~CFileBrowserView();
public: // Functions from base classes
/**
* From CAknView returns Uid of View
* @return TUid uid of the view
*/
TUid Id() const;
/**
* From MEikMenuObserver delegate commands from the menu
* @param aCommand a command emitted by the menu
* @return void
*/
void HandleCommandL(TInt aCommand);
/**
* From CAknView reaction if size change
* @return void
*/
void HandleClientRectChange();
private:
/**
* From CAknView activate the view
* @param aPrevViewId
* @param aCustomMessageId
* @param aCustomMessage
* @return void
*/
void DoActivateL(const TVwsViewId& aPrevViewId,TUid aCustomMessageId,
const TDesC8& aCustomMessage);
/**
* From CAknView deactivate the view (free resources)
* @return void
*/
void DoDeactivate();
private: // Data
CFileBrowserContainer* iContainer;
};
#endif
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -