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
28 #include "pluginclient.h"
42 class SvgWin : public PluginClientWindow
45 SvgWin(SvgMain *client);
48 void create_objects();
50 void update_gui(SvgConfig &config);
51 int hide_window(int flush = 1);
53 SvgCoord *out_x, *out_y, *out_w, *out_h;
55 DpiButton *dpi_button;
57 BC_Title *svg_file_title;
58 BC_Title *svg_file_mstime;
59 NewSvgButton *new_svg_button;
60 NewSvgWindow *new_svg_thread;
61 EditSvgButton *edit_svg_button;
67 class SvgCoord : public BC_TumbleTextBox
70 SvgCoord(SvgWin *win, SvgMain *client,
71 int x, int y, float *value);
81 class NewSvgButton : public BC_GenericButton, public Thread
84 NewSvgButton(SvgMain *client, SvgWin *window, int x, int y);
92 class EditSvgButton : public BC_GenericButton, public Thread
95 EditSvgButton(SvgMain *client, SvgWin *window, int x, int y);
106 class SvgInkscapeThread : public Thread
109 SvgInkscapeThread(EditSvgButton *edit);
110 ~SvgInkscapeThread();
115 class NewSvgWindow : public BC_FileBox
118 NewSvgWindow(SvgMain *client, SvgWin *window, char *init_directory);
124 class DpiValue : public BC_TumbleTextBox
127 DpiValue(SvgWin *win, SvgMain *client,
128 int x, int y, float *value);
138 class DpiButton : public BC_GenericButton
141 DpiButton( SvgWin *window, SvgMain *client, int x, int y);