2017-12-16 03:57:20 +11:00
|
|
|
/*
|
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
*/
|
|
|
|
|
|
2018-07-14 23:16:34 +02:00
|
|
|
/** \file blender/editors/space_view3d/view3d_gizmo_navigate.c
|
2017-12-16 03:57:20 +11:00
|
|
|
* \ingroup spview3d
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
|
#include "BLI_math.h"
|
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
|
|
|
|
|
#include "BKE_context.h"
|
|
|
|
|
#include "BKE_object.h"
|
|
|
|
|
|
|
|
|
|
#include "DNA_object_types.h"
|
|
|
|
|
|
|
|
|
|
#include "ED_screen.h"
|
2018-07-14 23:16:34 +02:00
|
|
|
#include "ED_gizmo_library.h"
|
2017-12-16 03:57:20 +11:00
|
|
|
|
2018-04-28 16:00:41 +02:00
|
|
|
#include "UI_interface.h"
|
2017-12-16 03:57:20 +11:00
|
|
|
#include "UI_resources.h"
|
|
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
|
|
#include "RNA_access.h"
|
|
|
|
|
|
|
|
|
|
#include "WM_api.h"
|
|
|
|
|
#include "WM_types.h"
|
|
|
|
|
|
|
|
|
|
#include "view3d_intern.h" /* own include */
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------- */
|
2018-07-14 23:49:00 +02:00
|
|
|
/** \name View3D Navigation Gizmo Group
|
2017-12-16 03:57:20 +11:00
|
|
|
* \{ */
|
|
|
|
|
|
|
|
|
|
/* Offset from screen edge. */
|
2018-10-01 12:47:37 +02:00
|
|
|
#define GIZMO_OFFSET_FAC 1.2f
|
2017-12-16 03:57:20 +11:00
|
|
|
/* Size of main icon. */
|
2018-07-15 11:28:28 +02:00
|
|
|
#define GIZMO_SIZE 80
|
2018-10-01 12:47:37 +02:00
|
|
|
/* Factor for size of smaller button. */
|
|
|
|
|
#define GIZMO_MINI_FAC 0.35f
|
2017-12-16 03:57:20 +11:00
|
|
|
/* How much mini buttons offset from the primary. */
|
2018-10-01 12:47:37 +02:00
|
|
|
#define GIZMO_MINI_OFFSET_FAC 0.38f
|
2017-12-16 03:57:20 +11:00
|
|
|
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
MPR_MOVE = 0,
|
|
|
|
|
MPR_ROTATE = 1,
|
|
|
|
|
MPR_ZOOM = 2,
|
2018-01-15 20:46:42 +11:00
|
|
|
|
2017-12-16 03:57:20 +11:00
|
|
|
/* just buttons */
|
2018-01-15 20:46:42 +11:00
|
|
|
/* overlaps MPR_ORTHO (switch between) */
|
|
|
|
|
MPR_PERSP = 3,
|
|
|
|
|
MPR_ORTHO = 4,
|
|
|
|
|
MPR_CAMERA = 5,
|
|
|
|
|
|
|
|
|
|
MPR_TOTAL = 6,
|
|
|
|
|
};
|
2017-12-16 03:57:20 +11:00
|
|
|
|
2018-07-14 23:49:00 +02:00
|
|
|
struct NavigateGizmoInfo {
|
2017-12-16 03:57:20 +11:00
|
|
|
const char *opname;
|
2018-07-14 23:49:00 +02:00
|
|
|
const char *gizmo;
|
2018-09-27 19:15:18 +02:00
|
|
|
uint icon;
|
2017-12-16 03:57:20 +11:00
|
|
|
};
|
|
|
|
|
|
2018-07-31 20:44:49 +10:00
|
|
|
static struct NavigateGizmoInfo g_navigate_params[MPR_TOTAL] = {
|
2017-12-16 03:57:20 +11:00
|
|
|
{
|
|
|
|
|
.opname = "VIEW3D_OT_move",
|
2018-07-15 14:24:10 +02:00
|
|
|
.gizmo = "GIZMO_GT_button_2d",
|
2018-09-27 19:15:18 +02:00
|
|
|
ICON_VIEW_PAN,
|
2017-12-16 03:57:20 +11:00
|
|
|
}, {
|
|
|
|
|
.opname = "VIEW3D_OT_rotate",
|
2018-07-15 14:24:10 +02:00
|
|
|
.gizmo = "VIEW3D_GT_navigate_rotate",
|
2018-09-27 19:15:18 +02:00
|
|
|
0,
|
2017-12-16 03:57:20 +11:00
|
|
|
}, {
|
|
|
|
|
.opname = "VIEW3D_OT_zoom",
|
2018-07-15 14:24:10 +02:00
|
|
|
.gizmo = "GIZMO_GT_button_2d",
|
2018-09-27 19:15:18 +02:00
|
|
|
ICON_VIEW_ZOOM,
|
2018-01-15 20:46:42 +11:00
|
|
|
}, {
|
|
|
|
|
.opname = "VIEW3D_OT_view_persportho",
|
2018-07-15 14:24:10 +02:00
|
|
|
.gizmo = "GIZMO_GT_button_2d",
|
2018-09-27 19:15:18 +02:00
|
|
|
ICON_VIEW_PERSPECTIVE,
|
2017-12-16 03:57:20 +11:00
|
|
|
}, {
|
|
|
|
|
.opname = "VIEW3D_OT_view_persportho",
|
2018-07-15 14:24:10 +02:00
|
|
|
.gizmo = "GIZMO_GT_button_2d",
|
2018-09-27 19:15:18 +02:00
|
|
|
ICON_VIEW_ORTHO,
|
2017-12-16 03:57:20 +11:00
|
|
|
}, {
|
2018-07-05 16:54:30 +02:00
|
|
|
.opname = "VIEW3D_OT_view_camera",
|
2018-07-15 14:24:10 +02:00
|
|
|
.gizmo = "GIZMO_GT_button_2d",
|
2018-09-27 19:15:18 +02:00
|
|
|
ICON_VIEW_CAMERA,
|
2017-12-16 03:57:20 +11:00
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct NavigateWidgetGroup {
|
2018-07-15 14:24:10 +02:00
|
|
|
wmGizmo *gz_array[MPR_TOTAL];
|
2018-01-23 17:11:13 +11:00
|
|
|
/* Store the view state to check for changes. */
|
|
|
|
|
struct {
|
2018-05-16 08:46:40 +02:00
|
|
|
rcti rect_visible;
|
2018-01-23 17:11:13 +11:00
|
|
|
struct {
|
|
|
|
|
char is_persp;
|
2018-06-01 10:16:01 +02:00
|
|
|
char is_camera;
|
2018-01-23 17:11:13 +11:00
|
|
|
char viewlock;
|
|
|
|
|
} rv3d;
|
|
|
|
|
} state;
|
2017-12-16 03:57:20 +11:00
|
|
|
int region_size[2];
|
|
|
|
|
};
|
|
|
|
|
|
2018-07-15 14:24:10 +02:00
|
|
|
static bool WIDGETGROUP_navigate_poll(const bContext *C, wmGizmoGroupType *UNUSED(gzgt))
|
2017-12-16 03:57:20 +11:00
|
|
|
{
|
2018-06-05 14:24:58 +02:00
|
|
|
View3D *v3d = CTX_wm_view3d(C);
|
2018-07-14 23:49:00 +02:00
|
|
|
if (((U.uiflag & USER_SHOW_GIZMO_AXIS) == 0) ||
|
2018-07-11 10:38:01 +02:00
|
|
|
(v3d->flag2 & V3D_RENDER_OVERRIDE) ||
|
2018-07-15 14:24:10 +02:00
|
|
|
(v3d->gizmo_flag & (V3D_GIZMO_HIDE | V3D_GIZMO_HIDE_NAVIGATE)))
|
2018-07-11 10:38:01 +02:00
|
|
|
{
|
2018-06-05 14:24:58 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
2018-07-11 10:38:01 +02:00
|
|
|
return true;
|
2017-12-16 03:57:20 +11:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-15 14:24:10 +02:00
|
|
|
static void WIDGETGROUP_navigate_setup(const bContext *UNUSED(C), wmGizmoGroup *gzgroup)
|
2017-12-16 03:57:20 +11:00
|
|
|
{
|
|
|
|
|
struct NavigateWidgetGroup *navgroup = MEM_callocN(sizeof(struct NavigateWidgetGroup), __func__);
|
|
|
|
|
|
|
|
|
|
navgroup->region_size[0] = -1;
|
|
|
|
|
navgroup->region_size[1] = -1;
|
|
|
|
|
|
2018-07-05 16:54:30 +02:00
|
|
|
wmOperatorType *ot_view_axis = WM_operatortype_find("VIEW3D_OT_view_axis", true);
|
|
|
|
|
wmOperatorType *ot_view_camera = WM_operatortype_find("VIEW3D_OT_view_camera", true);
|
2017-12-16 03:57:20 +11:00
|
|
|
|
|
|
|
|
for (int i = 0; i < MPR_TOTAL; i++) {
|
2018-07-14 23:49:00 +02:00
|
|
|
const struct NavigateGizmoInfo *info = &g_navigate_params[i];
|
2018-07-15 14:24:10 +02:00
|
|
|
navgroup->gz_array[i] = WM_gizmo_new(info->gizmo, gzgroup, NULL);
|
|
|
|
|
wmGizmo *gz = navgroup->gz_array[i];
|
2018-09-06 12:13:01 +02:00
|
|
|
gz->flag |= WM_GIZMO_MOVE_CURSOR | WM_GIZMO_DRAW_MODAL;
|
2018-08-16 12:47:24 +10:00
|
|
|
|
|
|
|
|
if (i == MPR_ROTATE) {
|
|
|
|
|
gz->color[3] = 0.0f;
|
|
|
|
|
gz->color_hi[3] = 0.1f;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
gz->color[3] = 0.2f;
|
|
|
|
|
gz->color_hi[3] = 0.4f;
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-16 03:57:20 +11:00
|
|
|
|
|
|
|
|
/* may be overwritten later */
|
2018-10-01 12:47:37 +02:00
|
|
|
gz->scale_basis = (GIZMO_SIZE * GIZMO_MINI_FAC) / 2;
|
2018-09-27 19:15:18 +02:00
|
|
|
if (info->icon != 0) {
|
|
|
|
|
PropertyRNA *prop = RNA_struct_find_property(gz->ptr, "icon");
|
|
|
|
|
RNA_property_enum_set(gz->ptr, prop, info->icon);
|
2018-10-01 12:47:37 +02:00
|
|
|
RNA_enum_set(gz->ptr, "draw_options", ED_GIZMO_BUTTON_SHOW_OUTLINE | ED_GIZMO_BUTTON_SHOW_BACKDROP);
|
2017-12-16 03:57:20 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wmOperatorType *ot = WM_operatortype_find(info->opname, true);
|
2018-07-15 14:24:10 +02:00
|
|
|
WM_gizmo_operator_set(gz, 0, ot, NULL);
|
2017-12-16 03:57:20 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
2018-07-15 14:24:10 +02:00
|
|
|
wmGizmo *gz = navgroup->gz_array[MPR_CAMERA];
|
|
|
|
|
WM_gizmo_operator_set(gz, 0, ot_view_camera, NULL);
|
2017-12-16 03:57:20 +11:00
|
|
|
}
|
|
|
|
|
|
2018-01-24 23:29:17 +11:00
|
|
|
/* Click only buttons (not modal). */
|
|
|
|
|
{
|
2018-07-15 14:24:10 +02:00
|
|
|
int gz_ids[] = {MPR_PERSP, MPR_ORTHO, MPR_CAMERA};
|
|
|
|
|
for (int i = 0; i < ARRAY_SIZE(gz_ids); i++) {
|
|
|
|
|
wmGizmo *gz = navgroup->gz_array[gz_ids[i]];
|
|
|
|
|
RNA_boolean_set(gz->ptr, "show_drag", false);
|
2018-01-24 23:29:17 +11:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-29 17:40:19 +11:00
|
|
|
/* Modal operators, don't use initial mouse location since we're clicking on a button. */
|
|
|
|
|
{
|
2018-07-15 14:24:10 +02:00
|
|
|
int gz_ids[] = {MPR_MOVE, MPR_ROTATE, MPR_ZOOM};
|
|
|
|
|
for (int i = 0; i < ARRAY_SIZE(gz_ids); i++) {
|
|
|
|
|
wmGizmo *gz = navgroup->gz_array[gz_ids[i]];
|
|
|
|
|
wmGizmoOpElem *mpop = WM_gizmo_operator_get(gz, 0);
|
2018-01-29 17:40:19 +11:00
|
|
|
RNA_boolean_set(&mpop->ptr, "use_mouse_init", false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-16 03:57:20 +11:00
|
|
|
{
|
2018-07-15 14:24:10 +02:00
|
|
|
wmGizmo *gz = navgroup->gz_array[MPR_ROTATE];
|
|
|
|
|
gz->scale_basis = GIZMO_SIZE / 2;
|
2017-12-16 03:57:20 +11:00
|
|
|
char mapping[6] = {
|
|
|
|
|
RV3D_VIEW_LEFT,
|
|
|
|
|
RV3D_VIEW_RIGHT,
|
|
|
|
|
RV3D_VIEW_FRONT,
|
|
|
|
|
RV3D_VIEW_BACK,
|
|
|
|
|
RV3D_VIEW_BOTTOM,
|
|
|
|
|
RV3D_VIEW_TOP,
|
|
|
|
|
};
|
|
|
|
|
|
2017-12-19 14:36:22 +11:00
|
|
|
for (int part_index = 0; part_index < 6; part_index += 1) {
|
2018-07-15 14:24:10 +02:00
|
|
|
PointerRNA *ptr = WM_gizmo_operator_set(gz, part_index + 1, ot_view_axis, NULL);
|
2017-12-19 14:36:22 +11:00
|
|
|
RNA_enum_set(ptr, "type", mapping[part_index]);
|
2017-12-16 03:57:20 +11:00
|
|
|
}
|
2017-12-19 12:31:40 +11:00
|
|
|
|
|
|
|
|
/* When dragging an axis, use this instead. */
|
2018-07-15 14:24:10 +02:00
|
|
|
gz->drag_part = 0;
|
2017-12-16 03:57:20 +11:00
|
|
|
}
|
|
|
|
|
|
2018-07-15 14:24:10 +02:00
|
|
|
gzgroup->customdata = navgroup;
|
2017-12-16 03:57:20 +11:00
|
|
|
}
|
|
|
|
|
|
2018-07-15 14:24:10 +02:00
|
|
|
static void WIDGETGROUP_navigate_draw_prepare(const bContext *C, wmGizmoGroup *gzgroup)
|
2017-12-16 03:57:20 +11:00
|
|
|
{
|
2018-07-15 14:24:10 +02:00
|
|
|
struct NavigateWidgetGroup *navgroup = gzgroup->customdata;
|
2017-12-16 03:57:20 +11:00
|
|
|
ARegion *ar = CTX_wm_region(C);
|
|
|
|
|
const RegionView3D *rv3d = ar->regiondata;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
2018-07-15 14:24:10 +02:00
|
|
|
copy_v3_v3(navgroup->gz_array[MPR_ROTATE]->matrix_offset[i], rv3d->viewmat[i]);
|
2017-12-16 03:57:20 +11:00
|
|
|
}
|
|
|
|
|
|
2018-05-16 08:46:40 +02:00
|
|
|
rcti rect_visible;
|
|
|
|
|
ED_region_visible_rect(ar, &rect_visible);
|
|
|
|
|
|
|
|
|
|
if ((navgroup->state.rect_visible.xmax == rect_visible.xmax) &&
|
|
|
|
|
(navgroup->state.rect_visible.ymax == rect_visible.ymax) &&
|
2018-01-23 17:11:13 +11:00
|
|
|
(navgroup->state.rv3d.is_persp == rv3d->is_persp) &&
|
2018-06-01 10:16:01 +02:00
|
|
|
(navgroup->state.rv3d.is_camera == (rv3d->persp == RV3D_CAMOB)) &&
|
2018-01-23 17:11:13 +11:00
|
|
|
(navgroup->state.rv3d.viewlock == rv3d->viewlock))
|
2017-12-16 03:57:20 +11:00
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-16 08:46:40 +02:00
|
|
|
navgroup->state.rect_visible = rect_visible;
|
2018-01-23 17:11:13 +11:00
|
|
|
navgroup->state.rv3d.is_persp = rv3d->is_persp;
|
2018-06-01 10:16:01 +02:00
|
|
|
navgroup->state.rv3d.is_camera = (rv3d->persp == RV3D_CAMOB);
|
2018-01-23 17:11:13 +11:00
|
|
|
navgroup->state.rv3d.viewlock = rv3d->viewlock;
|
2018-01-15 20:46:42 +11:00
|
|
|
|
2018-06-13 10:51:52 +02:00
|
|
|
const bool show_rotate = (
|
|
|
|
|
((rv3d->viewlock & RV3D_LOCKED) == 0) &&
|
|
|
|
|
(navgroup->state.rv3d.is_camera == false));
|
|
|
|
|
const bool show_fixed_offset = navgroup->state.rv3d.is_camera;
|
2018-07-14 23:49:00 +02:00
|
|
|
const float icon_size = GIZMO_SIZE;
|
|
|
|
|
const float icon_offset = (icon_size * 0.52f) * GIZMO_OFFSET_FAC * UI_DPI_FAC;
|
|
|
|
|
const float icon_offset_mini = icon_size * GIZMO_MINI_OFFSET_FAC * UI_DPI_FAC;
|
2018-06-13 10:51:52 +02:00
|
|
|
const float co_rotate[2] = {
|
|
|
|
|
rect_visible.xmax - icon_offset,
|
|
|
|
|
rect_visible.ymax - icon_offset,
|
|
|
|
|
};
|
|
|
|
|
const float co[2] = {
|
2018-06-13 21:00:05 +02:00
|
|
|
rect_visible.xmax - ((show_rotate || show_fixed_offset) ? (icon_offset * 2.0f) : (icon_offset_mini * 0.75f)),
|
|
|
|
|
rect_visible.ymax - icon_offset_mini * 0.75f,
|
2018-06-13 10:51:52 +02:00
|
|
|
};
|
2017-12-16 03:57:20 +11:00
|
|
|
|
2018-07-15 14:24:10 +02:00
|
|
|
wmGizmo *gz;
|
2017-12-16 03:57:20 +11:00
|
|
|
|
2018-07-15 14:24:10 +02:00
|
|
|
for (uint i = 0; i < ARRAY_SIZE(navgroup->gz_array); i++) {
|
|
|
|
|
gz = navgroup->gz_array[i];
|
|
|
|
|
WM_gizmo_set_flag(gz, WM_GIZMO_HIDDEN, true);
|
2018-01-23 17:11:13 +11:00
|
|
|
}
|
|
|
|
|
|
2018-06-13 10:51:52 +02:00
|
|
|
/* RV3D_LOCKED or Camera: only show supported buttons. */
|
|
|
|
|
if (show_rotate) {
|
2018-07-15 14:24:10 +02:00
|
|
|
gz = navgroup->gz_array[MPR_ROTATE];
|
|
|
|
|
gz->matrix_basis[3][0] = co_rotate[0];
|
|
|
|
|
gz->matrix_basis[3][1] = co_rotate[1];
|
|
|
|
|
WM_gizmo_set_flag(gz, WM_GIZMO_HIDDEN, false);
|
2018-06-13 10:51:52 +02:00
|
|
|
}
|
2017-12-16 03:57:20 +11:00
|
|
|
|
2018-06-13 10:51:52 +02:00
|
|
|
int icon_mini_slot = 0;
|
2017-12-16 03:57:20 +11:00
|
|
|
|
2018-07-15 14:24:10 +02:00
|
|
|
gz = navgroup->gz_array[MPR_ZOOM];
|
|
|
|
|
gz->matrix_basis[3][0] = co[0] - (icon_offset_mini * icon_mini_slot++);
|
|
|
|
|
gz->matrix_basis[3][1] = co[1];
|
|
|
|
|
WM_gizmo_set_flag(gz, WM_GIZMO_HIDDEN, false);
|
2018-01-23 17:11:13 +11:00
|
|
|
|
2018-07-15 14:24:10 +02:00
|
|
|
gz = navgroup->gz_array[MPR_MOVE];
|
|
|
|
|
gz->matrix_basis[3][0] = co[0] - (icon_offset_mini * icon_mini_slot++);
|
|
|
|
|
gz->matrix_basis[3][1] = co[1];
|
|
|
|
|
WM_gizmo_set_flag(gz, WM_GIZMO_HIDDEN, false);
|
2018-01-23 17:11:13 +11:00
|
|
|
|
2018-06-13 10:51:52 +02:00
|
|
|
if ((rv3d->viewlock & RV3D_LOCKED) == 0) {
|
2018-07-15 14:24:10 +02:00
|
|
|
gz = navgroup->gz_array[MPR_CAMERA];
|
|
|
|
|
gz->matrix_basis[3][0] = co[0] - (icon_offset_mini * icon_mini_slot++);
|
|
|
|
|
gz->matrix_basis[3][1] = co[1];
|
|
|
|
|
WM_gizmo_set_flag(gz, WM_GIZMO_HIDDEN, false);
|
2018-06-01 10:16:01 +02:00
|
|
|
|
2018-06-13 10:51:52 +02:00
|
|
|
if (navgroup->state.rv3d.is_camera == false) {
|
2018-07-15 14:24:10 +02:00
|
|
|
gz = navgroup->gz_array[rv3d->is_persp ? MPR_PERSP : MPR_ORTHO];
|
|
|
|
|
gz->matrix_basis[3][0] = co[0] - (icon_offset_mini * icon_mini_slot++);
|
|
|
|
|
gz->matrix_basis[3][1] = co[1];
|
|
|
|
|
WM_gizmo_set_flag(gz, WM_GIZMO_HIDDEN, false);
|
2018-06-01 10:16:01 +02:00
|
|
|
}
|
2018-01-23 17:11:13 +11:00
|
|
|
}
|
2017-12-16 03:57:20 +11:00
|
|
|
}
|
|
|
|
|
|
2018-07-15 14:24:10 +02:00
|
|
|
void VIEW3D_GGT_navigate(wmGizmoGroupType *gzgt)
|
2017-12-16 03:57:20 +11:00
|
|
|
{
|
2018-07-15 14:24:10 +02:00
|
|
|
gzgt->name = "View3D Navigate";
|
|
|
|
|
gzgt->idname = "VIEW3D_GGT_navigate";
|
2017-12-16 03:57:20 +11:00
|
|
|
|
2018-07-15 14:24:10 +02:00
|
|
|
gzgt->flag |= (WM_GIZMOGROUPTYPE_PERSISTENT |
|
2018-07-14 23:49:00 +02:00
|
|
|
WM_GIZMOGROUPTYPE_SCALE |
|
|
|
|
|
WM_GIZMOGROUPTYPE_DRAW_MODAL_ALL);
|
2017-12-16 03:57:20 +11:00
|
|
|
|
2018-07-15 14:24:10 +02:00
|
|
|
gzgt->poll = WIDGETGROUP_navigate_poll;
|
|
|
|
|
gzgt->setup = WIDGETGROUP_navigate_setup;
|
|
|
|
|
gzgt->draw_prepare = WIDGETGROUP_navigate_draw_prepare;
|
2017-12-16 03:57:20 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** \} */
|