00001 #include "bcdisplayinfo.h"
00002 #include "language.h"
00003 #include "holowindow.h"
00004
00005
00006
00007 PLUGIN_THREAD_OBJECT(HoloMain, HoloThread, HoloWindow)
00008
00009
00010
00011
00012 HoloWindow::HoloWindow(HoloMain *client, int x, int y)
00013 : BC_Window(client->gui_string,
00014 x,
00015 y,
00016 300,
00017 170,
00018 300,
00019 170,
00020 0,
00021 0,
00022 1)
00023 {
00024 this->client = client;
00025 }
00026
00027 HoloWindow::~HoloWindow()
00028 {
00029 }
00030
00031 int HoloWindow::create_objects()
00032 {
00033 int x = 10, y = 10;
00034 add_subwindow(new BC_Title(x, y,
00035 _("HolographicTV from EffectTV\n"
00036 "Copyright (C) 2001 FUKUCHI Kentarou")
00037 ));
00038
00039 show_window();
00040 flush();
00041 return 0;
00042 }
00043
00044 WINDOW_CLOSE_EVENT(HoloWindow)
00045
00046
00047
00048
00049