r370: Heroine Virutal's official release 1.2.1
[cinelerra_cv/mob.git] / hvirtual / plugins / holo / holowindow.C
blob425d50afe3a7c458c78675a72f5804602ad60eab
1 #include "bcdisplayinfo.h"
2 #include "language.h"
3 #include "holowindow.h"
7 PLUGIN_THREAD_OBJECT(HoloMain, HoloThread, HoloWindow)
12 HoloWindow::HoloWindow(HoloMain *client, int x, int y)
13  : BC_Window(client->gui_string, 
14         x,
15         y,
16         300, 
17         170, 
18         300, 
19         170, 
20         0, 
21         0,
22         1)
23
24         this->client = client; 
27 HoloWindow::~HoloWindow()
31 int HoloWindow::create_objects()
33         int x = 10, y = 10;
34         add_subwindow(new BC_Title(x, y, 
35                 _("HolographicTV from EffectTV\n"
36                 "Copyright (C) 2001 FUKUCHI Kentarou")
37         ));
39         show_window();
40         flush();
41         return 0;
44 WINDOW_CLOSE_EVENT(HoloWindow)