viewserverappview.h

来自「view server symbian os application devel」· C头文件 代码 · 共 34 行

H
34
字号
/* ====================================================================
 * File: ViewServerAppView.h
 * Created: 07/04/05
 * Author: 
 * Copyright (c): , All rights reserved
 * ==================================================================== */

#ifndef __ViewServer_APPVIEW_H__
#define __ViewServer_APPVIEW_H__

#include <coeview.h>
#include <coecntrl.h>

class CViewServerAppView : public CCoeControl, public MCoeView {
  public:
    static CViewServerAppView* NewL(const TRect& aRect);
    static CViewServerAppView* NewLC(const TRect& aRect);
    static TInt ChangeView(TAny* appUi);
    TVwsViewId ViewId() const;
    ~CViewServerAppView();

  public:  // from CCoeControl
    void Draw(const TRect& aRect) const;
  
  private:
    void ConstructL(const TRect& aRect);
    CViewServerAppView();
    void ViewActivatedL(const TVwsViewId& aPrevViewId,TUid aCustomMessageId,const TDesC8& aCustomMessage);
    void ViewDeactivated();
    void SetupTimer();
};

#endif // __ViewServer_APPVIEW_H__

⌨️ 快捷键说明

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