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"
23 #include "bcsignals.h"
25 #include "mainerror.h"
26 #include "mainsession.h"
35 MainError* MainError::main_error = 0;
42 MainErrorGUI::MainErrorGUI(MWindow *mwindow, MainError *thread, int x, int y)
43 : BC_Window(_(PROGRAM_NAME ": Errors"),
46 mwindow->session->ewindow_w,
47 mwindow->session->ewindow_h,
57 this->mwindow = mwindow;
58 this->thread = thread;
61 MainErrorGUI::~MainErrorGUI()
65 void MainErrorGUI::create_objects()
70 add_subwindow(button = new BC_OKButton(this));
73 add_subwindow(title = new BC_Title(x, y, _("The following errors occurred:")));
74 y += title->get_h() + 5;
76 add_subwindow(list = new BC_ListBox(x,
79 button->get_y() - y - 5,
80 LISTBOX_TEXT, // Display text list or icons
81 &thread->errors, // Each column has an ArrayList of BC_ListBoxItems.
82 0, // Titles for columns. Set to 0 for no titles
83 0, // width of each column
84 1, // Total columns. Only 1 in icon mode
85 0, // Pixel of top of window.
86 0, // If this listbox is a popup window with a button
87 LISTBOX_SINGLE, // Select one item or multiple items
88 ICON_LEFT, // Position of icon relative to text of each item
95 int MainErrorGUI::resize_event(int w, int h)
97 title->reposition_window(title->get_x(), title->get_y());
100 (get_h() - list->get_y() - list->get_h());
103 (get_w() - list->get_x() - list->get_w());
104 list->reposition_window(list->get_x(),
108 mwindow->session->ewindow_w = w;
109 mwindow->session->ewindow_h = h;
118 MainError::MainError(MWindow *mwindow)
121 this->mwindow = mwindow;
122 errors_lock = new Mutex("MainError::errors_lock");
126 MainError::~MainError()
132 BC_Window* MainError::new_gui()
134 BC_DisplayInfo display_info;
135 int x = display_info.get_abs_cursor_x();
136 int y = display_info.get_abs_cursor_y();
138 MainErrorGUI *gui = new MainErrorGUI(mwindow, this, x, y);
139 gui->create_objects();
143 void MainError::append_error(const char *string)
145 const char *in_ptr = string;
146 char string2[BCTEXTLEN];
150 char *out_ptr = string2;
151 // Indent remaining lines
158 while(*in_ptr != '\n' &&
161 *out_ptr++ = *in_ptr++;
165 errors.append(new BC_ListBoxItem(string2));
175 void MainError::show_error_local(const char *string)
178 // assume user won't get to closing the GUI here
179 lock_window("MainError::show_error_local");
184 MainErrorGUI *gui = (MainErrorGUI*)get_gui();
185 gui->lock_window("MainError::show_error_local");
187 append_error(string);
189 gui->list->update(&errors,
193 gui->list->get_xposition(),
194 gui->list->get_yposition(),
195 gui->list->get_highlighted_item(), // Flat index of item cursor is over
196 0, // set all autoplace flags to 1
199 gui->unlock_window();
209 errors.remove_all_objects();
211 append_error(string);
219 void MainError::show_error(const char *string)
222 main_error->show_error_local(string);
225 printf("%s", string);
226 if(string[strlen(string) - 1] != '\n')