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
26 #include "loadmode.inc"
27 #include "mwindow.inc"
30 class LoadModeItem : public BC_ListBoxItem
33 LoadModeItem(const char *text, int value);
37 class LoadModeToggle : public BC_Toggle
40 LoadModeToggle(int x, int y, LoadMode *window, int value,
41 int *output, const char *images, const char *tooltip);
50 LoadMode(MWindow *mwindow, BC_WindowBase *window,
51 int x, int y, int *load_mode, int *edl_mode=0,
52 int use_nothing=1, int line_wrap=0);
54 void create_objects();
55 int reposition_window(int x, int y);
56 static void load_mode_geometry(BC_WindowBase *gui, Theme *theme,
57 int use_nothing, int use_nested, int line_wrap,
59 static int calculate_w(BC_WindowBase *gui, Theme *theme,
60 int use_nothing=1, int use_nested=0, int line_wrap=0);
61 static int calculate_h(BC_WindowBase *gui, Theme *theme,
62 int use_nothing=1, int use_nested=0, int line_wrap=0);
67 const char *mode_to_text(int mode);
69 int set_line_wrap(int v);
71 BC_Title *load_title, *edl_title;
73 LoadModeListBox *listbox;
75 BC_WindowBase *window;
76 int x, y, *load_mode, *edl_mode;
77 int use_nothing, line_wrap;
78 LoadModeToggle *mode[TOTAL_LOADMODES];
79 ArrayList<LoadModeItem*> load_modes;
82 class LoadModeListBox : public BC_ListBox
85 LoadModeListBox(BC_WindowBase *window, LoadMode *loadmode, int x, int y);
90 BC_WindowBase *window;