4 * Copyright (C) 2010 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
30 #include "filexml.inc"
47 class BlurWindow : public PluginClientWindow
50 BlurWindow(BlurMain *client);
53 void create_objects();
57 BlurVertical *vertical;
58 BlurHorizontal *horizontal;
60 BlurRadiusText *radius_text;
69 class BlurAKey : public BC_CheckBox
72 BlurAKey(BlurMain *client, int x, int y);
77 class BlurA : public BC_CheckBox
80 BlurA(BlurMain *client, int x, int y);
84 class BlurR : public BC_CheckBox
87 BlurR(BlurMain *client, int x, int y);
91 class BlurG : public BC_CheckBox
94 BlurG(BlurMain *client, int x, int y);
98 class BlurB : public BC_CheckBox
101 BlurB(BlurMain *client, int x, int y);
107 class BlurRadius : public BC_IPot
110 BlurRadius(BlurMain *client, BlurWindow *gui, int x, int y);
117 class BlurRadiusText : public BC_TextBox
120 BlurRadiusText(BlurMain *client, BlurWindow *gui, int x, int y, int w);
126 class BlurVertical : public BC_CheckBox
129 BlurVertical(BlurMain *client, BlurWindow *window, int x, int y);
137 class BlurHorizontal : public BC_CheckBox
140 BlurHorizontal(BlurMain *client, BlurWindow *window, int x, int y);
148 class BlurReset : public BC_GenericButton
151 BlurReset(BlurMain *client, BlurWindow *window, int x, int y);