callsummaryappui.h

来自「series60 应用程序开发的源代码 series60 应用程序开发的源代码」· C头文件 代码 · 共 60 行

H
60
字号
#ifndef CALLSUMMARYAPPUI_H
#define CALLSUMMARYAPPUI_H

// INCLUDES

// System includes
#include <aknviewappui.h>    // CAknViewAppUi
#include <rpbkviewresourcefile.h>

// User includes
#include "CallSummary.hrh"    // TCallSummaryViewNumber

// FORWARD DECLARATIONS
class CAknNavigationControlContainer;
class CAknNavigationDecorator;
class CAknTabGroup;
class CCallLogEngine;
class CCallView;
class CTopTenView;
class CPhoneBookEngine;

// CLASS DECLARATION

/**
*
* @class    CCallSummaryAppUi CallSummaryAppUi.h 
* @brief    This is the main application UI class for a log engine and phonebook example based on the 
* Series 60 view switching architecture.
*
* Copyright (c) EMCC Software Ltd 2003
* @version    1.0
* 
*/
class CCallSummaryAppUi : public CAknViewAppUi
{
public: // Constructor and destructor
    void ConstructL();
    ~CCallSummaryAppUi();

private: // from CEikAppUi
    void HandleCommandL(TInt aCommand);
    
private: // from CCoeAppUi
    virtual TKeyResponse HandleKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aType);

private: // data
    CCallView*                        iIncomingView;    // Not owned by this class.
    CCallView*                        iOutgoingView;    // Not owned by this class.
    CTopTenView*                    iTopTenView;    // Not owned by this class.
    TCallSummaryViewNumber            iCurrentViewId;
    CAknNavigationControlContainer* iNaviPane;        // Not owned by this class.
    CAknTabGroup*                    iTabGroup;        // Not owned by this class.
    CAknNavigationDecorator*        iDecoratedTabGroup;
    CPhoneBookEngine* iPhoneBookEngine;
};

#endif    // #ifndef CALLSUMMARYAPPUI_H

// End of File

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?