repo.or.cz
/
cinelerra_cv.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r827: Fix a crash when no audio output device can be opened.
[cinelerra_cv.git]
/
cinelerra
/
vtimebar.h
blob
85d2e8c96b7a8acb3c4e513d987897d81d775427
1
#ifndef VTIMEBAR_H
2
#define VTIMEBAR_H
3
4
5
#include
"timebar.h"
6
#include
"vwindowgui.inc"
7
8
class
VTimeBar
:
public
TimeBar
9
{
10
public
:
11
VTimeBar
(
MWindow
*
mwindow
,
12
VWindowGUI
*
gui
,
13
int
x
,
14
int
y
,
15
int
w
,
16
int
h
);
17
18
int
resize_event
();
19
EDL
*
get_edl
();
20
void
draw_time
();
21
void
update_preview
();
22
void
select_label
(
double
position
);
23
24
25
VWindowGUI
*
gui
;
26
};
27
28
29
#endif