Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-06-07 22:27:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-06-07 22:30:21 +0300
commit575db256dbb54cc013c729157115ba4be8c7b13e (patch)
tree39fdc86e417a6ebc0ab0e47400074aa98f86378a /source/blender/windowmanager/manipulators/WM_manipulator_library.h
parent8ff1bce40f3de5272eb3cb6475691f0d8d98bc52 (diff)
WM: add wmManipulatorType, from wmManipulator
Having the type in mixed in with each instance made it hard to expose types to RNA/Python.
Diffstat (limited to 'source/blender/windowmanager/manipulators/WM_manipulator_library.h')
-rw-r--r--source/blender/windowmanager/manipulators/WM_manipulator_library.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/windowmanager/manipulators/WM_manipulator_library.h b/source/blender/windowmanager/manipulators/WM_manipulator_library.h
index 1e7106905e3..4e0c5b004c8 100644
--- a/source/blender/windowmanager/manipulators/WM_manipulator_library.h
+++ b/source/blender/windowmanager/manipulators/WM_manipulator_library.h
@@ -124,5 +124,12 @@ struct wmManipulator *MANIPULATOR_primitive_new(struct wmManipulatorGroup *mgrou
void MANIPULATOR_primitive_set_direction(struct wmManipulator *manipulator, const float direction[3]);
void MANIPULATOR_primitive_set_up_vector(struct wmManipulator *manipulator, const float direction[3]);
+extern void ED_manipulatortypes_dial(void);
+extern void ED_manipulatortypes_arrow_2d(void);
+extern void ED_manipulatortypes_arrow_3d(void);
+extern void ED_manipulatortypes_facemap(void);
+extern void ED_manipulatortypes_primitive(void);
+extern void ED_manipulatortypes_cage(void);
+
#endif /* __WM_MANIPULATOR_LIBRARY_H__ */