📄 chatappui.h
字号:
/*
* ==============================================================================
* Name : ChatAppui.h
* Part of : Chat
* Interface :
* Description :
* Version :
*
* Copyright (c) 2005-2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ==============================================================================
*/
#ifndef CHATAPPUI_H
#define CHATAPPUI_H
// INCLUDES
#include <aknappui.h>
// FORWARD DECLARATIONS
class CChatContainer;
class CChatBt;
class CChatInet;
// CLASS DECLARATION
/**
* Application UI class.
* Provides support for the following features:
* - EIKON control architecture
*
*/
class CChatAppUi : public CAknAppUi
{
public: // Constructors and destructor
/**
* default constructor.
*/
void ConstructL();
/**
* Destructor.
*/
~CChatAppUi();
public: // New functions
public: // Functions from base classes
private: // From MEikMenuObserver
void DynInitMenuPaneL( TInt aResourceId,CEikMenuPane* aMenuPane );
private:
/**
* From CEikAppUi, takes care of command handling.
* @param aCommand command to be handled
*/
void HandleCommandL( TInt aCommand );
/**
* From CEikAppUi, handles key events.
* @param aKeyEvent Event to handled.
* @param aType Type of the key event.
* @return Response code (EKeyWasConsumed, EKeyWasNotConsumed).
*/
virtual TKeyResponse HandleKeyEventL(
const TKeyEvent& aKeyEvent,TEventCode aType );
/**
* From CEikAppUi, handles key events.
* @param aType The type of resources that have changed
*/
virtual void HandleResourceChangeL( TInt aType );
/**
* ShowBTNotAvailableNoteL.
* Show note if BT is not available
*/
void ShowBTNotAvailableNoteL();
private: // Data
CChatContainer* iAppContainer;
/**
* iClient
* the BT chat engine
* Owned by CChatAppUi
*/
CChatBt* iChatBt;
/**
* iClientInet
* the TCPIP chat engine
* Owned by CChatAppUi
*/
CChatInet* iChatInet;
/**
* iBtAvailable, ETrue if an SDP session can be opened, EFalse otherwise.
*/
TBool iBtAvailable;
};
#endif // CHATAPPUI_H
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -