WM: rename files, manipulator -> gizmo

Edit doxy files and header guards only.
This commit is contained in:
Campbell Barton
2018-07-14 23:16:34 +02:00
parent fc7c934cfc
commit cd16004132
70 changed files with 195 additions and 195 deletions

View File

@@ -600,7 +600,7 @@ function(SETUP_BLENDER_SORTED_LIBS)
bf_editor_curve bf_editor_curve
bf_editor_gpencil bf_editor_gpencil
bf_editor_interface bf_editor_interface
bf_editor_manipulator_library bf_editor_gizmo_library
bf_editor_mesh bf_editor_mesh
bf_editor_metaball bf_editor_metaball
bf_editor_object bf_editor_object
@@ -635,7 +635,7 @@ function(SETUP_BLENDER_SORTED_LIBS)
bf_physics bf_physics
bf_nodes bf_nodes
bf_rna bf_rna
bf_editor_manipulator_library # rna -> manipulator bad-level calls bf_editor_gizmo_library # rna -> gizmo bad-level calls
bf_python bf_python
bf_imbuf bf_imbuf
bf_blenlib bf_blenlib

View File

@@ -30,7 +30,7 @@ if(WITH_BLENDER)
add_subdirectory(interface) add_subdirectory(interface)
add_subdirectory(io) add_subdirectory(io)
add_subdirectory(lattice) add_subdirectory(lattice)
add_subdirectory(manipulator_library) add_subdirectory(gizmo_library)
add_subdirectory(mask) add_subdirectory(mask)
add_subdirectory(mesh) add_subdirectory(mesh)
add_subdirectory(metaball) add_subdirectory(metaball)

View File

@@ -37,24 +37,24 @@ set(INC_SYS
) )
set(SRC set(SRC
manipulator_draw_utils.c gizmo_draw_utils.c
manipulator_geometry.h gizmo_geometry.h
manipulator_library_intern.h gizmo_library_intern.h
manipulator_library_presets.c gizmo_library_presets.c
manipulator_library_utils.c gizmo_library_utils.c
geometry/geom_arrow_manipulator.c geometry/geom_arrow_gizmo.c
geometry/geom_cube_manipulator.c geometry/geom_cube_gizmo.c
geometry/geom_dial_manipulator.c geometry/geom_dial_gizmo.c
manipulator_types/arrow2d_manipulator.c gizmo_types/arrow2d_gizmo.c
manipulator_types/arrow3d_manipulator.c gizmo_types/arrow3d_gizmo.c
manipulator_types/button2d_manipulator.c gizmo_types/button2d_gizmo.c
manipulator_types/cage2d_manipulator.c gizmo_types/cage2d_gizmo.c
manipulator_types/cage3d_manipulator.c gizmo_types/cage3d_gizmo.c
manipulator_types/dial3d_manipulator.c gizmo_types/dial3d_gizmo.c
manipulator_types/grab3d_manipulator.c gizmo_types/grab3d_gizmo.c
manipulator_types/primitive3d_manipulator.c gizmo_types/primitive3d_gizmo.c
) )
add_definitions(${GL_DEFINITIONS}) add_definitions(${GL_DEFINITIONS})
blender_add_lib(bf_editor_manipulator_library "${SRC}" "${INC}" "${INC_SYS}") blender_add_lib(bf_editor_gizmo_library "${SRC}" "${INC}" "${INC_SYS}")

View File

