📄 pstaodisplay.h
字号:
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _PsTaoDisplay_h_#define _PsTaoDisplay_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include "ps/PsTaoComponent.h"// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONS//:The PsTaoDisplay class models the phone hook switch.class PsTaoDisplay : public PsTaoComponent{ friend class PsPhoneTask; // The PsPhoneTask is responsible for creating and destroying // all objects derived from the PsTaoComponent class. No other entity // should invoke the constructors or destructors for these classes./* //////////////////////////// PUBLIC //////////////////////////////////// */public:/* ============================ CREATORS ================================== *//* ============================ MANIPULATORS ============================== */ void setDisplay(const char*& string, int x, int y); //:Sets the display string at position (x, y). /* ============================ ACCESSORS ================================= */ int getDisplayRows(); //:Returns the display rows. int getDisplayColumns(); //:Returns the display columns. char* getDisplay(int x, int y); // returns the string displayed at (x, y)/* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// */protected:/* //////////////////////////// PRIVATE /////////////////////////////////// */private: PsTaoDisplay(const UtlString& rName, int initialState); //:Constructor virtual ~PsTaoDisplay(); //:Destructor PsTaoDisplay(); //:Default constructor (not implemented for this class) PsTaoDisplay(const PsTaoDisplay& rPsTaoDisplay); //:Copy constructor (not implemented for this class) PsTaoDisplay& operator=(const PsTaoDisplay& rhs); //:Assignment operator (not implemented for this class)};/* ============================ INLINE METHODS ============================ */#endif // _PsTaoDisplay_h_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -