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.C
blob
9f093567426a4395b23b483f616db7ab12a64abd
1
#include "bcwindow.h"
2
3
4
5
6
BC_Window::BC_Window(char *title,
7
int x,
8
int y,
9
int w,
10
int h,
11
int minw,
12
int minh,
13
int allow_resize,
14
int private_color,
15
int hide,
16
int bg_color,
17
char *display_name,
18
int group_it)
19
: BC_WindowBase()
20
{
21
create_window(0,
22
title,
23
x,
24
y,
25
w,
26
h,
27
(minw < 0) ? w : minw,
28
(minh < 0) ? h : minh,
29
allow_resize,
30
private_color,
31
hide,
32
bg_color,
33
display_name,
34
MAIN_WINDOW,
35
0,
36
group_it);
37
}
38
39
40
BC_Window::~BC_Window()
41
{
42
}
43
44
/*
45
// Local Variables:
46
// mode: C++
47
// c-file-style: "linux"
48
// End:
49
*/