4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
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.
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.
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
22 #include "bcdisplayinfo.h"
24 #include "sharpenwindow.h"
35 SharpenWindow::SharpenWindow(SharpenMain *client)
36 : PluginClientWindow(client, 230, 195, 230, 195, 0) //195 was 150
38 this->client = client;
41 SharpenWindow::~SharpenWindow()
45 void SharpenWindow::create_objects()
48 add_tool(new BC_Title(x, y, _("Sharpness")));
50 add_tool(sharpen_slider = new SharpenSlider(client, &(client->config.sharpness), x, y));
52 add_tool(sharpen_interlace = new SharpenInterlace(client, x, y));
54 add_tool(sharpen_horizontal = new SharpenHorizontal(client, x, y));
56 add_tool(sharpen_luminance = new SharpenLuminance(client, x, y));
58 add_tool(reset = new SharpenReset(client, this, x, y));
63 void SharpenWindow::update()
65 sharpen_slider->update(client->config.sharpness);
66 sharpen_interlace->update(client->config.interlace);
67 sharpen_horizontal->update(client->config.horizontal);
68 sharpen_luminance->update(client->config.luminance);
71 SharpenSlider::SharpenSlider(SharpenMain *client, float *output, int x, int y)
84 this->client = client;
85 this->output = output;
87 SharpenSlider::~SharpenSlider()
90 int SharpenSlider::handle_event()
92 *output = get_value();
93 client->send_configure_change();
98 SharpenInterlace::SharpenInterlace(SharpenMain *client, int x, int y)
99 : BC_CheckBox(x, y, client->config.interlace, _("Interlace"))
101 this->client = client;
103 SharpenInterlace::~SharpenInterlace()
106 int SharpenInterlace::handle_event()
108 client->config.interlace = get_value();
109 client->send_configure_change();
114 SharpenHorizontal::SharpenHorizontal(SharpenMain *client, int x, int y)
115 : BC_CheckBox(x, y, client->config.horizontal, _("Horizontal only"))
117 this->client = client;
119 SharpenHorizontal::~SharpenHorizontal()
122 int SharpenHorizontal::handle_event()
124 client->config.horizontal = get_value();
125 client->send_configure_change();
130 SharpenLuminance::SharpenLuminance(SharpenMain *client, int x, int y)
131 : BC_CheckBox(x, y, client->config.luminance, _("Luminance only"))
133 this->client = client;
135 SharpenLuminance::~SharpenLuminance()
138 int SharpenLuminance::handle_event()
140 client->config.luminance = get_value();
141 client->send_configure_change();
146 SharpenReset::SharpenReset(SharpenMain *client, SharpenWindow *gui, int x, int y)
147 : BC_GenericButton(x, y, _("Reset"))
149 this->client = client;
152 SharpenReset::~SharpenReset()
155 int SharpenReset::handle_event()
157 client->config.reset();
159 client->send_configure_change();