Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / cinelerra / mtimebar.h
bloba5af232ceab524facafd0bd3e9548c699bf55558
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
34 // Local Variables:
35 // mode: C++
36 // c-file-style: "linux"
37 // End: