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:
Diffstat (limited to 'source/blender/editors/include/ED_groom.h')
-rw-r--r--source/blender/editors/include/ED_groom.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_groom.h b/source/blender/editors/include/ED_groom.h
new file mode 100644
index 00000000000..079d2ce3681
--- /dev/null
+++ b/source/blender/editors/include/ED_groom.h
@@ -0,0 +1,66 @@
+/*
+ * ***** 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.
+ *
+ * The Original Code is Copyright (C) Blender Foundation
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): Lukas Toenne
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+/** \file ED_groom.h
+ * \ingroup editors
+ */
+
+#ifndef __ED_GROOM_H__
+#define __ED_GROOM_H__
+
+struct bContext;
+struct Groom;
+struct Object;
+struct wmOperator;
+struct wmKeyConfig;
+struct EditGroom;
+
+/* groom_ops.c */
+void ED_operatortypes_groom(void);
+void ED_operatormacros_groom(void);
+void ED_keymap_groom(struct wmKeyConfig *keyconf);
+
+/* editgroom.c */
+void undo_push_groom(struct bContext *C, const char *name);
+
+void ED_groom_editgroom_load(struct Object *obedit);
+void ED_groom_editgroom_make(struct Object *obedit);
+void ED_groom_editgroom_free(struct Object *obedit);
+
+/* editgroom_select.c */
+bool ED_groom_select_check_regions(const struct EditGroom *edit);
+bool ED_groom_select_check_curves(const struct EditGroom *edit);
+bool ED_groom_select_check_sections(const struct EditGroom *edit);
+
+typedef bool (*EditGroomSelectCb)(void *userdata, bool is_selected);
+void ED_groom_select_regions(struct EditGroom *edit, EditGroomSelectCb select_cb, void *userdata);
+void ED_groom_select_curves(struct EditGroom *edit, EditGroomSelectCb select_cb, void *userdata);
+void ED_groom_select_sections(struct EditGroom *edit, EditGroomSelectCb select_cb, void *userdata);
+
+bool ED_groom_select_pick(struct bContext *C, const int mval[2], bool extend, bool deselect, bool toggle);
+
+#endif /* __ED_GROOM_H__ */