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 / bcwindow.C < prev    next >
C/C++ Source or Header  |  2000-11-29  |  514b  |  42 lines

  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.  : BC_WindowBase()
  19. {
  20.     create_window(0,
  21.                 title, 
  22.                 x,
  23.                 y,
  24.                 w, 
  25.                 h, 
  26.                 (minw < 0) ? w : minw, 
  27.                 (minh < 0) ? h : minh, 
  28.                 allow_resize,
  29.                 private_color, 
  30.                 hide,
  31.                 bg_color,
  32.                 display_name,
  33.                 MAIN_WINDOW,
  34.                 0);
  35. }
  36.  
  37.  
  38. BC_Window::~BC_Window()
  39. {
  40. }
  41.  
  42.