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
r1015: Add a shortcut 'e' that toggles between selection and drag&drop edit modes.
[cinelerra_cv/ct.git]
/
guicast
/
errorbox.h
blob
d7e9166882f16679812497226ddd8b98dcc759f4
1
#ifndef ERRORBOX_H
2
#define ERRORBOX_H
3
4
#include
"guicast.h"
5
6
class
ErrorBox
:
public
BC_Window
7
{
8
public
:
9
ErrorBox
(
char
*
title
,
10
int
x
= (
int
)
BC_INFINITY
,
11
int
y
= (
int
)
BC_INFINITY
,
12
int
w
=
400
,
13
int
h
=
120
);
14
virtual
~
ErrorBox
();
15
16
int
create_objects
(
char
*
text
);
17
};
18
19
#endif
20