2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* property_editor.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2016-01-01 14:50:53 +01:00
|
|
|
/* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur. */
|
2014-02-10 02:10:30 +01: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 PROPERTY_EDITOR_H
|
|
|
|
#define PROPERTY_EDITOR_H
|
|
|
|
|
|
|
|
#include "scene/gui/tree.h"
|
|
|
|
#include "scene/gui/button.h"
|
2016-05-03 23:20:09 +02:00
|
|
|
#include "scene/gui/check_box.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scene/gui/label.h"
|
2015-06-06 14:44:38 +02:00
|
|
|
#include "tools/editor/editor_file_dialog.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scene/gui/dialogs.h"
|
|
|
|
#include "scene/gui/color_picker.h"
|
|
|
|
#include "scene/gui/menu_button.h"
|
|
|
|
#include "scene/gui/texture_frame.h"
|
|
|
|
#include "scene/gui/text_edit.h"
|
2016-01-23 15:20:54 +01:00
|
|
|
#include "scene/gui/check_button.h"
|
|
|
|
#include "scene/gui/split_container.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scene_tree_editor.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2016-05-01 10:33:32 +02:00
|
|
|
class PropertyValueEvaluator;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
class CustomPropertyEditor : public Popup {
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
OBJ_TYPE( CustomPropertyEditor, Popup );
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
enum {
|
|
|
|
MAX_VALUE_EDITORS=12,
|
|
|
|
MAX_ACTION_BUTTONS=5,
|
|
|
|
OBJ_MENU_LOAD=0,
|
|
|
|
OBJ_MENU_EDIT=1,
|
|
|
|
OBJ_MENU_CLEAR=2,
|
|
|
|
OBJ_MENU_MAKE_UNIQUE=3,
|
|
|
|
OBJ_MENU_COPY=4,
|
|
|
|
OBJ_MENU_PASTE=5,
|
|
|
|
OBJ_MENU_REIMPORT=6,
|
|
|
|
TYPE_BASE_ID=100
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
EASING_LINEAR,
|
|
|
|
EASING_EASE_IN,
|
|
|
|
EASING_EASE_OUT,
|
|
|
|
EASING_ZERO,
|
|
|
|
EASING_IN_OUT,
|
|
|
|
EASING_OUT_IN
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
PopupMenu *menu;
|
|
|
|
SceneTreeDialog *scene_tree;
|
2015-06-06 14:44:38 +02:00
|
|
|
EditorFileDialog *file;
|
2014-02-10 02:10:30 +01:00
|
|
|
ConfirmationDialog *error;
|
|
|
|
String name;
|
|
|
|
Variant::Type type;
|
|
|
|
Variant v;
|
|
|
|
int hint;
|
|
|
|
String hint_text;
|
|
|
|
LineEdit *value_editor[MAX_VALUE_EDITORS];
|
|
|
|
Label *value_label[MAX_VALUE_EDITORS];
|
2016-01-23 15:20:54 +01:00
|
|
|
HScrollBar *scroll[4];
|
2014-02-10 02:10:30 +01:00
|
|
|
Button *action_buttons[MAX_ACTION_BUTTONS];
|
|
|
|
MenuButton *type_button;
|
|
|
|
Vector<String> inheritors_array;
|
|
|
|
TextureFrame *texture_preview;
|
|
|
|
ColorPicker *color_picker;
|
|
|
|
TextEdit *text_edit;
|
|
|
|
bool read_only;
|
2016-05-03 23:20:09 +02:00
|
|
|
CheckBox *checks20[20];
|
2015-08-30 02:09:11 +02:00
|
|
|
SpinBox *spinbox;
|
|
|
|
HSlider *slider;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-08-26 04:00:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Control *easing_draw;
|
|
|
|
|
|
|
|
Object* owner;
|
|
|
|
|
|
|
|
bool updating;
|
|
|
|
|
2016-05-01 10:33:32 +02:00
|
|
|
PropertyValueEvaluator *evaluator;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _text_edit_changed();
|
|
|
|
void _file_selected(String p_file);
|
2016-01-23 15:20:54 +01:00
|
|
|
void _scroll_modified(double p_value);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _modified(String p_string);
|
2015-08-30 02:09:11 +02:00
|
|
|
void _range_modified(double p_value);
|
2014-02-27 15:16:00 +01:00
|
|
|
void _focus_enter();
|
|
|
|
void _focus_exit();
|
2014-02-10 02:10:30 +01:00
|
|
|
void _action_pressed(int p_which);
|
|
|
|
void _type_create_selected(int p_idx);
|
|
|
|
|
2016-01-03 00:17:31 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _color_changed(const Color& p_color);
|
|
|
|
void _draw_easing();
|
|
|
|
void _menu_option(int p_which);
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _drag_easing(const InputEvent& p_ev);
|
|
|
|
|
|
|
|
void _node_path_selected(NodePath p_path);
|
|
|
|
void show_value_editors(int p_amount);
|
|
|
|
void config_value_editors(int p_amount, int p_columns,int p_label_w,const List<String>& p_strings);
|
|
|
|
void config_action_buttons(const List<String>& p_strings);
|
2015-10-10 14:09:09 +02:00
|
|
|
|
2016-05-27 19:18:40 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
protected:
|
|
|
|
|
|
|
|
void _notification(int p_what);
|
2015-08-30 02:09:11 +02:00
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2016-05-11 16:46:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
void hide_menu();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Variant get_variant() const;
|
|
|
|
String get_name() const;
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void set_read_only(bool p_read_only) { read_only=p_read_only; }
|
|
|
|
|
2016-05-01 10:33:32 +02:00
|
|
|
void set_value_evaluator( PropertyValueEvaluator *p_evaluator) { evaluator=p_evaluator; }
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
bool edit(Object* p_owner,const String& p_name,Variant::Type p_type, const Variant& p_variant,int p_hint,String p_hint_text);
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
CustomPropertyEditor();
|
|
|
|
};
|
|
|
|
|
|
|
|
class PropertyEditor : public Control {
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
OBJ_TYPE( PropertyEditor, Control );
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Tree *tree;
|
|
|
|
Label *top_label;
|
|
|
|
//Object *object;
|
2015-11-21 17:42:15 +01:00
|
|
|
LineEdit *search_box;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-01 10:33:32 +02:00
|
|
|
PropertyValueEvaluator *evaluator;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Object* obj;
|
|
|
|
|
|
|
|
Array _prop_edited_name;
|
|
|
|
StringName _prop_edited;
|
|
|
|
|
|
|
|
bool capitalize_paths;
|
|
|
|
bool changing;
|
|
|
|
bool update_tree_pending;
|
|
|
|
bool autoclear;
|
|
|
|
bool keying;
|
|
|
|
bool read_only;
|
|
|
|
bool show_categories;
|
2015-12-11 13:37:34 +01:00
|
|
|
bool show_type_icons;
|
2015-01-03 19:39:01 +01:00
|
|
|
float refresh_countdown;
|
2015-08-26 04:00:11 +02:00
|
|
|
bool use_doc_hints;
|
2015-11-21 17:42:15 +01:00
|
|
|
bool use_filter;
|
2015-12-03 18:59:59 +01:00
|
|
|
bool subsection_selectable;
|
2015-11-21 17:42:15 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
HashMap<String,String> pending;
|
|
|
|
String selected_property;
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2015-08-26 04:00:11 +02:00
|
|
|
Map<StringName,Map<StringName,String> > descr_cache;
|
|
|
|
Map<StringName,String > class_descr_cache;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
CustomPropertyEditor *custom_editor;
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _resource_edit_request();
|
|
|
|
void _custom_editor_edited();
|
|
|
|
void _custom_editor_request(bool p_arrow);
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _item_selected();
|
|
|
|
void _item_edited();
|
|
|
|
TreeItem *get_parent_node(String p_path,HashMap<String,TreeItem*>& item_paths,TreeItem *root);
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void set_item_text(TreeItem *p_item, int p_type, const String& p_name, int p_hint=PROPERTY_HINT_NONE, const String& p_hint_text="");
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
TreeItem *find_item(TreeItem *p_item,const String& p_name);
|
2015-08-30 02:09:11 +02:00
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual void _changed_callback(Object *p_changed,const char * p_what);
|
|
|
|
virtual void _changed_callbacks(Object *p_changed,const String& p_callback);
|
|
|
|
|
2016-01-03 00:17:31 +01:00
|
|
|
void _check_reload_status(const String&p_name,TreeItem* item);
|
2015-10-10 14:09:09 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _edit_button(Object *p_item, int p_column, int p_button);
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _node_removed(Node *p_node);
|
|
|
|
void _edit_set(const String& p_name, const Variant& p_value);
|
|
|
|
void _draw_flags(Object *ti,const Rect2& p_rect);
|
|
|
|
|
2015-10-10 14:09:09 +02:00
|
|
|
bool _might_be_in_instance();
|
|
|
|
bool _get_instanced_node_original_property(const StringName& p_prop,Variant& value);
|
|
|
|
bool _is_property_different(const Variant& p_current, const Variant& p_orig,int p_usage=0);
|
|
|
|
|
2015-01-03 19:39:01 +01:00
|
|
|
void _refresh_item(TreeItem *p_item);
|
2015-05-25 06:46:45 +02:00
|
|
|
void _set_range_def(Object *p_item, String prop, float p_frame);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-21 17:42:15 +01:00
|
|
|
void _filter_changed(const String& p_text);
|
|
|
|
|
2016-05-11 16:46:08 +02:00
|
|
|
void _mark_drop_fields(TreeItem* p_at);
|
|
|
|
void _clear_drop_fields(TreeItem* p_at);
|
|
|
|
|
|
|
|
bool _is_drop_valid(const Dictionary& p_drag_data, const Dictionary& p_item_data) const;
|
|
|
|
Variant get_drag_data_fw(const Point2& p_point,Control* p_from);
|
|
|
|
bool can_drop_data_fw(const Point2& p_point,const Variant& p_data,Control* p_from) const;
|
|
|
|
void drop_data_fw(const Point2& p_point,const Variant& p_data,Control* p_from);
|
|
|
|
|
2016-05-27 19:18:40 +02:00
|
|
|
void _resource_preview_done(const String& p_path,const Ref<Texture>& p_preview,Variant p_ud);
|
2016-05-11 16:46:08 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
UndoRedo *undo_redo;
|
|
|
|
protected:
|
2015-08-30 02:09:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
|
|
|
|
|
|
void set_undo_redo(UndoRedo *p_undo_redo) { undo_redo=p_undo_redo; }
|
|
|
|
|
|
|
|
String get_selected_path() const;
|
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
Tree *get_scene_tree();
|
2014-02-10 02:10:30 +01:00
|
|
|
Label* get_top_label();
|
|
|
|
void hide_top_label();
|
|
|
|
void update_tree();
|
|
|
|
void update_property(const String& p_prop);
|
|
|
|
|
2015-01-03 19:39:01 +01:00
|
|
|
void refresh();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void edit(Object* p_object);
|
|
|
|
|
|
|
|
void set_keying(bool p_active);
|
|
|
|
void set_read_only(bool p_read_only) { read_only=p_read_only; custom_editor->set_read_only(p_read_only);}
|
|
|
|
|
|
|
|
void set_capitalize_paths(bool p_capitalize);
|
|
|
|
void set_autoclear(bool p_enable);
|
|
|
|
|
|
|
|
void set_show_categories(bool p_show);
|
2015-08-26 04:00:11 +02:00
|
|
|
void set_use_doc_hints(bool p_enable) { use_doc_hints=p_enable; }
|
2015-11-21 17:42:15 +01:00
|
|
|
|
|
|
|
void set_use_filter(bool p_use);
|
|
|
|
void register_text_enter(Node *p_line_edit);
|
|
|
|
|
2015-12-03 18:59:59 +01:00
|
|
|
void set_subsection_selectable(bool p_selectable);
|
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
PropertyEditor();
|
2014-02-10 02:10:30 +01:00
|
|
|
~PropertyEditor();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-12-16 03:39:36 +01:00
|
|
|
|
|
|
|
class SectionedPropertyEditorFilter;
|
|
|
|
|
|
|
|
class SectionedPropertyEditor : public HBoxContainer {
|
|
|
|
|
|
|
|
|
|
|
|
OBJ_TYPE(SectionedPropertyEditor,HBoxContainer);
|
2016-03-06 15:22:21 +01:00
|
|
|
|
|
|
|
ObjectID obj;
|
|
|
|
|
2015-12-16 03:39:36 +01:00
|
|
|
ItemList *sections;
|
|
|
|
SectionedPropertyEditorFilter *filter;
|
|
|
|
PropertyEditor *editor;
|
|
|
|
|
2016-01-11 13:41:26 +01:00
|
|
|
|
|
|
|
static void _bind_methods();
|
2016-01-23 20:05:27 +01:00
|
|
|
void _section_selected(int p_which);
|
|
|
|
|
2015-12-16 03:39:36 +01:00
|
|
|
public:
|
|
|
|
|
|
|
|
PropertyEditor *get_property_editor();
|
|
|
|
void edit(Object* p_object);
|
2015-12-16 04:42:34 +01:00
|
|
|
String get_full_item_path(const String& p_item);
|
2016-03-06 15:22:21 +01:00
|
|
|
|
|
|
|
void set_current_section(const String& p_section);
|
2016-01-10 21:08:02 +01:00
|
|
|
String get_current_section() const;
|
2015-12-16 03:39:36 +01:00
|
|
|
|
2016-03-06 15:22:21 +01:00
|
|
|
void update_category_list();
|
|
|
|
|
2015-12-16 03:39:36 +01:00
|
|
|
SectionedPropertyEditor();
|
|
|
|
~SectionedPropertyEditor();
|
|
|
|
};
|
|
|
|
|
2016-05-01 10:33:32 +02:00
|
|
|
class PropertyValueEvaluator : public ValueEvaluator {
|
|
|
|
OBJ_TYPE( PropertyValueEvaluator, ValueEvaluator );
|
|
|
|
|
|
|
|
Object *obj;
|
|
|
|
ScriptLanguage *script_language;
|
|
|
|
String _build_script(const String& p_text);
|
|
|
|
|
|
|
|
_FORCE_INLINE_ double _default_eval(const String& p_text) {
|
|
|
|
return p_text.to_double();
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
void edit(Object *p_obj);
|
|
|
|
double eval(const String& p_text);
|
|
|
|
|
|
|
|
PropertyValueEvaluator();
|
|
|
|
~PropertyValueEvaluator();
|
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#endif
|