repo.or.cz
/
cinelerra_cv
/
ct.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git]
/
cinelerra
/
ctimebar.h
blob
2b06e0f2441e41955894ecbf1f571f11d8edd105
1
#ifndef CTIMEBAR_H
2
#define CTIMEBAR_H
3
4
5
6
7
#include
"cwindowgui.inc"
8
#include
"timebar.h"
9
10
11
12
13
14
class
CTimeBar
:
public
TimeBar
15
{
16
public
:
17
CTimeBar
(
MWindow
*
mwindow
,
18
CWindowGUI
*
gui
,
19
int
x
,
20
int
y
,
21
int
w
,
22
int
h
);
23
24
int
resize_event
();
25
EDL
*
get_edl
();
26
void
draw_time
();
27
void
update_preview
();
28
void
select_label
(
double
position
);
29
30
CWindowGUI
*
gui
;
31
};
32
33
34
#endif
35
/*
36
// Local Variables:
37
// mode: C++
38
// c-file-style: "linux"
39
// End:
40
*/