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 "bcdelete.inc"
27 #include "bcfilebox.inc"
28 #include "bclistbox.inc"
29 #include "bclistboxitem.inc"
30 #include "bcnewfolder.inc"
31 #include "bcrename.inc"
32 #include "bcresources.inc"
33 #include "bctextbox.h"
35 #include "condition.inc"
36 #include "filesystem.inc"
55 class BC_FileBoxListBox : public BC_ListBox
58 BC_FileBoxListBox(int x, int y, BC_FileBox *filebox);
59 virtual ~BC_FileBoxListBox();
62 int selection_changed();
63 int column_resize_event();
64 int sort_order_event();
65 int move_column_event();
66 int evaluate_query(char *string);
71 class BC_FileBoxTextBox : public BC_TextBox
74 BC_FileBoxTextBox(int x, int y, BC_FileBox *filebox);
81 class BC_FileBoxUseThis : public BC_Button
84 BC_FileBoxUseThis(BC_FileBox *filebox);
91 class BC_FileBoxOK : public BC_OKButton
94 BC_FileBoxOK(BC_FileBox *filebox);
102 class BC_FileBoxCancel : public BC_CancelButton
105 BC_FileBoxCancel(BC_FileBox *filebox);
113 class BC_FileBoxText : public BC_Button
116 BC_FileBoxText(int x, int y, BC_FileBox *filebox);
121 class BC_FileBoxDirectoryText : public BC_TextBox
124 BC_FileBoxDirectoryText(int x, int y, int w, BC_FileBox *filebox);
129 class BC_FileBoxSearchText : public BC_TextBox
132 BC_FileBoxSearchText(int x, int y, BC_FileBox *filebox);
137 class BC_FileBoxFilterText : public BC_TextBox
140 BC_FileBoxFilterText(int x, int y, BC_FileBox *filebox);
145 class BC_FileBoxFilterMenu : public BC_ListBox
148 BC_FileBoxFilterMenu(int x, int y, BC_FileBox *filebox);
153 class BC_FileBoxIcons : public BC_Button
156 BC_FileBoxIcons(int x, int y, BC_FileBox *filebox);
161 class BC_FileBoxNewfolder : public BC_Button
164 BC_FileBoxNewfolder(int x, int y, BC_FileBox *filebox);
169 class BC_FileBoxRename : public BC_Button
172 BC_FileBoxRename(int x, int y, BC_FileBox *filebox);
177 class BC_FileBoxUpdir : public BC_Button
180 BC_FileBoxUpdir(int x, int y, BC_FileBox *filebox);
183 char string[BCTEXTLEN];
186 class BC_FileBoxDelete : public BC_Button
189 BC_FileBoxDelete(int x, int y, BC_FileBox *filebox);
194 class BC_FileBoxReload : public BC_Button
197 BC_FileBoxReload(int x, int y, BC_FileBox *filebox);
202 class BC_FileBoxSizeFormat : public BC_Button
205 BC_FileBoxSizeFormat(int x, int y, BC_FileBox *file_box);
206 ~BC_FileBoxSizeFormat();
209 BC_FileBox *file_box;
213 class BC_FileBoxRecent : public BC_ListBox
216 BC_FileBoxRecent(BC_FileBox *filebox, int x, int y);
224 class BC_FileBox : public BC_Window
229 const char *init_path,
232 // Set to 1 to get hidden files.
233 int show_all_files = 0,
234 // Want only directories
235 int want_directory = 0,
236 int multiple_files = 0,
238 virtual ~BC_FileBox();
240 friend class BC_FileBoxCancel;
241 friend class BC_FileBoxDirectoryText;
242 friend class BC_FileBoxSearchText;
243 friend class BC_FileBoxListBox;
244 friend class BC_FileBoxTextBox;
245 friend class BC_FileBoxText;
246 friend class BC_FileBoxIcons;
247 friend class BC_FileBoxNewfolder;
248 friend class BC_NewFolderThread;
249 friend class BC_FileBoxRename;
250 friend class BC_RenameThread;
251 friend class BC_FileBoxOK;
252 friend class BC_FileBoxUpdir;
253 friend class BC_FileBoxFilterText;
254 friend class BC_FileBoxFilterMenu;
255 friend class BC_FileBoxUseThis;
256 friend class BC_DeleteThread;
257 friend class BC_FileBoxDelete;
258 friend class BC_FileBoxReload;
259 friend class BC_FileBoxRecent;
260 friend class BC_FileBoxSizeFormat;
262 virtual void create_objects();
263 virtual int keypress_event();
264 virtual int close_event();
265 // When file is submitted this is called for the user to retrieve it before the
266 // window is deleted.
267 virtual int handle_event();
269 void create_history();
270 void update_history();
271 void update_paths(const char *text);
272 int refresh(int reset=0, int select_all=0);
274 // The OK and Use This button submits a path.
275 // The cancel button has a current path highlighted but possibly different from the
276 // path actually submitted.
277 // Give the most recently submitted path
278 char* get_submitted_path();
279 // Give the path currently highlighted
280 char* get_current_path();
282 // Give the path of any selected item or 0. Used when many items are
283 // selected in the list. Should only be called when OK is pressed.
284 char* get_path(int selection);
285 int update_filter(const char *filter);
286 virtual int resize_event(int w, int h);
287 char* get_newfolder_title();
288 char* get_rename_title();
289 char* get_delete_title();
292 BC_Button* get_ok_button();
293 BC_Button* get_cancel_button();
298 int extract_extension(char *out, const char *in);
299 int create_tables(int select_all);
301 // Called by directory history menu to change directories but leave
302 // filename untouched.
303 int submit_dir(char *dir);
304 int submit_file(const char *path, int use_this = 0);
305 // Called by move_column_event
306 void move_column(int src, int dst);
307 int get_display_mode();
309 int get_listbox_h(int y);
310 void create_listbox(int x, int y, int mode);
311 // Get the icon number for a listbox
312 BC_Pixmap* get_icon(char *path, int is_dir);
313 static const char* columntype_to_text(int type);
314 // Get the column whose type matches type.
315 int column_of_type(int type);
317 BC_Pixmap *icons[TOTAL_ICONS];
318 BC_FileBoxRecent *recent_popup;
319 BC_Title *file_title;
320 BC_FileBoxTextBox *textbox;
321 BC_FileBoxListBox *listbox;
322 BC_Title *filter_title;
323 BC_FileBoxFilterText *filter_text;
324 BC_FileBoxFilterMenu *filter_popup;
325 BC_FileBoxDirectoryText *directory_title;
326 BC_FileBoxSearchText *search_text;
327 BC_Button *icon_button;
328 BC_Button *text_button;
329 BC_Button *folder_button;
330 BC_Button *rename_button;
331 BC_Button *updir_button;
332 BC_Button *delete_button;
333 BC_Button *reload_button;
334 BC_FileBoxSizeFormat *szfmt_button;
335 BC_Button *ok_button, *cancel_button;
336 BC_FileBoxUseThis *usethis_button;
337 char caption[BCTEXTLEN];
338 char current_path[BCTEXTLEN];
339 char submitted_path[BCTEXTLEN];
340 char directory[BCTEXTLEN];
341 char filename[BCTEXTLEN];
342 char string[BCTEXTLEN];
350 const char *column_titles[FILEBOX_COLUMNS];
351 ArrayList<BC_ListBoxItem*> filter_list;
352 ArrayList<BC_ListBoxItem*> *list_column;
355 // Calculated based on directory or regular file searching
358 char new_folder_title[BCTEXTLEN];
359 char rename_title[BCTEXTLEN];
360 BC_NewFolderThread *newfolder_thread;
361 BC_RenameThread *rename_thread;
362 BC_DeleteThread *delete_thread;
363 int h_padding, y_margin;
364 ArrayList<BC_ListBoxItem*> recent_dirs;