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 12 class PositionToolTip : public BToolTip { 13 public: 14 PositionToolTip(); 15 virtual ~PositionToolTip(); 16 17 virtual BView* View() const; 18 19 void Update(bigtime_t position, bigtime_t duration); 20 21 private: 22 class PositionView; 23 24 PositionView* fView; 25 }; 26 27 #endif // POSITION_TOOL_TIP_H 28