fix plugins using libcolors
[cinelerra_cv/ct.git] / guicast / errorbox.C
blob6813ed6d53c251520bd4210ed2e7e94c12fb7912
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;
29 //      Local Variables:
30 //      mode: C++
31 //      c-file-style: "linux"
32 //      End: