r125: This commit was manufactured by cvs2svn to create tag 'r1_1_7-last'.
[cinelerra_cv/mob.git] / hvirtual / plugins / dot / dotwindow.C
blobfcc150306d93fb1ce5465f3cc3766d46b8bdbca6
1 #include "bcdisplayinfo.h"
2 #include "dotwindow.h"
4 #include <libintl.h>
5 #define _(String) gettext(String)
6 #define gettext_noop(String) String
7 #define N_(String) gettext_noop (String)
9 PLUGIN_THREAD_OBJECT(DotMain, DotThread, DotWindow)
16 DotWindow::DotWindow(DotMain *client, int x, int y)
17  : BC_Window(client->gui_string, 
18         x,
19         y,
20         300, 
21         170, 
22         300, 
23         170, 
24         0, 
25         0,
26         1)
27
28         this->client = client; 
31 DotWindow::~DotWindow()
35 int DotWindow::create_objects()
37         int x = 10, y = 10;
38         add_subwindow(new BC_Title(x, y, 
39                 _("DotTV from EffectTV\n"
40                 "Copyright (C) 2001 FUKUCHI Kentarou")
41         ));
43         show_window();
44         flush();
45         return 0;
48 int DotWindow::close_event()
50 // Set result to 1 to indicate a client side close
51         set_done(1);
52         return 1;