add fileppm, fix renderfarm/brender deadlock, fix audio meters, add gbrp + cin_pix_fm...
[goodguy/history.git] / cinelerra-5.1 / cinelerra / mainerror.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #include "bcdisplayinfo.h"
23 #include "bcsignals.h"
24 #include "language.h"
25 #include "mainerror.h"
26 #include "mainsession.h"
27 #include "mutex.h"
28 #include "mwindow.h"
29
30 #include <string.h>
31
32
33
34
35 MainError* MainError::main_error = 0;
36
37
38
39
40
41
42 MainErrorGUI::MainErrorGUI(MWindow *mwindow, MainError *thread, int x, int y)
43  : BC_Window(_(PROGRAM_NAME ": Errors"),
44         x,
45         y,
46         mwindow->session->ewindow_w,
47         mwindow->session->ewindow_h,
48         50,
49         50,
50         1,
51         0,
52         1,
53         -1,
54         "",
55         1)
56 {
57         this->mwindow = mwindow;
58         this->thread = thread;
59 }
60
61 MainErrorGUI::~MainErrorGUI()
62 {
63 }
64
65 void MainErrorGUI::create_objects()
66 {
67
68         BC_Button *button;
69         add_subwindow(button = new BC_OKButton(this));
70         int x = 10, y = 10;
71         add_subwindow(title = new BC_Title(x, y, _("The following errors occurred:")));
72         y += title->get_h() + 5;
73         add_subwindow(list = new BC_ListBox(x,
74                 y,
75                 get_w() - 20,
76                 button->get_y() - y - 5,
77                 LISTBOX_TEXT,                   // Display text list or icons
78                 &thread->errors, // Each column has an ArrayList of BC_ListBoxItems.
79                 0,             // Titles for columns.  Set to 0 for no titles
80                 0,                // width of each column
81                 1,                      // Total columns.  Only 1 in icon mode
82                 0,                    // Pixel of top of window.
83                 0,                     // If this listbox is a popup window with a button
84                 LISTBOX_SINGLE,  // Select one item or multiple items
85                 ICON_LEFT,        // Position of icon relative to text of each item
86                 0));
87         show_window();
88 }
89
90 int MainErrorGUI::resize_event(int w, int h)
91 {
92         title->reposition_window(title->get_x(), title->get_y());
93         int list_h = h -
94                 list->get_y() -
95                 (get_h() - list->get_y() - list->get_h());
96         int list_w = w -
97                 list->get_x() -
98                 (get_w() - list->get_x() - list->get_w());
99         list->reposition_window(list->get_x(),
100                 list->get_y(),
101                 list_w,
102                 list_h);
103         mwindow->session->ewindow_w = w;
104         mwindow->session->ewindow_h = h;
105         return 1;
106 }
107
108
109
110
111
112
113 MainError::MainError(MWindow *mwindow)
114  : BC_DialogThread()
115 {
116         this->mwindow = mwindow;
117         errors_lock = new Mutex("MainError::errors_lock");
118         main_error = this;
119 }
120
121 MainError::~MainError()
122 {
123         close_window();
124         errors.remove_all_objects();
125         delete errors_lock;
126 }
127
128 BC_Window* MainError::new_gui()
129 {
130         BC_DisplayInfo display_info;
131         int x = display_info.get_abs_cursor_x();
132         int y = display_info.get_abs_cursor_y();
133
134         MainErrorGUI *gui = new MainErrorGUI(mwindow, this, x, y);
135         gui->create_objects();
136         return gui;
137 }
138
139 void MainError::append_error(const char *string)
140 {
141         const char *in_ptr = string;
142         char string2[BCTEXTLEN];
143         int first_line = 1;
144         while(*in_ptr)
145         {
146                 char *out_ptr = string2;
147 // Indent remaining lines
148                 if( !first_line ) {
149                         *out_ptr++ = ' ';
150                         *out_ptr++ = ' ';
151                 }
152
153                 while(*in_ptr != '\n' &&
154                         *in_ptr)
155                 {
156                         *out_ptr++ = *in_ptr++;
157                 }
158                 *out_ptr++ = 0;
159
160                 errors.append(new BC_ListBoxItem(string2));
161
162                 if( *in_ptr == '\n' ) {
163                         in_ptr++;
164                         first_line = 0;
165                 }
166         }
167 }
168
169 void MainError::show_error_local(const char *string)
170 {
171 // assume user won't get to closing the GUI here
172         lock_window("MainError::show_error_local");
173         if( get_gui() ) {
174                 MainErrorGUI *gui = (MainErrorGUI*)get_gui();
175                 gui->lock_window("MainError::show_error_local");
176                 append_error(string);
177                 gui->list->update(&errors, 0, 0, 1,
178                         gui->list->get_xposition(), gui->list->get_yposition(),
179                         gui->list->get_highlighted_item(),  // Flat index of item cursor is over
180                         0,     // set all autoplace flags to 1
181                         1);
182                 gui->raise_window(1);
183                 gui->unlock_window();
184         }
185         else {
186                 errors.remove_all_objects();
187                 append_error(string);
188                 start();
189         }
190         unlock_window();
191 }
192
193
194 void MainError::show_error(const char *string)
195 {
196         if( main_error ) main_error->show_error_local(string);
197         int len = strlen(string);
198         printf("%s%s", string, len>0 && string[len-1] == '\n' ? "" : "\n");
199 }
200
201
202
203
204
205
206