1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #if !defined(AFX_LED_H__BABC9426_EF66_49D5_B54F_EA10DD7A0344__INCLUDED_)
- #define AFX_LED_H__BABC9426_EF66_49D5_B54F_EA10DD7A0344__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // Led.h : header file
- //
- #define LED_SIZE 16 // Led are 16 X 16 pixels
- /////////////////////////////////////////////////////////////////////////////
- // CLed window
- class CLed : public CStatic
- {
- protected:
- int m_nLedColor, m_nLedMode, m_nLedShape;
- DWORD m_dwPingTimeout;
- BOOL m_bPingEnabled;
- CBitmap m_LedBitmap;
- public:
-
- enum {
- LED_ROUND = 0, // Circle starts at row 0
- LED_SQUARE = LED_SIZE * 4, // squares start at row 4
- };
- enum {
- LED_COLOR_RED = 0 * LED_SIZE, // Row 0
- LED_COLOR_GREEN = 1 * LED_SIZE, // Row 1
- LED_COLOR_YELLOW = 2 * LED_SIZE, // Row 2
- LED_COLOR_BLUE = 3 * LED_SIZE, // Row 3
- };
- enum {
- LED_ON = 0, // Column 0
- LED_OFF = 1, // Column 1
- LED_DISABLED = 2, // Column 2
- };
- // Construction
- public:
- CLed();
- // Attributes
- public:
- // Operations
- public:
- void SetLed(int nLedColor, int nMode, int nShape);
- int GetLedMode(){return m_nLedMode;}
- void Ping(DWORD dwTimeout = 1000);
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CLed)
- //}}AFX_VIRTUAL
- // Implementation
- public:
- void DrawLed( CDC *pDC, int nLEDColor, int nMode, int nShape );
- virtual ~CLed();
- // Generated message map functions
- protected:
- //{{AFX_MSG(CLed)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
- afx_msg void OnPaint();
- afx_msg void OnTimer(UINT nIDEvent);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_LED_H__BABC9426_EF66_49D5_B54F_EA10DD7A0344__INCLUDED_)
|