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]
/
guicast
/
bcwindow.h
blob
51fd318c6a09c174e2d9b370a455beaa6ff96202
1
#ifndef BCWINDOW_H
2
#define BCWINDOW_H
3
4
#include
"bcwindowbase.h"
5
6
class
BC_Window
:
public
BC_WindowBase
7
{
8
public
:
9
BC_Window
(
char
*
title
,
10
int
x
,
11
int
y
,
12
int
w
,
13
int
h
,
14
int
minw
= -
1
,
15
int
minh
= -
1
,
16
int
allow_resize
=
1
,
17
int
private_color
=
0
,
18
int
hide
=
0
,
19
int
bg_color
= -
1
,
20
char
*
display_name
=
""
,
21
int
group_it
=
1
);
22
virtual
~
BC_Window
();
23
24
private
:
25
};
26
27
28
#endif
29
/*
30
// Local Variables:
31
// mode: C++
32
// c-file-style: "linux"
33
// End:
34
*/