]>
Dogcows Code - chaz/openbox/blob - src/Timer.h
2 // Copyright (c) 2001 Sean 'Shaleh' Perry <shaleh@debian.org>
3 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
26 #ifdef TIME_WITH_SYS_TIME
27 # include <sys/time.h>
29 #else // !TIME_WITH_SYS_TIME
30 # ifdef HAVE_SYS_TIME_H
31 # include <sys/time.h>
32 # else // !HAVE_SYS_TIME_H
34 # endif // HAVE_SYS_TIME_H
35 #endif // TIME_WITH_SYS_TIME
37 // forward declaration
42 class TimeoutHandler
{
44 virtual void timeout(void) = 0;
48 friend class BaseDisplay
;
51 TimeoutHandler
&handler
;
54 timeval _start
, _timeout
;
57 void fireTimeout(void);
60 BTimer(BaseDisplay
&, TimeoutHandler
&);
61 virtual ~BTimer(void);
63 inline const int &isTiming(void) const { return timing
; }
64 inline const int &doOnce(void) const { return once
; }
66 inline const timeval
&getTimeout(void) const { return _timeout
; }
67 inline const timeval
&getStartTime(void) const { return _start
; }
69 inline void fireOnce(int o
) { once
= o
; }
71 void setTimeout(long);
72 void setTimeout(timeval
);
This page took 0.045204 seconds and 4 git commands to generate.