r938: Make cinelerra actually read AVI DV+PCM it produces...
[cinelerra_cv/mob.git] / guicast / errorbox.C
blobd6bf8f7133395f9644d2dc4a2f2b7a0308321e07
1 #include "errorbox.h"
3 ErrorBox::ErrorBox(char *title, int x, int y, int w, int h)
4  : BC_Window(title, x, y, w, h, w, h, 0)
8 ErrorBox::~ErrorBox()
12 int ErrorBox::create_objects(char *text)
14         int x = 10, y = 10;
15         BC_Title *title;
17         add_subwindow(new BC_Title(get_w() / 2, 
18                 y, 
19                 text, 
20                 MEDIUMFONT, 
21                 get_resources()->default_text_color, 
22                 1));
23         x = get_w() / 2 - 30;
24         y = get_h() - 50;
25         add_tool(new BC_OKButton(x, y));
26         return 0;