r1008: pt_BR translation update
[cinelerra_cv/mob.git] / plugins / dot / dotwindow.C
blob59de3b3ca9bd9a0f58358a24d3724f72f142ad62
1 #include "bcdisplayinfo.h"
2 #include "dotwindow.h"
3 #include "language.h"
4 #include "pluginclient.h"
6 PLUGIN_THREAD_OBJECT(DotMain, DotThread, DotWindow)
13 DotWindow::DotWindow(DotMain *client, int x, int y)
14  : BC_Window(client->gui_string, 
15         x,
16         y,
17         300, 
18         170, 
19         300, 
20         170, 
21         0, 
22         0,
23         1)
24
25         this->client = client; 
28 DotWindow::~DotWindow()
32 int DotWindow::create_objects()
34         int x = 10, y = 10;
35         add_subwindow(new BC_Title(x, y, 
36                 _("DotTV from EffectTV\n"
37                 "Copyright (C) 2001 FUKUCHI Kentarou")
38         ));
40         show_window();
41         flush();
42         return 0;
45 WINDOW_CLOSE_EVENT(DotWindow)