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
r1007: Make configure detect and work on amd64.
[cinelerra_cv/mob.git]
/
guicast
/
bcbar.h
blob
10a8d303da7cbc70c2d234854be60759e6e9266e
1
#ifndef BCBAR_H
2
#define BCBAR_H
3
4
5
#include
"bcsubwindow.h"
6
#include
"vframe.inc"
7
8
class
BC_Bar
:
public
BC_SubWindow
9
{
10
public
:
11
BC_Bar
(
int
x
,
int
y
,
int
w
,
VFrame
*
data
=
0
);
12
virtual
~
BC_Bar
();
13
14
int
initialize
();
15
void
set_image
(
VFrame
*
data
);
16
void
draw
();
17
int
reposition_window
(
int
x
,
int
y
,
int
w
);
18
int
resize_event
(
int
w
,
int
h
);
19
20
BC_Pixmap
*
image
;
21
VFrame
*
data
;
22
};
23
24
25
#endif