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