2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* quick_open.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2020-01-01 10:16:22 +00:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 01:10:30 +00: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. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef EDITOR_QUICK_OPEN_H
|
|
|
|
#define EDITOR_QUICK_OPEN_H
|
|
|
|
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/pair.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "editor_file_system.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/dialogs.h"
|
|
|
|
#include "scene/gui/tree.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
class EditorQuickOpen : public ConfirmationDialog {
|
|
|
|
|
2019-03-19 18:35:57 +00:00
|
|
|
GDCLASS(EditorQuickOpen, ConfirmationDialog);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
LineEdit *search_box;
|
|
|
|
Tree *search_options;
|
2015-08-23 23:15:56 +00:00
|
|
|
StringName base_type;
|
|
|
|
StringName ei;
|
|
|
|
StringName ot;
|
|
|
|
bool add_directories;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void _update_search();
|
|
|
|
|
2017-05-20 15:38:03 +00:00
|
|
|
void _sbox_input(const Ref<InputEvent> &p_ie);
|
2020-03-17 06:33:00 +00:00
|
|
|
void _parse_fs(EditorFileSystemDirectory *efsd, Vector<Pair<String, Ref<Texture2D>>> &list);
|
|
|
|
Vector<Pair<String, Ref<Texture2D>>> _sort_fs(Vector<Pair<String, Ref<Texture2D>>> &list);
|
2016-07-06 22:29:15 +00:00
|
|
|
float _path_cmp(String search, String path) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void _confirmed();
|
2017-03-05 15:44:50 +00:00
|
|
|
void _text_changed(const String &p_newtext);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-06 17:00:16 +00:00
|
|
|
void _theme_changed();
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2015-08-23 23:15:56 +00:00
|
|
|
StringName get_base_type() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-01-08 11:27:34 +00:00
|
|
|
String get_selected() const;
|
|
|
|
Vector<String> get_selected_files() const;
|
|
|
|
|
2018-10-02 10:07:44 +00:00
|
|
|
void popup_dialog(const StringName &p_base, bool p_enable_multi = false, bool p_add_dirs = false, bool p_dontclear = false);
|
2014-02-10 01:10:30 +00:00
|
|
|
EditorQuickOpen();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EDITOR_QUICK_OPEN_H
|