| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  file_dialog.h                                                        */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                    http://www.godotengine.org                         */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2016-01-01 11:50:53 -02:00
										 |  |  | /* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef EDITORFILEDIALOG_H
 | 
					
						
							|  |  |  | #define EDITORFILEDIALOG_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "scene/gui/dialogs.h"
 | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | #include "scene/gui/item_list.h"
 | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | #include "scene/gui/line_edit.h"
 | 
					
						
							|  |  |  | #include "scene/gui/option_button.h"
 | 
					
						
							|  |  |  | #include "os/dir_access.h"
 | 
					
						
							|  |  |  | #include "scene/gui/box_container.h"
 | 
					
						
							|  |  |  | #include "scene/gui/texture_frame.h"
 | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | #include "scene/gui/tool_button.h"
 | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | /**
 | 
					
						
							|  |  |  | 	@author Juan Linietsky <reduzio@gmail.com> | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | class EditorFileDialog : public ConfirmationDialog { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	OBJ_TYPE( EditorFileDialog, ConfirmationDialog ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	enum DisplayMode { | 
					
						
							|  |  |  | 		DISPLAY_THUMBNAILS, | 
					
						
							|  |  |  | 		DISPLAY_LIST | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 	enum Access { | 
					
						
							|  |  |  | 		ACCESS_RESOURCES, | 
					
						
							|  |  |  | 		ACCESS_USERDATA, | 
					
						
							|  |  |  | 		ACCESS_FILESYSTEM | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enum Mode { | 
					
						
							|  |  |  | 		MODE_OPEN_FILE, | 
					
						
							|  |  |  | 		MODE_OPEN_FILES, | 
					
						
							|  |  |  | 		MODE_OPEN_DIR, | 
					
						
							| 
									
										
										
										
											2016-03-14 16:03:18 +01:00
										 |  |  | 		MODE_OPEN_ANY, | 
					
						
							|  |  |  | 		MODE_SAVE_FILE | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	typedef Ref<Texture> (*GetIconFunc)(const String&); | 
					
						
							|  |  |  | 	typedef void (*RegisterFunc)(EditorFileDialog*); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static GetIconFunc get_icon_func; | 
					
						
							|  |  |  | 	static GetIconFunc get_large_icon_func; | 
					
						
							|  |  |  | 	static RegisterFunc register_func; | 
					
						
							|  |  |  | 	static RegisterFunc unregister_func; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ConfirmationDialog *makedialog; | 
					
						
							|  |  |  | 	LineEdit *makedirname; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Button *makedir; | 
					
						
							|  |  |  | 	Access access; | 
					
						
							|  |  |  | 	//Button *action;
 | 
					
						
							|  |  |  | 	VBoxContainer *vbox; | 
					
						
							|  |  |  | 	Mode mode; | 
					
						
							|  |  |  | 	LineEdit *dir; | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ToolButton *dir_prev; | 
					
						
							|  |  |  | 	ToolButton *dir_next; | 
					
						
							|  |  |  | 	ToolButton *dir_up; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 	OptionButton *drives; | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	ItemList *item_list; | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 	TextureFrame *preview; | 
					
						
							|  |  |  | 	VBoxContainer *preview_vb; | 
					
						
							|  |  |  | 	HBoxContainer *list_hb; | 
					
						
							|  |  |  | 	LineEdit *file; | 
					
						
							|  |  |  | 	AcceptDialog *mkdirerr; | 
					
						
							|  |  |  | 	AcceptDialog *exterr; | 
					
						
							|  |  |  | 	OptionButton *filter; | 
					
						
							|  |  |  | 	DirAccess *dir_access; | 
					
						
							|  |  |  | 	ConfirmationDialog *confirm_save; | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	ToolButton *mode_thumbnails; | 
					
						
							|  |  |  | 	ToolButton *mode_list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-04 19:33:30 +01:00
										 |  |  | 	ToolButton *refresh; | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	ToolButton *favorite; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ToolButton *fav_up; | 
					
						
							|  |  |  | 	ToolButton *fav_down; | 
					
						
							|  |  |  | 	ToolButton *fav_rm; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ItemList *favorites; | 
					
						
							|  |  |  | 	ItemList *recent; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Vector<String> local_history; | 
					
						
							|  |  |  | 	int local_history_pos; | 
					
						
							|  |  |  | 	void _push_history(); | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Vector<String> filters; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool preview_waiting; | 
					
						
							|  |  |  | 	int preview_wheel_index; | 
					
						
							|  |  |  | 	float preview_wheel_timeout; | 
					
						
							|  |  |  | 	static bool default_show_hidden_files; | 
					
						
							| 
									
										
										
										
											2015-12-15 13:39:13 -03:00
										 |  |  | 	static DisplayMode default_display_mode; | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 	bool show_hidden_files; | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	DisplayMode display_mode; | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool invalidated; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void update_dir(); | 
					
						
							|  |  |  | 	void update_file_list(); | 
					
						
							|  |  |  | 	void update_filters(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	void _update_favorites(); | 
					
						
							|  |  |  | 	void _favorite_toggled(bool p_toggle); | 
					
						
							|  |  |  | 	void _favorite_selected(int p_idx); | 
					
						
							|  |  |  | 	void _favorite_move_up(); | 
					
						
							|  |  |  | 	void _favorite_move_down(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _recent_selected(int p_idx); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _item_selected(int p_item); | 
					
						
							|  |  |  | 	void _item_dc_selected(int p_item); | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void _select_drive(int p_idx); | 
					
						
							|  |  |  | 	void _dir_entered(String p_dir); | 
					
						
							|  |  |  | 	void _file_entered(const String& p_file); | 
					
						
							|  |  |  | 	void _action_pressed(); | 
					
						
							|  |  |  | 	void _save_confirm_pressed(); | 
					
						
							|  |  |  | 	void _cancel_pressed(); | 
					
						
							|  |  |  | 	void _filter_selected(int); | 
					
						
							|  |  |  | 	void _make_dir(); | 
					
						
							|  |  |  | 	void _make_dir_confirm(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _update_drives(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	void _go_up(); | 
					
						
							|  |  |  | 	void _go_back(); | 
					
						
							|  |  |  | 	void _go_forward(); | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	virtual void _post_popup(); | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	void _save_to_recent(); | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 	//callback funtion is callback(String p_path,Ref<Texture> preview,Variant udata) preview null if could not load
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	void _thumbnail_result(const String& p_path,const Ref<Texture>& p_preview, const Variant& p_udata); | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 	void _thumbnail_done(const String& p_path,const Ref<Texture>& p_preview, const Variant& p_udata); | 
					
						
							|  |  |  | 	void _request_single_thumbnail(const String& p_path); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-29 00:36:48 +01:00
										 |  |  | 	void _unhandled_input(const InputEvent& p_event); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | protected: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _notification(int p_what); | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 	//bind helpers
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void clear_filters(); | 
					
						
							|  |  |  | 	void add_filter(const String& p_filter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_enable_multiple_selection(bool p_enable); | 
					
						
							|  |  |  | 	Vector<String> get_selected_files() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String get_current_dir() const; | 
					
						
							|  |  |  | 	String get_current_file() const; | 
					
						
							|  |  |  | 	String get_current_path() const; | 
					
						
							|  |  |  | 	void set_current_dir(const String& p_dir); | 
					
						
							|  |  |  | 	void set_current_file(const String& p_file); | 
					
						
							|  |  |  | 	void set_current_path(const String& p_path); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	void set_display_mode(DisplayMode p_mode); | 
					
						
							|  |  |  | 	DisplayMode get_display_mode() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 	void set_mode(Mode p_mode); | 
					
						
							|  |  |  | 	Mode get_mode() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VBoxContainer *get_vbox(); | 
					
						
							|  |  |  | 	LineEdit *get_line_edit() { return file; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_access(Access p_access); | 
					
						
							|  |  |  | 	Access get_access() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_show_hidden_files(bool p_show); | 
					
						
							|  |  |  | 	bool is_showing_hidden_files() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static void set_default_show_hidden_files(bool p_show); | 
					
						
							| 
									
										
										
										
											2015-12-15 13:39:13 -03:00
										 |  |  | 	static void set_default_display_mode(DisplayMode p_mode); | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void invalidate(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	EditorFileDialog(); | 
					
						
							|  |  |  | 	~EditorFileDialog(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class EditorLineEditFileChooser : public HBoxContainer { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	OBJ_TYPE( EditorLineEditFileChooser, HBoxContainer ); | 
					
						
							|  |  |  | 	Button *button; | 
					
						
							|  |  |  | 	LineEdit *line_edit; | 
					
						
							|  |  |  | 	EditorFileDialog *dialog; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _chosen(const String& p_text); | 
					
						
							|  |  |  | 	void _browse(); | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Button *get_button() { return button; } | 
					
						
							|  |  |  | 	LineEdit *get_line_edit() { return line_edit; } | 
					
						
							|  |  |  | 	EditorFileDialog *get_file_dialog() { return dialog; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	EditorLineEditFileChooser(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | VARIANT_ENUM_CAST( EditorFileDialog::Mode ); | 
					
						
							|  |  |  | VARIANT_ENUM_CAST( EditorFileDialog::Access ); | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | VARIANT_ENUM_CAST( EditorFileDialog::DisplayMode ); | 
					
						
							| 
									
										
										
										
											2015-05-31 01:59:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif // EDITORFILEDIALOG_H
 |