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

📄 psbuttoninfo.h

📁 基于sipfoundy 公司开发的sipx协议API
💻 H
字号:
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _PsButtonInfo_h_#define _PsButtonInfo_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include "os/OsTime.h"// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONS//:Phone set button informationclass PsButtonInfo{/* //////////////////////////// PUBLIC //////////////////////////////////// */public:   enum EventTypes   {      UNSPECIFIED   = 0,      BUTTON_DOWN   = 0x1,      BUTTON_UP     = 0x2,      KEY_DOWN      = 0x4,  //a key hit on NT      KEY_UP        = 0x8,      BUTTON_REPEAT = 0x16   };   enum ButtonState   {      UP,      DOWN   };/* ============================ CREATORS ================================== */   PsButtonInfo(int buttonId=-1,                                const char* name="",                                int eventMask=BUTTON_DOWN|BUTTON_UP,                const OsTime& repeatInterval=OsTime::OS_INFINITY);     //:Constructor   PsButtonInfo(const PsButtonInfo& rPsButtonInfo);     //:Copy constructor   virtual   ~PsButtonInfo();     //:Destructor/* ============================ MANIPULATORS ============================== */   PsButtonInfo& operator=(const PsButtonInfo& rhs);     //:Assignment operator   virtual void setState(int buttonState);     //:Set the button state to either UP or DOWN/* ============================ ACCESSORS ================================= */   virtual int getEventMask(void) const;     //:Return the set of event types that are being handled for this button   virtual int getId(void) const;     //:Return the button ID   virtual char* getName(void) const;     //:Return the button name   virtual void getRepInterval(OsTime& repeatIntvl) const;     //:Get the repeat interval for this button   virtual int getState(void) const;     //:Return the button state (UP or DOWN)/* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// */protected:/* //////////////////////////// PRIVATE /////////////////////////////////// */private:   char*  mpButtonName;   int    mButtonId;   int    mButtonState;   int    mEventMask;   OsTime mRepeatInterval;};/* ============================ INLINE METHODS ============================ */#endif  // _PsButtonInfo_h_

⌨️ 快捷键说明

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