File: timerhandler.h

package info (click to toggle)
amoeba 1.1-26
  • links: PTS
  • area: contrib
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 1,256 kB
  • ctags: 1,561
  • sloc: cpp: 8,315; makefile: 173
file content (21 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _TIMERHANDLER_H
#define _TIMERHANDLER_H

#include "main/event.h"
#include "main/mainloop.h"
#include "opengl/texture.h"

class TimerHandler : public Event {
public:
	TimerHandler(MainLoop *ml, const char *title, const char *elem, Hashtable *attr);
	~TimerHandler();

	void start_effect();
	void draw_scene(float progress);
	void end_effect();

protected:
	Texture *digits;
};

#endif /* defined(_TIMERHANDLER_H) */