home *** CD-ROM | disk | FTP | other *** search
/ Geek 6 / Geek-006.iso / linux / video / xmovie-1.5.3.tar.gz / xmovie-1.5.3.tar / xmovie-1.5.3 / guicast / errorbox.C < prev    next >
C/C++ Source or Header  |  2000-11-29  |  402b  |  23 lines

  1. #include "errorbox.h"
  2.  
  3. ErrorBox::ErrorBox(char *title, int x, int y, int w, int h)
  4.  : BC_Window(title, x, y, w, h, w, h, 0)
  5. {
  6. }
  7.  
  8. ErrorBox::~ErrorBox()
  9. {
  10. }
  11.  
  12. int ErrorBox::create_objects(char *text)
  13. {
  14.     int x = 10, y = 10;
  15.     BC_Title *title;
  16.  
  17.     add_subwindow(new BC_Title(get_w() / 2, y, text, MEDIUMFONT, BLACK, 1));
  18.     x = get_w() / 2 - 30;
  19.     y = get_h() - 50;
  20.     add_tool(new BC_OKButton(x, y));
  21.     return 0;
  22. }
  23.