f4bd9c0bc585e3432943897768500060aa913406
[goodguy/history.git] / cinelerra-5.1 / plugins / polar / polarwindow.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #include "language.h"
23 #include "polarwindow.h"
24
25
26 PLUGIN_THREAD_OBJECT(PolarMain, PolarThread, PolarWindow)
27
28
29
30
31
32
33
34 PolarWindow::PolarWindow(PolarMain *client)
35  : BC_Window("",
36         MEGREY,
37         client->gui_string,
38         210,
39         120,
40         200,
41         120,
42         0,
43         !client->show_initially)
44 {
45         this->client = client;
46 }
47
48 PolarWindow::~PolarWindow()
49 {
50         delete depth_slider;
51         delete angle_slider;
52         delete automation[0];
53         delete automation[1];
54 }
55
56 int PolarWindow::create_objects()
57 {
58         int x = 10, y = 10;
59         add_tool(new BC_Title(x, y, _("Depth")));
60         add_tool(automation[0] = new AutomatedFn(client, this, x + 80, y, 0));
61         y += 20;
62         add_tool(depth_slider = new DepthSlider(client, x, y));
63         y += 35;
64         add_tool(new BC_Title(x, y, _("Angle")));
65         add_tool(automation[1] = new AutomatedFn(client, this, x + 80, y, 1));
66         y += 20;
67         add_tool(angle_slider = new AngleSlider(client, x, y));
68 }
69
70 int PolarWindow::close_event()
71 {
72         client->save_defaults();
73         hide_window();
74         client->send_hide_gui();
75 }
76
77 DepthSlider::DepthSlider(PolarMain *client, int x, int y)
78  : BC_ISlider(x, y, 190, 30, 200, client->depth, 0, MAXDEPTH, DKGREY, BLACK, 1)
79 {
80         this->client = client;
81 }
82 DepthSlider::~DepthSlider()
83 {
84 }
85 int DepthSlider::handle_event()
86 {
87         client->depth = get_value();
88         client->send_configure_change();
89 }
90
91 AngleSlider::AngleSlider(PolarMain *client, int x, int y)
92  : BC_ISlider(x, y, 190, 30, 200, client->angle, 0, MAXANGLE, DKGREY, BLACK, 1)
93 {
94         this->client = client;
95 }
96 AngleSlider::~AngleSlider()
97 {
98 }
99 int AngleSlider::handle_event()
100 {
101         client->angle = get_value();
102         client->send_configure_change();
103 }
104
105 AutomatedFn::AutomatedFn(PolarMain *client, PolarWindow *window, int x, int y, int number)
106  : BC_CheckBox(x, y, 16, 16, client->automated_function == number, _("Automate"))
107 {
108         this->client = client;
109         this->window = window;
110         this->number = number;
111 }
112
113 AutomatedFn::~AutomatedFn()
114 {
115 }
116
117 int AutomatedFn::handle_event()
118 {
119         for(int i = 0; i < 2; i++)
120         {
121                 if(i != number) window->automation[i]->update(0);
122         }
123         update(1);
124         client->automated_function = number;
125         client->send_configure_change();
126 }
127