1/*
2 * Copyright 2009, Axel D��rfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef POSITION_TOOL_TIP_H
6#define POSITION_TOOL_TIP_H
7
8
9#include <ToolTip.h>
10
11
12class PositionToolTip : public BToolTip {
13public:
14								PositionToolTip();
15	virtual						~PositionToolTip();
16
17	virtual BView*				View() const;
18
19	void						Update(bigtime_t position, bigtime_t duration);
20
21private:
22	class PositionView;
23
24	PositionView*				fView;
25};
26
27#endif	// POSITION_TOOL_TIP_H
28