Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        timer.h
 | |
| // Purpose:     wxTimer class
 | |
| // Author:      Julian Smart
 | |
| // Modified by:
 | |
| // Created:     01/02/97
 | |
| // RCS-ID:      $Id: timer.h 41020 2006-09-05 20:47:48Z VZ $
 | |
| // Copyright:   (c) Julian Smart
 | |
| // Licence:     wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_TIMER_H_
 | |
| #define _WX_TIMER_H_
 | |
| 
 | |
| class WXDLLEXPORT wxTimer : public wxTimerBase
 | |
| {
 | |
| friend void wxProcessTimer(wxTimer& timer);
 | |
| 
 | |
| public:
 | |
|     wxTimer() { Init(); }
 | |
|     wxTimer(wxEvtHandler *owner, int id = wxID_ANY) : wxTimerBase(owner, id)
 | |
|         { Init(); }
 | |
|     virtual ~wxTimer();
 | |
| 
 | |
|     virtual bool Start(int milliseconds = -1, bool oneShot = false);
 | |
|     virtual void Stop();
 | |
| 
 | |
|     virtual bool IsRunning() const { return m_id != 0; }
 | |
| 
 | |
| protected:
 | |
|     void Init();
 | |
| 
 | |
|     unsigned long m_id;
 | |
| 
 | |
| private:
 | |
|     DECLARE_DYNAMIC_CLASS_NO_COPY(wxTimer)
 | |
| };
 | |
| 
 | |
| #endif
 | |
|     // _WX_TIMERH_
 |