⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uinotifier.h

📁 Symbian第二版断点续传代码,可以节省用户下载流量
💻 H
字号:
/* Copyright (c) 2001, Nokia. All rights reserved */


#ifndef __UINOTIFIER_H__
#define __UINOTIFIER_H__


/*! 
  @class MUINotifier
  
  @discussion This class specifies the console output functions.
  */
class MUINotifier
	{
public:
/*!
  @function PrintNotify

  @discussion Display the descriptor as text (with attributes) on the console
  @param aMessage message text
  @param aAttributes font attributes e.g. CEikGlobalTextEditor::EItalic
  */
	virtual void PrintNotify(const TDesC& aMessage, TUint aAttributes = 0) = 0;
/*!
  @function RecvNotify

  @discussion receive binary data from gprs 
  @param aMessage message text
  */
	virtual void RecvNotify(const TDesC8& aMessage) = 0;
/*!
  @function ErrorNotify

  @discussion Display an error message
  @param aErrMessage error message text
  @param aErrCode error code number
  */
	virtual void ErrorNotify(const TDesC& aErrMessage, TInt aErrCode) = 0;
/*!
  @function SetStatus

  @discussion Display the text in the 'status' window
  @param aStatus new status description text
  */
    virtual void SetStatus(const TDesC& aStatus) = 0;
	};

#endif

⌨️ 快捷键说明

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