Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Spinner.h
Package: VC++practise.rar [view]
Upload User: z_mail1980
Upload Date: 2007-06-01
Package Size: 647k
Code Size: 1k
Category:
SNMP
Development Platform:
Visual C++
- // Spinner.h: interface for the CSpinner class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_SPINNER_H__E9069FF4_8D25_4B46_A782_0BAA7D8E68C6__INCLUDED_)
- #define AFX_SPINNER_H__E9069FF4_8D25_4B46_A782_0BAA7D8E68C6__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CSpinner : public CObject
- {
- public:
- void Draw();
- BOOL *GetContinue(){return m_bContinue;}
- void SetContinue(BOOL *bContinue){m_bContinue=bContinue;}
- CWnd *GetViewWnd(){return m_pViewWnd;}
- void SetViewWnd(CWnd *pWnd){m_pViewWnd=pWnd;}
- void SetLength(int iLength){m_iRadius=iLength;}
- void SetPoint(CPoint pPoint){m_pCenter=pPoint;}
- CSpinner();
- virtual ~CSpinner();
- private:
- int m_crColor;
- int m_nMinute;
- int m_iRadius;
- CPoint m_pCenter;
- static COLORREF m_crColors[8];
- CWnd *m_pViewWnd;
- BOOL *m_bContinue;
- };
- #endif // !defined(AFX_SPINNER_H__E9069FF4_8D25_4B46_A782_0BAA7D8E68C6__INCLUDED_)