2021-09-30 16:26:56 +02:00
|
|
|
/*
|
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
|
* \ingroup edinterface
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "BKE_context.h"
|
|
|
|
|
|
|
|
|
|
#include "DNA_space_types.h"
|
|
|
|
|
|
2021-10-26 18:48:24 +02:00
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
2021-10-27 15:50:14 +02:00
|
|
|
#include "RNA_access.h"
|
|
|
|
|
|
2021-09-30 16:26:56 +02:00
|
|
|
#include "WM_api.h"
|
|
|
|
|
|
|
|
|
|
#include "UI_interface.h"
|
|
|
|
|
|
|
|
|
|
static bool ui_tree_view_drop_poll(bContext *C, wmDrag *drag, const wmEvent *event)
|
|
|
|
|
{
|
|
|
|
|
const ARegion *region = CTX_wm_region(C);
|
2021-10-20 20:49:02 -03:00
|
|
|
const uiTreeViewItemHandle *hovered_tree_item = UI_block_tree_view_find_item_at(region,
|
|
|
|
|
event->xy);
|
2021-09-30 16:26:56 +02:00
|
|
|
if (!hovered_tree_item) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-04 12:10:58 +01:00
|
|
|
if (drag->drop_state.free_disabled_info) {
|
|
|
|
|
MEM_SAFE_FREE(drag->drop_state.disabled_info);
|
2021-10-26 18:48:24 +02:00
|
|
|
}
|
|
|
|
|
|
2021-11-04 12:10:58 +01:00
|
|
|
drag->drop_state.free_disabled_info = false;
|
|
|
|
|
return UI_tree_view_item_can_drop(hovered_tree_item, drag, &drag->drop_state.disabled_info);
|
2021-09-30 16:26:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *ui_tree_view_drop_tooltip(bContext *C,
|
|
|
|
|
wmDrag *drag,
|
2021-10-25 10:07:00 -03:00
|
|
|
const int xy[2],
|
2021-09-30 16:26:56 +02:00
|
|
|
wmDropBox *UNUSED(drop))
|
|
|
|
|
{
|
|
|
|
|
const ARegion *region = CTX_wm_region(C);
|
2021-10-25 10:07:00 -03:00
|
|
|
const uiTreeViewItemHandle *hovered_tree_item = UI_block_tree_view_find_item_at(region, xy);
|
2021-09-30 16:26:56 +02:00
|
|
|
if (!hovered_tree_item) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-24 18:51:12 +02:00
|
|
|
return UI_tree_view_item_drop_tooltip(hovered_tree_item, drag);
|
2021-09-30 16:26:56 +02:00
|
|
|
}
|
|
|
|
|
|
2021-10-27 15:50:14 +02:00
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
static bool ui_drop_name_poll(struct bContext *C, wmDrag *drag, const wmEvent *UNUSED(event))
|
|
|
|
|
{
|
|
|
|
|
return UI_but_active_drop_name(C) && (drag->type == WM_DRAG_ID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void ui_drop_name_copy(wmDrag *drag, wmDropBox *drop)
|
|
|
|
|
{
|
|
|
|
|
const ID *id = WM_drag_get_local_ID(drag, 0);
|
|
|
|
|
RNA_string_set(drop->ptr, "string", id->name + 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
2021-09-30 16:26:56 +02:00
|
|
|
void ED_dropboxes_ui()
|
|
|
|
|
{
|
|
|
|
|
ListBase *lb = WM_dropboxmap_find("User Interface", SPACE_EMPTY, 0);
|
|
|
|
|
|
|
|
|
|
WM_dropbox_add(lb,
|
|
|
|
|
"UI_OT_tree_view_drop",
|
|
|
|
|
ui_tree_view_drop_poll,
|
|
|
|
|
nullptr,
|
|
|
|
|
nullptr,
|
|
|
|
|
ui_tree_view_drop_tooltip);
|
2021-10-27 15:50:14 +02:00
|
|
|
WM_dropbox_add(lb,
|
|
|
|
|
"UI_OT_drop_name",
|
|
|
|
|
ui_drop_name_poll,
|
|
|
|
|
ui_drop_name_copy,
|
|
|
|
|
WM_drag_free_imported_drag_ID,
|
|
|
|
|
nullptr);
|
2021-09-30 16:26:56 +02:00
|
|
|
}
|