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