repo.or.cz
/
cinelerra_cv
/
mob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r105: This commit was manufactured by cvs2svn to create tag
[cinelerra_cv/mob.git]
/
hvirtual
/
cinelerra
/
mtimebar.h
blob
b9a0319d85b4d67bcc32ed20d80fc87ebe10a7c9
1
#ifndef MTIMEBAR_H
2
#define MTIMEBAR_H
3
4
5
#include
"mwindowgui.inc"
6
#include
"timebar.h"
7
8
9
class
MTimeBar
:
public
TimeBar
10
{
11
public
:
12
MTimeBar
(
MWindow
*
mwindow
,
13
MWindowGUI
*
gui
,
14
int
x
,
15
int
y
,
16
int
w
,
17
int
h
);
18
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
);
26
27
MWindowGUI
*
gui
;
28
};
29
30
31
32
#endif