Blender Git Loki
Git Commits -> Revision cd16004
Revision cd16004 by Campbell Barton (master) July 14, 2018, 21:16 (GMT) |
WM: rename files, manipulator -> gizmo Edit doxy files and header guards only. |
Commit Details:
Full Hash: cd1600413246a62156441f6e7910489b19ae5a28
Parent Commit: fc7c934
Lines Changed: +20076, -20076
51 Added Paths:
/release/scripts/templates_py/gizmo_custom_geometry.py (+158, -0) (View)
/release/scripts/templates_py/gizmo_operator.py (+234, -0) (View)
/release/scripts/templates_py/gizmo_operator_target.py (+50, -0) (View)
/release/scripts/templates_py/gizmo_simple.py (+47, -0) (View)
/source/blender/editors/gizmo_library/CMakeLists.txt (+60, -0) (View)
/source/blender/editors/gizmo_library/geometry/geom_arrow_gizmo.c (+141, -0) (View)
/source/blender/editors/gizmo_library/geometry/geom_cube_gizmo.c (+75, -0) (View)
/source/blender/editors/gizmo_library/geometry/geom_dial_gizmo.c (+813, -0) (View)
/source/blender/editors/gizmo_library/gizmo_draw_utils.c (+121, -0) (View)
/source/blender/editors/gizmo_library/gizmo_geometry.h (+54, -0) (View)
/source/blender/editors/gizmo_library/gizmo_library_intern.h (+111, -0) (View)
/source/blender/editors/gizmo_library/gizmo_library_presets.c (+150, -0) (View)
/source/blender/editors/gizmo_library/gizmo_library_utils.c (+256, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/arrow2d_gizmo.c (+225, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/arrow3d_gizmo.c (+492, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/button2d_gizmo.c (+322, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/cage2d_gizmo.c (+1100, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/cage3d_gizmo.c (+692, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/dial3d_gizmo.c (+487, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/grab3d_gizmo.c (+375, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/primitive3d_gizmo.c (+191, -0) (View)
/source/blender/editors/include/ED_gizmo_library.h (+222, -0) (View)
/source/blender/editors/mesh/editmesh_add_gizmo.c (+426, -0) (View)
/source/blender/editors/space_node/node_gizmo.c (+621, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_armature.c (+228, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_camera.c (+473, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_empty.c (+204, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_forcefield.c (+125, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_lamp.c (+307, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_navigate.c (+371, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_navigate_type.c (+310, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_ruler.c (+1101, -0) (View)
/source/blender/editors/transform/transform_gizmo_2d.c (+382, -0) (View)
/source/blender/editors/transform/transform_gizmo_3d.c (+1790, -0) (View)
/source/blender/makesrna/intern/rna_wm_gizmo.c (+1335, -0) (View)
/source/blender/makesrna/intern/rna_wm_gizmo_api.c (+290, -0) (View)
/source/blender/python/intern/bpy_gizmo_wrap.c (+235, -0) (View)
/source/blender/python/intern/bpy_gizmo_wrap.h (+35, -0) (View)
/source/blender/python/intern/bpy_rna_gizmo.c (+565, -0) (View)
/source/blender/python/intern/bpy_rna_gizmo.h (+32, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo.c (+800, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c (+949, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_group_type.c (+197, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_intern.h (+144, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c (+1209, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_target_props.c (+364, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_type.c (+212, -0) (View)
/source/blender/windowmanager/gizmo/WM_gizmo_api.h (+343, -0) (View)
/source/blender/windowmanager/gizmo/wm_gizmo_fn.h (+88, -0) (View)
/source/blender/windowmanager/gizmo/WM_gizmo_types.h (+422, -0) (View)
/source/blender/windowmanager/gizmo/wm_gizmo_wmapi.h (+97, -0) (View)
/release/scripts/templates_py/gizmo_operator.py (+234, -0) (View)
/release/scripts/templates_py/gizmo_operator_target.py (+50, -0) (View)
/release/scripts/templates_py/gizmo_simple.py (+47, -0) (View)
/source/blender/editors/gizmo_library/CMakeLists.txt (+60, -0) (View)
/source/blender/editors/gizmo_library/geometry/geom_arrow_gizmo.c (+141, -0) (View)
/source/blender/editors/gizmo_library/geometry/geom_cube_gizmo.c (+75, -0) (View)
/source/blender/editors/gizmo_library/geometry/geom_dial_gizmo.c (+813, -0) (View)
/source/blender/editors/gizmo_library/gizmo_draw_utils.c (+121, -0) (View)
/source/blender/editors/gizmo_library/gizmo_geometry.h (+54, -0) (View)
/source/blender/editors/gizmo_library/gizmo_library_intern.h (+111, -0) (View)
/source/blender/editors/gizmo_library/gizmo_library_presets.c (+150, -0) (View)
/source/blender/editors/gizmo_library/gizmo_library_utils.c (+256, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/arrow2d_gizmo.c (+225, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/arrow3d_gizmo.c (+492, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/button2d_gizmo.c (+322, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/cage2d_gizmo.c (+1100, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/cage3d_gizmo.c (+692, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/dial3d_gizmo.c (+487, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/grab3d_gizmo.c (+375, -0) (View)
/source/blender/editors/gizmo_library/gizmo_types/primitive3d_gizmo.c (+191, -0) (View)
/source/blender/editors/include/ED_gizmo_library.h (+222, -0) (View)
/source/blender/editors/mesh/editmesh_add_gizmo.c (+426, -0) (View)
/source/blender/editors/space_node/node_gizmo.c (+621, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_armature.c (+228, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_camera.c (+473, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_empty.c (+204, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_forcefield.c (+125, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_lamp.c (+307, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_navigate.c (+371, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_navigate_type.c (+310, -0) (View)
/source/blender/editors/space_view3d/view3d_gizmo_ruler.c (+1101, -0) (View)
/source/blender/editors/transform/transform_gizmo_2d.c (+382, -0) (View)
/source/blender/editors/transform/transform_gizmo_3d.c (+1790, -0) (View)
/source/blender/makesrna/intern/rna_wm_gizmo.c (+1335, -0) (View)
/source/blender/makesrna/intern/rna_wm_gizmo_api.c (+290, -0) (View)
/source/blender/python/intern/bpy_gizmo_wrap.c (+235, -0) (View)
/source/blender/python/intern/bpy_gizmo_wrap.h (+35, -0) (View)
/source/blender/python/intern/bpy_rna_gizmo.c (+565, -0) (View)
/source/blender/python/intern/bpy_rna_gizmo.h (+32, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo.c (+800, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c (+949, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_group_type.c (+197, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_intern.h (+144, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c (+1209, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_target_props.c (+364, -0) (View)
/source/blender/windowmanager/gizmo/intern/wm_gizmo_type.c (+212, -0) (View)
/source/blender/windowmanager/gizmo/WM_gizmo_api.h (+343, -0) (View)
/source/blender/windowmanager/gizmo/wm_gizmo_fn.h (+88, -0) (View)
/source/blender/windowmanager/gizmo/WM_gizmo_types.h (+422, -0) (View)
/source/blender/windowmanager/gizmo/wm_gizmo_wmapi.h (+97, -0) (View)
51 Deleted Paths:
/release/scripts/templates_py/manipulator_custom_geometry.py (+0, -158)
/release/scripts/templates_py/manipulator_operator.py (+0, -234)
/release/scripts/templates_py/manipulator_operator_target.py (+0, -50)
/release/scripts/templates_py/manipulator_simple.py (+0, -47)
/source/blender/editors/include/ED_manipulator_library.h (+0, -222)
/source/blender/editors/manipulator_library/CMakeLists.txt (+0, -60)
/source/blender/editors/manipulator_library/geometry/geom_arrow_manipulator.c (+0, -141)
/source/blender/editors/manipulator_library/geometry/geom_cube_manipulator.c (+0, -75)
/source/blender/editors/manipulator_library/geometry/geom_dial_manipulator.c (+0, -813)
/source/blender/editors/manipulator_library/manipulator_draw_utils.c (+0, -121)
/source/blender/editors/manipulator_library/manipulator_geometry.h (+0, -54)
/source/blender/editors/manipulator_library/manipulator_library_intern.h (+0, -111)
/source/blender/editors/manipulator_library/manipulator_library_presets.c (+0, -150)
/source/blender/editors/manipulator_library/manipulator_library_utils.c (+0, -256)
/source/blender/editors/manipulator_library/manipulator_types/arrow2d_manipulator.c (+0, -225)
/source/blender/editors/manipulator_library/manipulator_types/arrow3d_manipulator.c (+0, -492)
/source/blender/editors/manipulator_library/manipulator_types/button2d_manipulator.c (+0, -322)
/source/blender/editors/manipulator_library/manipulator_types/cage2d_manipulator.c (+0, -1100)
/source/blender/editors/manipulator_library/manipulator_types/cage3d_manipulator.c (+0, -692)
/source/blender/editors/manipulator_library/manipulator_types/dial3d_manipulator.c (+0, -487)
/source/blender/editors/manipulator_library/manipulator_types/grab3d_manipulator.c (+0, -375)
/source/blender/editors/manipulator_library/manipulator_types/primitive3d_manipulator.c (+0, -191)
/source/blender/editors/mesh/editmesh_add_manipulator.c (+0, -426)
/source/blender/editors/space_node/node_manipulators.c (+0, -621)
/source/blender/editors/space_view3d/view3d_manipulator_armature.c (+0, -228)
/source/blender/editors/space_view3d/view3d_manipulator_camera.c (+0, -473)
/source/blender/editors/space_view3d/view3d_manipulator_empty.c (+0, -204)
/source/blender/editors/space_view3d/view3d_manipulator_forcefield.c (+0, -125)
/source/blender/editors/space_view3d/view3d_manipulator_lamp.c (+0, -307)
/source/blender/editors/space_view3d/view3d_manipulator_navigate.c (+0, -371)
/source/blender/editors/space_view3d/view3d_manipulator_navigate_type.c (+0, -310)
/source/blender/editors/space_view3d/view3d_manipulator_ruler.c (+0, -1101)
/source/blender/editors/transform/transform_manipulator_2d.c (+0, -382)
/source/blender/editors/transform/transform_manipulator_3d.c (+0, -1790)
/source/blender/makesrna/intern/rna_wm_manipulator.c (+0, -1335)
/source/blender/makesrna/intern/rna_wm_manipulator_api.c (+0, -290)
/source/blender/python/intern/bpy_manipulator_wrap.c (+0, -235)
/source/blender/python/intern/bpy_manipulator_wrap.h (+0, -35)
/source/blender/python/intern/bpy_rna_manipulator.c (+0, -565)
/source/blender/python/intern/bpy_rna_manipulator.h (+0, -32)
/source/blender/windowmanager/manipulators/intern/wm_manipulator.c (+0, -800)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_group.c (+0, -949)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_group_type.c (+0, -197)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_intern.h (+0, -144)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_map.c (+0, -1209)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_target_props.c (+0, -364)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_type.c (+0, -212)
/source/blender/windowmanager/manipulators/WM_manipulator_api.h (+0, -343)
/source/blender/windowmanager/manipulators/wm_manipulator_fn.h (+0, -88)
/source/blender/windowmanager/manipulators/WM_manipulator_types.h (+0, -422)
/source/blender/windowmanager/manipulators/wm_manipulator_wmapi.h (+0, -97)
/release/scripts/templates_py/manipulator_operator.py (+0, -234)
/release/scripts/templates_py/manipulator_operator_target.py (+0, -50)
/release/scripts/templates_py/manipulator_simple.py (+0, -47)
/source/blender/editors/include/ED_manipulator_library.h (+0, -222)
/source/blender/editors/manipulator_library/CMakeLists.txt (+0, -60)
/source/blender/editors/manipulator_library/geometry/geom_arrow_manipulator.c (+0, -141)
/source/blender/editors/manipulator_library/geometry/geom_cube_manipulator.c (+0, -75)
/source/blender/editors/manipulator_library/geometry/geom_dial_manipulator.c (+0, -813)
/source/blender/editors/manipulator_library/manipulator_draw_utils.c (+0, -121)
/source/blender/editors/manipulator_library/manipulator_geometry.h (+0, -54)
/source/blender/editors/manipulator_library/manipulator_library_intern.h (+0, -111)
/source/blender/editors/manipulator_library/manipulator_library_presets.c (+0, -150)
/source/blender/editors/manipulator_library/manipulator_library_utils.c (+0, -256)
/source/blender/editors/manipulator_library/manipulator_types/arrow2d_manipulator.c (+0, -225)
/source/blender/editors/manipulator_library/manipulator_types/arrow3d_manipulator.c (+0, -492)
/source/blender/editors/manipulator_library/manipulator_types/button2d_manipulator.c (+0, -322)
/source/blender/editors/manipulator_library/manipulator_types/cage2d_manipulator.c (+0, -1100)
/source/blender/editors/manipulator_library/manipulator_types/cage3d_manipulator.c (+0, -692)
/source/blender/editors/manipulator_library/manipulator_types/dial3d_manipulator.c (+0, -487)
/source/blender/editors/manipulator_library/manipulator_types/grab3d_manipulator.c (+0, -375)
/source/blender/editors/manipulator_library/manipulator_types/primitive3d_manipulator.c (+0, -191)
/source/blender/editors/mesh/editmesh_add_manipulator.c (+0, -426)
/source/blender/editors/space_node/node_manipulators.c (+0, -621)
/source/blender/editors/space_view3d/view3d_manipulator_armature.c (+0, -228)
/source/blender/editors/space_view3d/view3d_manipulator_camera.c (+0, -473)
/source/blender/editors/space_view3d/view3d_manipulator_empty.c (+0, -204)
/source/blender/editors/space_view3d/view3d_manipulator_forcefield.c (+0, -125)
/source/blender/editors/space_view3d/view3d_manipulator_lamp.c (+0, -307)
/source/blender/editors/space_view3d/view3d_manipulator_navigate.c (+0, -371)
/source/blender/editors/space_view3d/view3d_manipulator_navigate_type.c (+0, -310)
/source/blender/editors/space_view3d/view3d_manipulator_ruler.c (+0, -1101)
/source/blender/editors/transform/transform_manipulator_2d.c (+0, -382)
/source/blender/editors/transform/transform_manipulator_3d.c (+0, -1790)
/source/blender/makesrna/intern/rna_wm_manipulator.c (+0, -1335)
/source/blender/makesrna/intern/rna_wm_manipulator_api.c (+0, -290)
/source/blender/python/intern/bpy_manipulator_wrap.c (+0, -235)
/source/blender/python/intern/bpy_manipulator_wrap.h (+0, -35)
/source/blender/python/intern/bpy_rna_manipulator.c (+0, -565)
/source/blender/python/intern/bpy_rna_manipulator.h (+0, -32)
/source/blender/windowmanager/manipulators/intern/wm_manipulator.c (+0, -800)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_group.c (+0, -949)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_group_type.c (+0, -197)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_intern.h (+0, -144)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_map.c (+0, -1209)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_target_props.c (+0, -364)
/source/blender/windowmanager/manipulators/intern/wm_manipulator_type.c (+0, -212)
/source/blender/windowmanager/manipulators/WM_manipulator_api.h (+0, -343)
/source/blender/windowmanager/manipulators/wm_manipulator_fn.h (+0, -88)
/source/blender/windowmanager/manipulators/WM_manipulator_types.h (+0, -422)
/source/blender/windowmanager/manipulators/wm_manipulator_wmapi.h (+0, -97)
19 Modified Paths:
/build_files/cmake/macros.cmake (+2, -2) (Diff)
/source/blender/editors/CMakeLists.txt (+1, -1) (Diff)
/source/blender/editors/mesh/CMakeLists.txt (+1, -1) (Diff)
/source/blender/editors/mesh/editmesh_bisect.c (+1, -1) (Diff)
/source/blender/editors/mesh/editmesh_extrude.c (+1, -1) (Diff)
/source/blender/editors/mesh/editmesh_extrude_spin.c (+1, -1) (Diff)
/source/blender/editors/space_api/spacetypes.c (+1, -1) (Diff)
/source/blender/editors/space_node/CMakeLists.txt (+1, -1) (Diff)
/source/blender/editors/space_view3d/CMakeLists.txt (+8, -8) (Diff)
/source/blender/editors/transform/CMakeLists.txt (+2, -2) (Diff)
/source/blender/editors/util/CMakeLists.txt (+1, -1) (Diff)
/source/blender/makesrna/intern/CMakeLists.txt (+2, -2) (Diff)
/source/blender/makesrna/intern/makesrna.c (+1, -1) (Diff)
/source/blender/python/intern/bpy.c (+1, -1) (Diff)
/source/blender/python/intern/bpy_msgbus.c (+1, -1) (Diff)
/source/blender/python/intern/CMakeLists.txt (+4, -4) (Diff)
/source/blender/windowmanager/CMakeLists.txt (+13, -13) (Diff)
/source/blender/windowmanager/wm.h (+1, -1) (Diff)
/source/blender/windowmanager/WM_types.h (+2, -2) (Diff)
/source/blender/editors/CMakeLists.txt (+1, -1) (Diff)
/source/blender/editors/mesh/CMakeLists.txt (+1, -1) (Diff)
/source/blender/editors/mesh/editmesh_bisect.c (+1, -1) (Diff)
/source/blender/editors/mesh/editmesh_extrude.c (+1, -1) (Diff)
/source/blender/editors/mesh/editmesh_extrude_spin.c (+1, -1) (Diff)
/source/blender/editors/space_api/spacetypes.c (+1, -1) (Diff)
/source/blender/editors/space_node/CMakeLists.txt (+1, -1) (Diff)
/source/blender/editors/space_view3d/CMakeLists.txt (+8, -8) (Diff)
/source/blender/editors/transform/CMakeLists.txt (+2, -2) (Diff)
/source/blender/editors/util/CMakeLists.txt (+1, -1) (Diff)
/source/blender/makesrna/intern/CMakeLists.txt (+2, -2) (Diff)
/source/blender/makesrna/intern/makesrna.c (+1, -1) (Diff)
/source/blender/python/intern/bpy.c (+1, -1) (Diff)
/source/blender/python/intern/bpy_msgbus.c (+1, -1) (Diff)
/source/blender/python/intern/CMakeLists.txt (+4, -4) (Diff)
/source/blender/windowmanager/CMakeLists.txt (+13, -13) (Diff)
/source/blender/windowmanager/wm.h (+1, -1) (Diff)
/source/blender/windowmanager/WM_types.h (+2, -2) (Diff)