ptphonedisplay.h

来自「基于sipfoundy 公司开发的sipx协议API」· C头文件 代码 · 共 79 行

H
79
字号
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _PtPhoneDisplay_h_#define _PtPhoneDisplay_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include "ptapi/PtComponent.h"#include "os/OsTime.h"#include "os/OsProtectEventMgr.h"// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONSclass TaoClientTask;//:The PtPhoneDisplay class models the display device for a phone.// It is the parent class for the PtPhoneTextDisplay and PtPhoneGraphicDisplay// classes.  The interface for this class has not yet been defined.class PtPhoneDisplay : public PtComponent{/* //////////////////////////// PUBLIC //////////////////////////////////// */public:/* ============================ CREATORS ================================== */        PtPhoneDisplay(TaoClientTask *pClient, int type = PtComponent::DISPLAY);        PtPhoneDisplay(int type = PtComponent::DISPLAY);         //:Default constructor   PtPhoneDisplay(const PtPhoneDisplay& rPtPhoneDisplay);     //:Copy constructor (not implemented for this class)   PtPhoneDisplay& operator=(const PtPhoneDisplay& rhs);     //:Assignment operator (not implemented for this class)   virtual        ~PtPhoneDisplay();     //:Destructor/* ============================ MANIPULATORS ============================== */        PtStatus setContrast(int level);/* ============================ ACCESSORS ================================= */        PtStatus getContrast(int& rLevel, int& rLow, int& rHigh, int& rNominal);/* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// */protected:        TaoClientTask   *mpClient;        OsTime          mTimeOut;/* //////////////////////////// PRIVATE /////////////////////////////////// */private:        OsProtectEventMgr *mpEventMgr;};/* ============================ INLINE METHODS ============================ */#endif  // _PtPhoneDisplay_h_

⌨️ 快捷键说明

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