alarmnotificationappview.h

来自「this is used to get the alarm on the mob」· C头文件 代码 · 共 80 行

H
80
字号
/* ====================================================================
 * File: alarmnotificationAppView.h
 * Created: 10/16/06
 * Author: 
 * Copyright (c): , All rights reserved
 * ==================================================================== */

#ifndef __ALARMNOTIFICATION_APPVIEW_H__
#define __ALARMNOTIFICATION_APPVIEW_H__


#include <coecntrl.h>

/*! 
  @class CAlarmNotificationAppView
  
  @discussion An instance of the Application View object for the alarmnotification 
  example application
  */
class CAlarmNotificationAppView : public CCoeControl
    {
public:

/*!
  @function NewL
   
  @discussion Create a CAlarmNotificationAppView object, which will draw itself to aRect
  @param aRect the rectangle this view will be drawn to
  @result a pointer to the created instance of CAlarmNotificationAppView
  */
    static CAlarmNotificationAppView* NewL(const TRect& aRect);

/*!
  @function NewLC
   
  @discussion Create a CAlarmNotificationAppView object, which will draw itself to aRect
  @param aRect the rectangle this view will be drawn to
  @result a pointer to the created instance of CAlarmNotificationAppView
  */
    static CAlarmNotificationAppView* NewLC(const TRect& aRect);


/*!
  @function ~CAlarmNotificationAppView
  
  @discussion Destroy the object and release all memory objects
  */
     ~CAlarmNotificationAppView();


public:  // from CCoeControl
/*!
  @function Draw
  
  @discussion Draw this CAlarmNotificationAppView to the screen
  @param aRect the rectangle of this view that needs updating
  */
    void Draw(const TRect& aRect) const;
  
private:

/*!
  @function ConstructL
  
  @discussion  Perform the second phase construction of a CAlarmNotificationAppView object
  @param aRect the rectangle this view will be drawn to
  */
    void ConstructL(const TRect& aRect);

/*!
  @function CAlarmNotificationAppView
  
  @discussion Perform the first phase of two phase construction 
  */
    CAlarmNotificationAppView();
    };


#endif // __ALARMNOTIFICATION_APPVIEW_H__

⌨️ 快捷键说明

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