@@ -21,11 +21,11 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file geom_arrow_manipulator.c /** \file geom_arrow_gizmo.c
* \ingroup wm * \ingroup wm
*/ */
#include "../manipulator_geometry.h" #include "../gizmo_geometry.h"
static float verts[][3] = { static float verts[][3] = {
{-0.000000, 0.012320, 0.000000}, {-0.000000, 0.012320, 0.000000},

View File

@@ -23,11 +23,11 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file geom_cube_manipulator.c /** \file geom_cube_gizmo.c
* \ingroup wm * \ingroup wm
*/ */
#include "../manipulator_geometry.h" #include "../gizmo_geometry.h"
static const float verts[][3] = { static const float verts[][3] = {
{1.000000, 1.000000, -1.000000}, {1.000000, 1.000000, -1.000000},

View File

@@ -21,11 +21,11 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file geom_dial_manipulator.c /** \file geom_dial_gizmo.c
* \ingroup wm * \ingroup wm
*/ */
#include "../manipulator_geometry.h" #include "../gizmo_geometry.h"
static const float verts[][3] = { static const float verts[][3] = {
{1.034000, 0.000000, 0.000000}, {1.034000, 0.000000, 0.000000},

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file manipulator_draw_utils.c /** \file gizmo_draw_utils.c
* \ingroup wm * \ingroup wm
*/ */
@@ -54,7 +54,7 @@
#include "wm.h" #include "wm.h"
/* own includes */ /* own includes */
#include "manipulator_library_intern.h" #include "gizmo_library_intern.h"
/** /**
* Main draw call for ManipulatorGeomInfo data * Main draw call for ManipulatorGeomInfo data

View File

@@ -21,7 +21,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file manipulator_geometry.h /** \file gizmo_geometry.h
* \ingroup wm * \ingroup wm
* *
* \name Manipulator Geometry * \name Manipulator Geometry
@@ -31,8 +31,8 @@
*/ */
#ifndef __MANIPULATOR_GEOMETRY_H__ #ifndef __GIZMO_GEOMETRY_H__
#define __MANIPULATOR_GEOMETRY_H__ #define __GIZMO_GEOMETRY_H__
typedef struct ManipulatorGeomInfo { typedef struct ManipulatorGeomInfo {
int nverts; int nverts;
@@ -51,4 +51,4 @@ extern ManipulatorGeomInfo wm_manipulator_geom_data_cube;
/* dial manipulator */ /* dial manipulator */
extern ManipulatorGeomInfo wm_manipulator_geom_data_dial; extern ManipulatorGeomInfo wm_manipulator_geom_data_dial;
#endif /* __MANIPULATOR_GEOMETRY_H__ */ #endif /* __GIZMO_GEOMETRY_H__ */

View File

@@ -23,12 +23,12 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file manipulator_library_intern.h /** \file gizmo_library_intern.h
* \ingroup wm * \ingroup wm
*/ */
#ifndef __MANIPULATOR_LIBRARY_INTERN_H__ #ifndef __GIZMO_LIBRARY_INTERN_H__
#define __MANIPULATOR_LIBRARY_INTERN_H__ #define __GIZMO_LIBRARY_INTERN_H__
/* distance around which manipulators respond to input (and get highlighted) */ /* distance around which manipulators respond to input (and get highlighted) */
#define MANIPULATOR_HOTSPOT 14.0f #define MANIPULATOR_HOTSPOT 14.0f
@@ -100,7 +100,7 @@ bool manipulator_window_project_3d(
/* -------------------------------------------------------------------- */ /* -------------------------------------------------------------------- */
/* Manipulator drawing */ /* Manipulator drawing */
#include "manipulator_geometry.h" #include "gizmo_geometry.h"
void wm_manipulator_geometryinfo_draw(const struct ManipulatorGeomInfo *info, const bool select, const float color[4]); void wm_manipulator_geometryinfo_draw(const struct ManipulatorGeomInfo *info, const bool select, const float color[4]);
void wm_manipulator_vec_draw( void wm_manipulator_vec_draw(
@@ -108,4 +108,4 @@ void wm_manipulator_vec_draw(
uint pos, uint primitive_type); uint pos, uint primitive_type);
#endif /* __MANIPULATOR_LIBRARY_INTERN_H__ */ #endif /* __GIZMO_LIBRARY_INTERN_H__ */

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/manipulator_library/manipulator_library_presets.c /** \file blender/editors/gizmo_library/gizmo_library_presets.c
* \ingroup wm * \ingroup wm
* *
* \name Manipulator Lib Presets * \name Manipulator Lib Presets
@@ -54,8 +54,8 @@
#include "ED_screen.h" #include "ED_screen.h"
/* own includes */ /* own includes */
#include "ED_manipulator_library.h" /* own include */ #include "ED_gizmo_library.h" /* own include */
#include "manipulator_library_intern.h" /* own include */ #include "gizmo_library_intern.h" /* own include */
/* TODO, this is to be used by RNA. might move to ED_manipulator_library */ /* TODO, this is to be used by RNA. might move to ED_manipulator_library */

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file manipulator_library_utils.c /** \file gizmo_library_utils.c
* \ingroup wm * \ingroup wm
* *
* \name Manipulator Library Utilities * \name Manipulator Library Utilities
@@ -47,7 +47,7 @@
#include "ED_view3d.h" #include "ED_view3d.h"
/* own includes */ /* own includes */
#include "manipulator_library_intern.h" #include "gizmo_library_intern.h"
/* factor for precision tweaking */ /* factor for precision tweaking */
#define MANIPULATOR_PRECISION_FAC 0.05f #define MANIPULATOR_PRECISION_FAC 0.05f

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file arrow2d_manipulator.c /** \file arrow2d_gizmo.c
* \ingroup wm * \ingroup wm
* *
* \name 2D Arrow Manipulator * \name 2D Arrow Manipulator
@@ -54,12 +54,12 @@
#include "WM_types.h" #include "WM_types.h"
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
/* own includes */ /* own includes */
#include "WM_api.h" #include "WM_api.h"
#include "../manipulator_library_intern.h" #include "../gizmo_library_intern.h"
static void arrow2d_draw_geom(wmManipulator *mpr, const float matrix[4][4], const float color[4]) static void arrow2d_draw_geom(wmManipulator *mpr, const float matrix[4][4], const float color[4])
{ {

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file arrow3d_manipulator.c /** \file arrow3d_gizmo.c
* \ingroup wm * \ingroup wm
* *
* \name Arrow Manipulator * \name Arrow Manipulator
@@ -63,11 +63,11 @@
#include "ED_view3d.h" #include "ED_view3d.h"
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
/* own includes */ /* own includes */
#include "../manipulator_geometry.h" #include "../gizmo_geometry.h"
#include "../manipulator_library_intern.h" #include "../gizmo_library_intern.h"
/* to use custom arrows exported to geom_arrow_manipulator.c */ /* to use custom arrows exported to geom_arrow_manipulator.c */
//#define USE_MANIPULATOR_CUSTOM_ARROWS //#define USE_MANIPULATOR_CUSTOM_ARROWS

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file button2d_manipulator.c /** \file button2d_gizmo.c
* \ingroup wm * \ingroup wm
* *
* \name Button Manipulator * \name Button Manipulator
@@ -56,15 +56,15 @@
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_view3d.h" #include "ED_view3d.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "UI_interface.h" #include "UI_interface.h"
#include "UI_interface_icons.h" #include "UI_interface_icons.h"
#include "UI_resources.h" #include "UI_resources.h"
/* own includes */ /* own includes */
#include "../manipulator_geometry.h" #include "../gizmo_geometry.h"
#include "../manipulator_library_intern.h" #include "../gizmo_library_intern.h"
typedef struct ButtonManipulator2D { typedef struct ButtonManipulator2D {
wmManipulator manipulator; wmManipulator manipulator;

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file cage2d_manipulator.c /** \file cage2d_gizmo.c
* \ingroup wm * \ingroup wm
* *
* \name Cage Manipulator * \name Cage Manipulator
@@ -59,10 +59,10 @@
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_view3d.h" #include "ED_view3d.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
/* own includes */ /* own includes */
#include "../manipulator_library_intern.h" #include "../gizmo_library_intern.h"
#define MANIPULATOR_RESIZER_SIZE 10.0f #define MANIPULATOR_RESIZER_SIZE 10.0f
#define MANIPULATOR_MARGIN_OFFSET_SCALE 1.5f #define MANIPULATOR_MARGIN_OFFSET_SCALE 1.5f

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file cage3d_manipulator.c /** \file cage3d_gizmo.c
* \ingroup wm * \ingroup wm
* *
* \name Cage Manipulator * \name Cage Manipulator
@@ -58,10 +58,10 @@
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_view3d.h" #include "ED_view3d.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
/* own includes */ /* own includes */
#include "../manipulator_library_intern.h" #include "../gizmo_library_intern.h"
#define MANIPULATOR_RESIZER_SIZE 10.0f #define MANIPULATOR_RESIZER_SIZE 10.0f
#define MANIPULATOR_MARGIN_OFFSET_SCALE 1.5f #define MANIPULATOR_MARGIN_OFFSET_SCALE 1.5f

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file dial3d_manipulator.c /** \file dial3d_gizmo.c
* \ingroup wm * \ingroup wm
* *
* \name Dial Manipulator * \name Dial Manipulator
@@ -61,11 +61,11 @@
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_view3d.h" #include "ED_view3d.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
/* own includes */ /* own includes */
#include "../manipulator_geometry.h" #include "../gizmo_geometry.h"
#include "../manipulator_library_intern.h" #include "../gizmo_library_intern.h"
/* to use custom dials exported to geom_dial_manipulator.c */ /* to use custom dials exported to geom_dial_manipulator.c */
// #define USE_MANIPULATOR_CUSTOM_DIAL // #define USE_MANIPULATOR_CUSTOM_DIAL

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file grab3d_manipulator.c /** \file grab3d_gizmo.c
* \ingroup wm * \ingroup wm
* *
* \name Grab Manipulator * \name Grab Manipulator
@@ -56,11 +56,11 @@
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_view3d.h" #include "ED_view3d.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
/* own includes */ /* own includes */
#include "../manipulator_geometry.h" #include "../gizmo_geometry.h"
#include "../manipulator_library_intern.h" #include "../gizmo_library_intern.h"
typedef struct GrabManipulator3D { typedef struct GrabManipulator3D {
wmManipulator manipulator; wmManipulator manipulator;

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file primitive3d_manipulator.c /** \file primitive3d_gizmo.c
* \ingroup wm * \ingroup wm
* *
* \name Primitive Manipulator * \name Primitive Manipulator
@@ -50,10 +50,10 @@
#include "WM_api.h" #include "WM_api.h"
#include "WM_types.h" #include "WM_types.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
/* own includes */ /* own includes */
#include "../manipulator_library_intern.h" #include "../gizmo_library_intern.h"
static float verts_plane[4][3] = { static float verts_plane[4][3] = {
{-1, -1, 0}, {-1, -1, 0},

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file ED_manipulator_library.h /** \file ED_gizmo_library.h
* \ingroup wm * \ingroup wm
* *
* \name Generic Manipulators. * \name Generic Manipulators.
@@ -27,8 +27,8 @@
*/ */
#ifndef __ED_MANIPULATOR_LIBRARY_H__ #ifndef __ED_GIZMO_LIBRARY_H__
#define __ED_MANIPULATOR_LIBRARY_H__ #define __ED_GIZMO_LIBRARY_H__
/* initialize manipulators */ /* initialize manipulators */
void ED_manipulatortypes_arrow_2d(void); void ED_manipulatortypes_arrow_2d(void);
@@ -219,4 +219,4 @@ enum {
ED_MANIPULATOR_PRIMITIVE_STYLE_PLANE = 0, ED_MANIPULATOR_PRIMITIVE_STYLE_PLANE = 0,
}; };
#endif /* __ED_MANIPULATOR_LIBRARY_H__ */ #endif /* __ED_GIZMO_LIBRARY_H__ */

View File

@@ -44,7 +44,7 @@ set(INC_SYS
set(SRC set(SRC
editface.c editface.c
editmesh_add.c editmesh_add.c
editmesh_add_manipulator.c editmesh_add_gizmo.c
editmesh_bevel.c editmesh_bevel.c
editmesh_bisect.c editmesh_bisect.c
editmesh_extrude.c editmesh_extrude.c

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/mesh/editmesh_add_manipulator.c /** \file blender/editors/mesh/editmesh_add_gizmo.c
* \ingroup edmesh * \ingroup edmesh
* *
* Creation manipulators. * Creation manipulators.
@@ -34,7 +34,7 @@
#include "BKE_context.h" #include "BKE_context.h"
#include "BKE_editmesh.h" #include "BKE_editmesh.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "ED_mesh.h" #include "ED_mesh.h"
#include "ED_object.h" #include "ED_object.h"
#include "ED_screen.h" #include "ED_screen.h"

View File

@@ -57,7 +57,7 @@
#define USE_MANIPULATOR #define USE_MANIPULATOR
#ifdef USE_MANIPULATOR #ifdef USE_MANIPULATOR
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "ED_undo.h" #include "ED_undo.h"
#endif #endif

View File

@@ -53,7 +53,7 @@
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_transform.h" #include "ED_transform.h"
#include "ED_view3d.h" #include "ED_view3d.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "UI_resources.h" #include "UI_resources.h"

View File

@@ -57,7 +57,7 @@
#define USE_MANIPULATOR #define USE_MANIPULATOR
#ifdef USE_MANIPULATOR #ifdef USE_MANIPULATOR
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "ED_undo.h" #include "ED_undo.h"
#endif #endif

View File

@@ -67,7 +67,7 @@
#include "ED_clip.h" #include "ED_clip.h"
#include "ED_mask.h" #include "ED_mask.h"
#include "ED_sequencer.h" #include "ED_sequencer.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "io_ops.h" #include "io_ops.h"

View File

@@ -48,7 +48,7 @@ set(SRC
node_draw.c node_draw.c
node_edit.c node_edit.c
node_group.c node_group.c
node_manipulators.c node_gizmo.c
node_ops.c node_ops.c
node_relationships.c node_relationships.c
node_select.c node_select.c

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/space_node/node_manipulators.c /** \file blender/editors/space_node/node_gizmo.c
* \ingroup spnode * \ingroup spnode
*/ */
@@ -34,7 +34,7 @@
#include "BKE_main.h" #include "BKE_main.h"
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "IMB_imbuf_types.h" #include "IMB_imbuf_types.h"

View File

@@ -55,14 +55,14 @@ set(SRC
view3d_walk.c view3d_walk.c
view3d_header.c view3d_header.c
view3d_iterators.c view3d_iterators.c
view3d_manipulator_armature.c view3d_gizmo_armature.c
view3d_manipulator_camera.c view3d_gizmo_camera.c
view3d_manipulator_empty.c view3d_gizmo_empty.c
view3d_manipulator_forcefield.c view3d_gizmo_forcefield.c
view3d_manipulator_lamp.c view3d_gizmo_lamp.c
view3d_manipulator_navigate.c view3d_gizmo_navigate.c
view3d_manipulator_navigate_type.c view3d_gizmo_navigate_type.c
view3d_manipulator_ruler.c view3d_gizmo_ruler.c
view3d_ops.c view3d_ops.c
view3d_project.c view3d_project.c
view3d_ruler.c view3d_ruler.c

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/space_view3d/view3d_manipulator_armature.c /** \file blender/editors/space_view3d/view3d_gizmo_armature.c
* \ingroup spview3d * \ingroup spview3d
*/ */
@@ -36,7 +36,7 @@
#include "ED_armature.h" #include "ED_armature.h"
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "UI_resources.h" #include "UI_resources.h"

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/space_view3d/view3d_manipulator_camera.c /** \file blender/editors/space_view3d/view3d_gizmo_camera.c
* \ingroup spview3d * \ingroup spview3d
*/ */
@@ -35,7 +35,7 @@
#include "ED_armature.h" #include "ED_armature.h"
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "UI_resources.h" #include "UI_resources.h"

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/space_view3d/view3d_manipulator_empty.c /** \file blender/editors/space_view3d/view3d_gizmo_empty.c
* \ingroup spview3d * \ingroup spview3d
*/ */
@@ -35,7 +35,7 @@
#include "DNA_lamp_types.h" #include "DNA_lamp_types.h"
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "UI_resources.h" #include "UI_resources.h"

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/space_view3d/view3d_manipulator_forcefield.c /** \file blender/editors/space_view3d/view3d_gizmo_forcefield.c
* \ingroup spview3d * \ingroup spview3d
*/ */
@@ -34,7 +34,7 @@
#include "DNA_object_force_types.h" #include "DNA_object_force_types.h"
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "UI_resources.h" #include "UI_resources.h"

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/space_view3d/view3d_manipulator_lamp.c /** \file blender/editors/space_view3d/view3d_gizmo_lamp.c
* \ingroup spview3d * \ingroup spview3d
*/ */
@@ -34,7 +34,7 @@
#include "DNA_lamp_types.h" #include "DNA_lamp_types.h"
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "UI_resources.h" #include "UI_resources.h"

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/space_view3d/view3d_manipulator_navigate.c /** \file blender/editors/space_view3d/view3d_gizmo_navigate.c
* \ingroup spview3d * \ingroup spview3d
*/ */
@@ -32,7 +32,7 @@
#include "DNA_object_types.h" #include "DNA_object_types.h"
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "UI_interface.h" #include "UI_interface.h"
#include "UI_resources.h" #include "UI_resources.h"

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file view3d_manipulator_navigate_type.c /** \file view3d_gizmo_navigate_type.c
* \ingroup wm * \ingroup wm
* *
* \name Custom Orientation/Navigation Manipulator for the 3D View * \name Custom Orientation/Navigation Manipulator for the 3D View

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/space_view3d/view3d_manipulator_ruler.c /** \file blender/editors/space_view3d/view3d_gizmo_ruler.c
* \ingroup spview3d * \ingroup spview3d
*/ */

View File

@@ -46,8 +46,8 @@ set(SRC
transform_conversions.c transform_conversions.c
transform_generics.c transform_generics.c
transform_input.c transform_input.c
transform_manipulator_2d.c transform_gizmo_2d.c
transform_manipulator_3d.c transform_gizmo_3d.c
transform_ops.c transform_ops.c
transform_orientations.c transform_orientations.c
transform_snap.c transform_snap.c

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/transform/transform_manipulator_2d.c /** \file blender/editors/transform/transform_gizmo_2d.c
* \ingroup edtransform * \ingroup edtransform
* *
* \name 2D Transform Manipulator * \name 2D Transform Manipulator
@@ -52,7 +52,7 @@
#include "ED_image.h" #include "ED_image.h"
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_uvedit.h" #include "ED_uvedit.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "transform.h" /* own include */ #include "transform.h" /* own include */

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/editors/transform/transform_manipulator_3d.c /** \file blender/editors/transform/transform_gizmo_3d.c
* \ingroup edtransform * \ingroup edtransform
* *
* \name 3D Transform Manipulator * \name 3D Transform Manipulator
@@ -74,7 +74,7 @@
#include "ED_view3d.h" #include "ED_view3d.h"
#include "ED_gpencil.h" #include "ED_gpencil.h"
#include "ED_screen.h" #include "ED_screen.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
#include "UI_resources.h" #include "UI_resources.h"

View File

@@ -63,7 +63,7 @@ set(SRC
../include/ED_lattice.h ../include/ED_lattice.h
../include/ED_logic.h ../include/ED_logic.h
../include/ED_markers.h ../include/ED_markers.h
../include/ED_manipulator_library.h ../include/ED_gizmo_library.h
../include/ED_mask.h ../include/ED_mask.h
../include/ED_mball.h ../include/ED_mball.h
../include/ED_mesh.h ../include/ED_mesh.h

View File

@@ -92,7 +92,7 @@ set(DEFSRC
rna_userdef.c rna_userdef.c
rna_vfont.c rna_vfont.c
rna_wm.c rna_wm.c
rna_wm_manipulator.c rna_wm_gizmo.c
rna_workspace.c rna_workspace.c
rna_world.c rna_world.c
) )
@@ -121,7 +121,7 @@ set(APISRC
rna_ui_api.c rna_ui_api.c
rna_vfont_api.c rna_vfont_api.c
rna_wm_api.c rna_wm_api.c
rna_wm_manipulator_api.c rna_wm_gizmo_api.c
rna_workspace_api.c rna_workspace_api.c
) )

View File

@@ -3443,7 +3443,7 @@ static RNAProcessItem PROCESS_ITEMS[] = {
{"rna_userdef.c", NULL, RNA_def_userdef}, {"rna_userdef.c", NULL, RNA_def_userdef},
{"rna_vfont.c", "rna_vfont_api.c", RNA_def_vfont}, {"rna_vfont.c", "rna_vfont_api.c", RNA_def_vfont},
{"rna_wm.c", "rna_wm_api.c", RNA_def_wm}, {"rna_wm.c", "rna_wm_api.c", RNA_def_wm},
{"rna_wm_manipulator.c", "rna_wm_manipulator_api.c", RNA_def_wm_manipulator}, {"rna_wm_gizmo.c", "rna_wm_gizmo_api.c", RNA_def_wm_manipulator},
{"rna_workspace.c", "rna_workspace_api.c", RNA_def_workspace}, {"rna_workspace.c", "rna_workspace_api.c", RNA_def_workspace},
{"rna_world.c", NULL, RNA_def_world}, {"rna_world.c", NULL, RNA_def_world},
{"rna_movieclip.c", NULL, RNA_def_movieclip}, {"rna_movieclip.c", NULL, RNA_def_movieclip},

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/makesrna/intern/rna_wm_manipulator.c /** \file blender/makesrna/intern/rna_wm_gizmo.c
* \ingroup RNA * \ingroup RNA
*/ */

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/makesrna/intern/rna_wm_manipulator_api.c /** \file blender/makesrna/intern/rna_wm_gizmo_api.c
* \ingroup RNA * \ingroup RNA
*/ */
@@ -44,7 +44,7 @@
#include "UI_interface.h" #include "UI_interface.h"
#include "BKE_context.h" #include "BKE_context.h"
#include "ED_manipulator_library.h" #include "ED_gizmo_library.h"
static void rna_manipulator_draw_preset_box( static void rna_manipulator_draw_preset_box(
wmManipulator *mpr, float matrix[16], int select_id) wmManipulator *mpr, float matrix[16], int select_id)
@@ -242,7 +242,7 @@ void RNA_api_manipulator(StructRNA *srna)
/* Property API */ /* Property API */
/* Define Properties */ /* Define Properties */
/* note, 'target_set_handler' is defined in 'bpy_rna_manipulator.c' */ /* note, 'target_set_handler' is defined in 'bpy_rna_gizmo.c' */
func = RNA_def_function(srna, "target_set_prop", "rna_manipulator_target_set_prop"); func = RNA_def_function(srna, "target_set_prop", "rna_manipulator_target_set_prop");
RNA_def_function_flag(func, FUNC_USE_REPORTS); RNA_def_function_flag(func, FUNC_USE_REPORTS);
RNA_def_function_ui_description(func, ""); RNA_def_function_ui_description(func, "");
@@ -270,7 +270,7 @@ void RNA_api_manipulator(StructRNA *srna)
RNA_def_function_return(func, parm); RNA_def_function_return(func, parm);
/* Access Properties */ /* Access Properties */
/* note, 'target_get', 'target_set' is defined in 'bpy_rna_manipulator.c' */ /* note, 'target_get', 'target_set' is defined in 'bpy_rna_gizmo.c' */
func = RNA_def_function(srna, "target_is_valid", "rna_manipulator_target_is_valid"); func = RNA_def_function(srna, "target_is_valid", "rna_manipulator_target_is_valid");
RNA_def_function_flag(func, FUNC_USE_REPORTS); RNA_def_function_flag(func, FUNC_USE_REPORTS);
parm = RNA_def_string(func, "property", NULL, 0, "", "Property identifier"); parm = RNA_def_string(func, "property", NULL, 0, "", "Property identifier");

View File

@@ -66,7 +66,7 @@ set(SRC
bpy_intern_string.c bpy_intern_string.c
bpy_library_load.c bpy_library_load.c
bpy_library_write.c bpy_library_write.c
bpy_manipulator_wrap.c bpy_gizmo_wrap.c
bpy_msgbus.c bpy_msgbus.c
bpy_operator.c bpy_operator.c
bpy_operator_wrap.c bpy_operator_wrap.c
@@ -78,7 +78,7 @@ set(SRC
bpy_rna_callback.c bpy_rna_callback.c
bpy_rna_driver.c bpy_rna_driver.c
bpy_rna_id_collection.c bpy_rna_id_collection.c
bpy_rna_manipulator.c bpy_rna_gizmo.c
bpy_traceback.c bpy_traceback.c
bpy_utils_previews.c bpy_utils_previews.c
bpy_utils_units.c bpy_utils_units.c
@@ -105,7 +105,7 @@ set(SRC
bpy_driver.h bpy_driver.h
bpy_intern_string.h bpy_intern_string.h
bpy_library.h bpy_library.h
bpy_manipulator_wrap.h bpy_gizmo_wrap.h
bpy_msgbus.h bpy_msgbus.h
bpy_operator.h bpy_operator.h
bpy_operator_wrap.h bpy_operator_wrap.h
@@ -116,7 +116,7 @@ set(SRC
bpy_rna_callback.h bpy_rna_callback.h
bpy_rna_driver.h bpy_rna_driver.h
bpy_rna_id_collection.h bpy_rna_id_collection.h
bpy_rna_manipulator.h bpy_rna_gizmo.h
bpy_traceback.h bpy_traceback.h
bpy_utils_previews.h bpy_utils_previews.h
bpy_utils_units.h bpy_utils_units.h

View File

@@ -46,7 +46,7 @@
#include "bpy_rna.h" #include "bpy_rna.h"
#include "bpy_app.h" #include "bpy_app.h"
#include "bpy_rna_id_collection.h" #include "bpy_rna_id_collection.h"
#include "bpy_rna_manipulator.h" #include "bpy_rna_gizmo.h"
#include "bpy_props.h" #include "bpy_props.h"
#include "bpy_library.h" #include "bpy_library.h"
#include "bpy_operator.h" #include "bpy_operator.h"

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/python/intern/bpy_manipulator_wrap.c /** \file blender/python/intern/bpy_gizmo_wrap.c
* \ingroup pythonintern * \ingroup pythonintern
* *
* This file is so Python can define widget-group's that C can call into. * This file is so Python can define widget-group's that C can call into.
@@ -43,7 +43,7 @@
#include "bpy_rna.h" #include "bpy_rna.h"
#include "bpy_intern_string.h" #include "bpy_intern_string.h"
#include "bpy_manipulator_wrap.h" /* own include */ #include "bpy_gizmo_wrap.h" /* own include */
/* we may want to add, but not now */ /* we may want to add, but not now */

View File

@@ -18,12 +18,12 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/python/intern/bpy_manipulator_wrap.h /** \file blender/python/intern/bpy_gizmo_wrap.h
* \ingroup pythonintern * \ingroup pythonintern
*/ */
#ifndef __BPY_MANIPULATOR_WRAP_H__ #ifndef __BPY_GIZMO_WRAP_H__
#define __BPY_MANIPULATOR_WRAP_H__ #define __BPY_GIZMO_WRAP_H__
struct wmManipulatorType; struct wmManipulatorType;
struct wmManipulatorGroupType; struct wmManipulatorGroupType;
@@ -32,4 +32,4 @@ struct wmManipulatorGroupType;
void BPY_RNA_manipulator_wrapper(struct wmManipulatorType *wt, void *userdata); void BPY_RNA_manipulator_wrapper(struct wmManipulatorType *wt, void *userdata);
void BPY_RNA_manipulatorgroup_wrapper(struct wmManipulatorGroupType *wgt, void *userdata); void BPY_RNA_manipulatorgroup_wrapper(struct wmManipulatorGroupType *wgt, void *userdata);
#endif /* __BPY_MANIPULATOR_WRAP_H__ */ #endif /* __BPY_GIZMO_WRAP_H__ */

View File

@@ -44,7 +44,7 @@
#include "bpy_capi_utils.h" #include "bpy_capi_utils.h"
#include "bpy_rna.h" #include "bpy_rna.h"
#include "bpy_intern_string.h" #include "bpy_intern_string.h"
#include "bpy_manipulator_wrap.h" /* own include */ #include "bpy_gizmo_wrap.h" /* own include */
#include "bpy_msgbus.h" /* own include */ #include "bpy_msgbus.h" /* own include */

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/python/intern/bpy_rna_manipulator.c /** \file blender/python/intern/bpy_rna_gizmo.c
* \ingroup pythonintern * \ingroup pythonintern
* *
* . * .
@@ -38,7 +38,7 @@
#include "WM_types.h" #include "WM_types.h"
#include "bpy_capi_utils.h" #include "bpy_capi_utils.h"
#include "bpy_rna_manipulator.h" #include "bpy_rna_gizmo.h"
#include "../generic/py_capi_utils.h" #include "../generic/py_capi_utils.h"
#include "../generic/python_utildefines.h" #include "../generic/python_utildefines.h"

View File

@@ -20,13 +20,13 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/python/intern/bpy_rna_manipulator.h /** \file blender/python/intern/bpy_rna_gizmo.h
* \ingroup pythonintern * \ingroup pythonintern
*/ */
#ifndef __BPY_RNA_MANIPULATOR_H__ #ifndef __BPY_RNA_GIZMO_H__
#define __BPY_RNA_MANIPULATOR_H__ #define __BPY_RNA_GIZMO_H__
int BPY_rna_manipulator_module(PyObject *); int BPY_rna_manipulator_module(PyObject *);
#endif /* __BPY_RNA_MANIPULATOR_H__ */ #endif /* __BPY_RNA_GIZMO_H__ */

View File

@@ -25,8 +25,8 @@
set(INC set(INC
. .
manipulators gizmo
manipulators/intern gizmo/intern
../blenfont ../blenfont
../blenkernel ../blenkernel
../blenlib ../blenlib
@@ -79,12 +79,12 @@ set(SRC
intern/wm_tooltip.c intern/wm_tooltip.c
intern/wm_uilist_type.c intern/wm_uilist_type.c
intern/wm_window.c intern/wm_window.c
manipulators/intern/wm_manipulator.c gizmo/intern/wm_gizmo.c
manipulators/intern/wm_manipulator_group.c gizmo/intern/wm_gizmo_group.c
manipulators/intern/wm_manipulator_group_type.c gizmo/intern/wm_gizmo_group_type.c
manipulators/intern/wm_manipulator_map.c gizmo/intern/wm_gizmo_map.c
manipulators/intern/wm_manipulator_target_props.c gizmo/intern/wm_gizmo_target_props.c
manipulators/intern/wm_manipulator_type.c gizmo/intern/wm_gizmo_type.c
message_bus/intern/wm_message_bus.c message_bus/intern/wm_message_bus.c
message_bus/intern/wm_message_bus_rna.c message_bus/intern/wm_message_bus_rna.c
message_bus/intern/wm_message_bus_static.c message_bus/intern/wm_message_bus_static.c
@@ -100,11 +100,11 @@ set(SRC
wm_event_types.h wm_event_types.h
wm_files.h wm_files.h
wm_window.h wm_window.h
manipulators/WM_manipulator_api.h gizmo/WM_gizmo_api.h
manipulators/WM_manipulator_types.h gizmo/WM_gizmo_types.h
manipulators/wm_manipulator_fn.h gizmo/wm_gizmo_fn.h
manipulators/wm_manipulator_wmapi.h gizmo/wm_gizmo_wmapi.h
manipulators/intern/wm_manipulator_intern.h gizmo/intern/wm_gizmo_intern.h
message_bus/intern/wm_message_bus_intern.h message_bus/intern/wm_message_bus_intern.h
message_bus/wm_message_bus.h message_bus/wm_message_bus.h
) )

View File

@@ -121,10 +121,10 @@ struct ImBuf;
/* exported types for WM */ /* exported types for WM */
#include "wm_cursors.h" #include "wm_cursors.h"
#include "wm_event_types.h" #include "wm_event_types.h"
#include "manipulators/WM_manipulator_types.h" #include "gizmo/WM_gizmo_types.h"
/* Include external manipulator API's */ /* Include external manipulator API's */
#include "manipulators/WM_manipulator_api.h" #include "gizmo/WM_gizmo_api.h"
/* ************** wmOperatorType ************************ */ /* ************** wmOperatorType ************************ */

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/windowmanager/manipulators/WM_manipulator_api.h /** \file blender/windowmanager/gizmos/WM_gizmo_api.h
* \ingroup wm * \ingroup wm
* *
* \name Manipulator API * \name Manipulator API
@@ -33,8 +33,8 @@
*/ */
#ifndef __WM_MANIPULATOR_API_H__ #ifndef __WM_GIZMO_API_H__
#define __WM_MANIPULATOR_API_H__ #define __WM_GIZMO_API_H__
struct ARegion; struct ARegion;
struct GHashIterator; struct GHashIterator;
@@ -54,7 +54,7 @@ struct wmManipulatorMapType_Params;
struct wmMsgSubscribeKey; struct wmMsgSubscribeKey;
struct wmMsgSubscribeValue; struct wmMsgSubscribeValue;
#include "wm_manipulator_fn.h" #include "wm_gizmo_fn.h"
/* -------------------------------------------------------------------- */ /* -------------------------------------------------------------------- */
/* wmManipulator */ /* wmManipulator */
@@ -340,4 +340,4 @@ bool WM_manipulator_context_check_drawstep(const struct bContext *C, eWM_Manipul
bool WM_manipulator_group_type_poll(const struct bContext *C, const struct wmManipulatorGroupType *wgt); bool WM_manipulator_group_type_poll(const struct bContext *C, const struct wmManipulatorGroupType *wgt);
#endif /* __WM_MANIPULATOR_API_H__ */ #endif /* __WM_GIZMO_API_H__ */

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/windowmanager/manipulators/WM_manipulator_types.h /** \file blender/windowmanager/gizmo/WM_gizmo_types.h
* \ingroup wm * \ingroup wm
* *
* \name Manipulator Types * \name Manipulator Types
@@ -33,8 +33,8 @@
*/ */
#ifndef __WM_MANIPULATOR_TYPES_H__ #ifndef __WM_GIZMO_TYPES_H__
#define __WM_MANIPULATOR_TYPES_H__ #define __WM_GIZMO_TYPES_H__
#include "BLI_compiler_attrs.h" #include "BLI_compiler_attrs.h"
@@ -148,7 +148,7 @@ typedef enum {
WM_MANIPULATOR_TWEAK_SNAP = (1 << 1), WM_MANIPULATOR_TWEAK_SNAP = (1 << 1),
} eWM_ManipulatorTweak; } eWM_ManipulatorTweak;
#include "wm_manipulator_fn.h" #include "wm_gizmo_fn.h"
typedef struct wmManipulatorOpElem { typedef struct wmManipulatorOpElem {
struct wmOperatorType *type; struct wmOperatorType *type;
@@ -419,4 +419,4 @@ typedef enum eWM_ManipulatorMapDrawStep {
} eWM_ManipulatorMapDrawStep; } eWM_ManipulatorMapDrawStep;
#define WM_MANIPULATORMAP_DRAWSTEP_MAX 2 #define WM_MANIPULATORMAP_DRAWSTEP_MAX 2
#endif /* __WM_MANIPULATOR_TYPES_H__ */ #endif /* __WM_GIZMO_TYPES_H__ */

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/windowmanager/manipulators/intern/wm_manipulator.c /** \file blender/windowmanager/gizmo/intern/wm_gizmo.c
* \ingroup wm * \ingroup wm
*/ */
@@ -63,8 +63,8 @@
#include "wm.h" #include "wm.h"
/* own includes */ /* own includes */
#include "wm_manipulator_wmapi.h" #include "wm_gizmo_wmapi.h"
#include "wm_manipulator_intern.h" #include "wm_gizmo_intern.h"
static void wm_manipulator_register( static void wm_manipulator_register(
wmManipulatorGroup *mgroup, wmManipulator *mpr); wmManipulatorGroup *mgroup, wmManipulator *mpr);

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/windowmanager/manipulators/intern/wm_manipulator_group.c /** \file blender/windowmanager/gizmo/intern/wm_gizmo_group.c
* \ingroup wm * \ingroup wm
* *
* \name Manipulator-Group * \name Manipulator-Group
@@ -57,8 +57,8 @@
#include "ED_undo.h" #include "ED_undo.h"
/* own includes */ /* own includes */
#include "wm_manipulator_wmapi.h" #include "wm_gizmo_wmapi.h"
#include "wm_manipulator_intern.h" #include "wm_gizmo_intern.h"
#ifdef WITH_PYTHON #ifdef WITH_PYTHON
# include "BPY_extern.h" # include "BPY_extern.h"

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/windowmanager/manipulators/intern/wm_manipulator_group_type.c /** \file blender/windowmanager/gizmo/intern/wm_gizmo_group_type.c
* \ingroup wm * \ingroup wm
*/ */
@@ -40,8 +40,8 @@
#include "wm.h" #include "wm.h"
/* own includes */ /* own includes */
#include "wm_manipulator_wmapi.h" #include "wm_gizmo_wmapi.h"
#include "wm_manipulator_intern.h" #include "wm_gizmo_intern.h"
/** \name ManipulatorGroup Type Append /** \name ManipulatorGroup Type Append

View File

@@ -20,20 +20,20 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/windowmanager/manipulators/intern/wm_manipulator_intern.h /** \file blender/windowmanager/gizmo/intern/wm_gizmo_intern.h
* \ingroup wm * \ingroup wm
*/ */
#ifndef __WM_MANIPULATOR_INTERN_H__ #ifndef __WM_GIZMO_INTERN_H__
#define __WM_MANIPULATOR_INTERN_H__ #define __WM_GIZMO_INTERN_H__
struct wmKeyConfig; struct wmKeyConfig;
struct wmManipulatorMap; struct wmManipulatorMap;
struct ManipulatorGeomInfo; struct ManipulatorGeomInfo;
struct GHashIterator; struct GHashIterator;
#include "wm_manipulator_fn.h" #include "wm_gizmo_fn.h"
/* -------------------------------------------------------------------- */ /* -------------------------------------------------------------------- */
/* wmManipulator */ /* wmManipulator */

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/windowmanager/manipulators/intern/wm_manipulator_map.c /** \file blender/windowmanager/gizmo/intern/wm_gizmo_map.c
* \ingroup wm * \ingroup wm
*/ */
@@ -57,8 +57,8 @@
#include "DEG_depsgraph.h" #include "DEG_depsgraph.h"
/* own includes */ /* own includes */
#include "wm_manipulator_wmapi.h" #include "wm_gizmo_wmapi.h"
#include "wm_manipulator_intern.h" #include "wm_gizmo_intern.h"
/** /**
* Store all manipulator-maps here. Anyone who wants to register a manipulator for a certain * Store all manipulator-maps here. Anyone who wants to register a manipulator for a certain

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/windowmanager/manipulators/intern/wm_manipulator_target_props.c /** \file blender/windowmanager/gizmo/intern/wm_gizmo_target_props.c
* \ingroup wm * \ingroup wm
*/ */
@@ -43,8 +43,8 @@
#include "ED_view3d.h" #include "ED_view3d.h"
/* own includes */ /* own includes */
#include "wm_manipulator_wmapi.h" #include "wm_gizmo_wmapi.h"
#include "wm_manipulator_intern.h" #include "wm_gizmo_intern.h"
/* -------------------------------------------------------------------- */ /* -------------------------------------------------------------------- */

View File

@@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/windowmanager/manipulators/intern/wm_manipulator_type.c /** \file blender/windowmanager/gizmo/intern/wm_gizmo_type.c
* \ingroup wm * \ingroup wm
*/ */
@@ -48,8 +48,8 @@
#include "wm.h" #include "wm.h"
/* own includes */ /* own includes */
#include "wm_manipulator_wmapi.h" #include "wm_gizmo_wmapi.h"
#include "wm_manipulator_intern.h" #include "wm_gizmo_intern.h"
/** \name Manipulator Type Append /** \name Manipulator Type Append

View File

@@ -18,14 +18,14 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/windowmanager/manipulators/wm_manipulator_fn.h /** \file blender/windowmanager/gizmo/wm_gizmo_fn.h
* \ingroup wm * \ingroup wm
* *
* Callback function definitions, needed for both Types & API headers. * Callback function definitions, needed for both Types & API headers.
*/ */
#ifndef __WM_MANIPULATOR_FN_H__ #ifndef __WM_GIZMO_FN_H__
#define __WM_MANIPULATOR_FN_H__ #define __WM_GIZMO_FN_H__
#include "BLI_compiler_attrs.h" #include "BLI_compiler_attrs.h"
@@ -85,4 +85,4 @@ typedef struct wmManipulatorPropertyFnParams {
void *user_data; void *user_data;
} wmManipulatorPropertyFnParams; } wmManipulatorPropertyFnParams;
#endif /* __WM_MANIPULATOR_FN_H__ */ #endif /* __WM_GIZMO_FN_H__ */

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/windowmanager/manipulators/wm_manipulator_wmapi.h /** \file blender/windowmanager/gizmo/wm_gizmo_wmapi.h
* \ingroup wm * \ingroup wm
* *
* \name Manipulators Window Manager API * \name Manipulators Window Manager API
@@ -35,8 +35,8 @@
*/ */
#ifndef __WM_MANIPULATOR_WMAPI_H__ #ifndef __WM_GIZMO_WMAPI_H__
#define __WM_MANIPULATOR_WMAPI_H__ #define __WM_GIZMO_WMAPI_H__
struct wmEventHandler; struct wmEventHandler;
struct wmManipulatorMap; struct wmManipulatorMap;
@@ -94,4 +94,4 @@ struct ListBase *wm_manipulatormap_groups_get(wmManipulatorMap *mmap);
void wm_manipulatormaptypes_free(void); void wm_manipulatormaptypes_free(void);
#endif /* __WM_MANIPULATOR_WMAPI_H__ */ #endif /* __WM_GIZMO_WMAPI_H__ */

View File

@@ -35,7 +35,7 @@ struct ARegion;
struct wmWindow; struct wmWindow;
struct ReportList; struct ReportList;
#include "manipulators/wm_manipulator_wmapi.h" #include "gizmo/wm_gizmo_wmapi.h"
typedef struct wmPaintCursor { typedef struct wmPaintCursor {
struct wmPaintCursor *next, *prev; struct wmPaintCursor *next, *prev;