r105: This commit was manufactured by cvs2svn to create tag
[cinelerra_cv/mob.git] / hvirtual / cinelerra / mtimebar.h
blobb9a0319d85b4d67bcc32ed20d80fc87ebe10a7c9
1 #ifndef MTIMEBAR_H
2 #define MTIMEBAR_H
5 #include "mwindowgui.inc"
6 #include "timebar.h"
9 class MTimeBar : public TimeBar
11 public:
12 MTimeBar(MWindow *mwindow,
13 MWindowGUI *gui,
14 int x,
15 int y,
16 int w,
17 int h);
19 void draw_time();
20 void draw_range();
21 void stop_playback();
22 int resize_event();
23 int test_preview(int buttonpress);
24 int64_t position_to_pixel(double position);
25 void select_label(double position);
27 MWindowGUI *gui;
32 #endif