labels follow edits fix, group only ungrouped edits, add reset to 7 plugins, add...
[goodguy/cinelerra.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         return 1;
76 }
77
78 DepthSlider::DepthSlider(PolarMain *client, int x, int y)
79  : BC_ISlider(x, y, 190, 30, 200, client->depth, 0, MAXDEPTH, DKGREY, BLACK, 1)
80 {
81         this->client = client;
82 }
83 DepthSlider::~DepthSlider()
84 {
85 }
86 int DepthSlider::handle_event()
87 {
88         client->depth = get_value();
89         client->send_configure_change();
90         return 1;
91 }
92
93 AngleSlider::AngleSlider(PolarMain *client, int x, int y)
94  : BC_ISlider(x, y, 190, 30, 200, client->angle, 0, MAXANGLE, DKGREY, BLACK, 1)
95 {
96         this->client = client;
97 }
98 AngleSlider::~AngleSlider()
99 {
100 }
101 int AngleSlider::handle_event()
102 {
103         client->angle = get_value();
104         client->send_configure_change();
105         return 1;
106 }
107
108 AutomatedFn::AutomatedFn(PolarMain *client, PolarWindow *window, int x, int y, int number)
109  : BC_CheckBox(x, y, 16, 16, client->automated_function == number, _("Automate"))
110 {
111         this->client = client;
112         this->window = window;
113         this->number = number;
114 }
115
116 AutomatedFn::~AutomatedFn()
117 {
118 }
119
120 int AutomatedFn::handle_event()
121 {
122         for(int i = 0; i < 2; i++)
123         {
124                 if(i != number) window->automation[i]->update(0);
125         }
126         update(1);
127         client->automated_function = number;
128         client->send_configure_change();
129         return 1;
130 }
131