add layout_scale preference, scaling cleanup, rework init bc_resources, init tip_info...
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / edge / edgewindow.C
1 /*
2  * CINELERRA
3  * Copyright (C) 2014 Adam Williams <broadcast at earthling dot net>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  */
20
21 #include "bcdisplayinfo.h"
22 #include "clip.h"
23 #include "language.h"
24 #include "edge.h"
25 #include "edgewindow.h"
26 #include "theme.h"
27
28 EdgeWindow::EdgeWindow(Edge *plugin)
29  : PluginClientWindow(plugin,
30         xS(320),
31         yS(70),
32         xS(320),
33         yS(70),
34         0)
35 {
36         this->plugin = plugin;
37 }
38
39 EdgeWindow::~EdgeWindow()
40 {
41 }
42
43 void EdgeWindow::create_objects()
44 {
45         int x = xS(10), y = yS(10);
46         int margin = plugin->get_theme()->widget_border;
47         BC_Title *title;
48
49
50
51         add_subwindow(title = new BC_Title(x,
52                 y,
53                 _("Amount:")));
54         y += title->get_h() + margin;
55         add_subwindow(amount = new EdgeAmount(this,
56                 x,
57                 y,
58                 get_w() - x * 2));
59         y += amount->get_h() + margin;
60
61         show_window(1);
62 }
63
64
65
66
67
68
69
70 EdgeAmount::EdgeAmount(EdgeWindow *gui,
71         int x,
72         int y,
73         int w)
74  : BC_ISlider(x,
75         y,
76         0,
77         w,
78         w,
79         0,
80         10,
81         gui->plugin->config.amount,
82         0)
83 {
84         this->gui = gui;
85 }
86
87 int EdgeAmount::handle_event()
88 {
89         gui->plugin->config.amount = get_value();
90         gui->plugin->send_configure_change();
91         return 1;
92 }
93
94
95
96
97
98