2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* connections_dialog.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
|
|
|
/*************************************************************************/
|
2018-01-01 13:40:08 +00:00
|
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2018 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
|
|
|
|
2018-04-28 00:08:34 +00:00
|
|
|
/**
|
|
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef CONNECTIONS_DIALOG_H
|
|
|
|
#define CONNECTIONS_DIALOG_H
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "editor/property_editor.h"
|
|
|
|
#include "editor/scene_tree_editor.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "scene/gui/button.h"
|
|
|
|
#include "scene/gui/check_button.h"
|
|
|
|
#include "scene/gui/dialogs.h"
|
|
|
|
#include "scene/gui/line_edit.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/menu_button.h"
|
|
|
|
#include "scene/gui/popup.h"
|
|
|
|
#include "scene/gui/tree.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "undo_redo.h"
|
|
|
|
|
2018-04-28 00:08:34 +00:00
|
|
|
class PopupMenu;
|
2014-02-10 01:10:30 +00:00
|
|
|
class ConnectDialogBinds;
|
|
|
|
|
|
|
|
class ConnectDialog : public ConfirmationDialog {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(ConnectDialog, ConfirmationDialog);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
ConfirmationDialog *error;
|
|
|
|
LineEdit *dst_path;
|
|
|
|
LineEdit *dst_method;
|
|
|
|
SceneTreeEditor *tree;
|
|
|
|
OptionButton *type_list;
|
|
|
|
CheckButton *deferred;
|
2015-11-23 20:38:15 +00:00
|
|
|
CheckButton *oneshot;
|
2014-02-10 01:10:30 +00:00
|
|
|
CheckButton *make_callback;
|
|
|
|
PropertyEditor *bind_editor;
|
2018-04-28 22:11:51 +00:00
|
|
|
Node *source;
|
|
|
|
StringName signal;
|
2014-02-10 01:10:30 +00:00
|
|
|
ConnectDialogBinds *cdbinds;
|
2018-04-28 22:11:51 +00:00
|
|
|
bool bEditMode;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void ok_pressed();
|
|
|
|
void _cancel_pressed();
|
|
|
|
void _tree_node_selected();
|
|
|
|
void _add_bind();
|
|
|
|
void _remove_bind();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
2016-03-08 23:00:52 +00:00
|
|
|
static void _bind_methods();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2017-01-13 13:45:50 +00:00
|
|
|
bool get_make_callback() { return make_callback->is_visible() && make_callback->is_pressed(); }
|
2014-02-10 01:10:30 +00:00
|
|
|
NodePath get_dst_path() const;
|
2016-03-08 23:00:52 +00:00
|
|
|
StringName get_dst_method() const;
|
2018-04-28 22:11:51 +00:00
|
|
|
Node *get_source() const;
|
|
|
|
StringName get_signal() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
bool get_deferred() const;
|
2015-11-23 20:38:15 +00:00
|
|
|
bool get_oneshot() const;
|
2018-04-28 22:11:51 +00:00
|
|
|
bool is_editing() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector<Variant> get_binds() const;
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_dst_method(const StringName &p_method);
|
|
|
|
void set_dst_node(Node *p_node);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2018-04-28 22:11:51 +00:00
|
|
|
void init(Connection c, bool bEdit = false);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
ConnectDialog();
|
|
|
|
~ConnectDialog();
|
|
|
|
};
|
|
|
|
|
2016-06-04 00:03:09 +00:00
|
|
|
class ConnectionsDock : public VBoxContainer {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(ConnectionsDock, VBoxContainer);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-04-28 00:08:34 +00:00
|
|
|
enum SignalMenuOption {
|
|
|
|
CONNECT
|
|
|
|
};
|
|
|
|
|
|
|
|
enum SlotMenuOption {
|
|
|
|
EDIT,
|
|
|
|
DISCONNECT
|
|
|
|
};
|
|
|
|
|
2016-06-04 00:03:09 +00:00
|
|
|
Button *connect_button;
|
2014-02-10 01:10:30 +00:00
|
|
|
EditorNode *editor;
|
|
|
|
Node *node;
|
|
|
|
Tree *tree;
|
|
|
|
ConfirmationDialog *remove_confirm;
|
|
|
|
ConnectDialog *connect_dialog;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2018-04-28 00:08:34 +00:00
|
|
|
PopupMenu *signal_menu;
|
|
|
|
PopupMenu *slot_menu;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void _close();
|
2018-04-28 22:11:51 +00:00
|
|
|
void _make_or_edit_connection();
|
|
|
|
void _connect( Connection cToMake );
|
2018-04-28 00:08:34 +00:00
|
|
|
void _disconnect( TreeItem *item );
|
2018-04-28 22:11:51 +00:00
|
|
|
void _edit( TreeItem *item );
|
2014-02-10 01:10:30 +00:00
|
|
|
void _something_selected();
|
2016-06-11 23:01:17 +00:00
|
|
|
void _something_activated();
|
2018-04-28 00:08:34 +00:00
|
|
|
void _handle_signal_option( int option );
|
|
|
|
void _handle_slot_option( int option );
|
|
|
|
void _rmb_pressed( Vector2 position );
|
2014-02-10 01:10:30 +00:00
|
|
|
UndoRedo *undo_redo;
|
|
|
|
|
|
|
|
protected:
|
2016-06-04 00:03:09 +00:00
|
|
|
void _connect_pressed();
|
2014-02-10 01:10:30 +00:00
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2018-04-28 00:08:34 +00:00
|
|
|
private:
|
|
|
|
bool _is_item_signal( TreeItem *item );
|
|
|
|
void _open_connection_dialog( TreeItem *item );
|
2018-04-28 22:11:51 +00:00
|
|
|
void _open_connection_dialog( Connection cToEdit );
|
2018-04-28 00:08:34 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
|
|
|
void set_undoredo(UndoRedo *p_undo_redo) { undo_redo = p_undo_redo; }
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_node(Node *p_node);
|
2014-02-10 01:10:30 +00:00
|
|
|
String get_selected_type();
|
2017-08-18 19:43:23 +00:00
|
|
|
void update_tree();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ConnectionsDock(EditorNode *p_editor = NULL);
|
2016-06-04 00:03:09 +00:00
|
|
|
~ConnectionsDock();
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|