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 / bcpopup.C < prev    next >
C/C++ Source or Header  |  2000-11-29  |  437b  |  38 lines

  1. #include "bcpopup.h"
  2.  
  3.  
  4.  
  5.  
  6. BC_Popup::BC_Popup(BC_WindowBase *parent_window, 
  7.                 int x,
  8.                 int y,
  9.                 int w, 
  10.                 int h, 
  11.                 int bg_color,
  12.                 int hide,
  13.                 BC_Pixmap *bg_pixmap)
  14.  : BC_WindowBase()
  15. {
  16.     create_window(parent_window,
  17.                 "", 
  18.                 x,
  19.                 y,
  20.                 w, 
  21.                 h, 
  22.                 w, 
  23.                 h, 
  24.                 0,
  25.                 parent_window->top_level->private_color, 
  26.                 hide,
  27.                 bg_color,
  28.                 NULL,
  29.                 POPUP_WINDOW,
  30.                 bg_pixmap);
  31. }
  32.  
  33.  
  34. BC_Popup::~BC_Popup()
  35. {
  36. }
  37.  
  38.