00001 #include "bcwindow.h"
00002
00003
00004
00005
00006 BC_Window::BC_Window(char *title,
00007 int x,
00008 int y,
00009 int w,
00010 int h,
00011 int minw,
00012 int minh,
00013 int allow_resize,
00014 int private_color,
00015 int hide,
00016 int bg_color,
00017 char *display_name,
00018 int group_it)
00019 : BC_WindowBase()
00020 {
00021 create_window(0,
00022 title,
00023 x,
00024 y,
00025 w,
00026 h,
00027 (minw < 0) ? w : minw,
00028 (minh < 0) ? h : minh,
00029 allow_resize,
00030 private_color,
00031 hide,
00032 bg_color,
00033 display_name,
00034 MAIN_WINDOW,
00035 0,
00036 group_it);
00037 }
00038
00039
00040 BC_Window::~BC_Window()
00041 {
00042 }
00043