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

WM_manipulator_api.h « manipulators « windowmanager « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b88956ac28de7c0ec91ace720b76424e72699ec0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
/*
 * ***** 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) 2016 Blender Foundation.
 * All rights reserved.
 *
 * Contributor(s): none yet.
 *
 * ***** END GPL LICENSE BLOCK *****
 */

/** \file blender/windowmanager/manipulators/WM_manipulator_api.h
 *  \ingroup wm
 *
 * \name Manipulator API
 * \brief API for external use of wmManipulator types.
 *
 * Only included in WM_api.h
 */


#ifndef __WM_MANIPULATOR_API_H__
#define __WM_MANIPULATOR_API_H__

struct ARegion;
struct GHashIterator;
struct IDProperty;
struct Main;
struct PropertyRNA;
struct wmKeyConfig;
struct wmManipulator;
struct wmManipulatorProperty;
struct wmManipulatorPropertyType;
struct wmManipulatorType;
struct wmManipulatorGroup;
struct wmManipulatorGroupType;
struct wmManipulatorMap;
struct wmManipulatorMapType;
struct wmManipulatorMapType_Params;
struct wmMsgSubscribeKey;
struct wmMsgSubscribeValue;

#include "wm_manipulator_fn.h"

/* -------------------------------------------------------------------- */
/* wmManipulator */

struct wmManipulator *WM_manipulator_new_ptr(
        const struct wmManipulatorType *wt, struct wmManipulatorGroup *mgroup,
        struct PointerRNA *properties);
struct wmManipulator *WM_manipulator_new(
        const char *idname, struct wmManipulatorGroup *mgroup,
        struct PointerRNA *properties);
void WM_manipulator_free(struct wmManipulator *mpr);
void WM_manipulator_unlink(
        ListBase *manipulatorlist, struct wmManipulatorMap *mmap, struct wmManipulator *mpr,
        struct bContext *C);

void WM_manipulator_name_set(struct wmManipulatorGroup *mgroup, struct wmManipulator *mpr, const char *name);

bool WM_manipulator_select_unlink(struct wmManipulatorMap *mmap, struct wmManipulator *mpr);
bool WM_manipulator_select_set(struct wmManipulatorMap *mmap, struct wmManipulator *mpr, bool select);
void WM_manipulator_highlight_set(struct wmManipulatorMap *mmap, struct wmManipulator *mpr);

void WM_manipulator_modal_set_from_setup(
        struct wmManipulatorMap *mmap, struct bContext *C,
        struct wmManipulator *mpr, int part_index, const struct wmEvent *event);

struct wmManipulatorOpElem *WM_manipulator_operator_get(
        struct wmManipulator *mpr, int part_index);
struct PointerRNA *WM_manipulator_operator_set(
        struct wmManipulator *mpr, int part_index,
        struct wmOperatorType *ot, struct IDProperty *properties);

/* callbacks */
void WM_manipulator_set_fn_custom_modal(struct wmManipulator *mpr, wmManipulatorFnModal fn);

void WM_manipulator_set_matrix_location(
        struct wmManipulator *mpr, const float origin[3]);
void WM_manipulator_set_matrix_rotation_from_z_axis(
        struct wmManipulator *mpr, const float z_axis[3]);
void WM_manipulator_set_matrix_rotation_from_yz_axis(
        struct wmManipulator *mpr, const float y_axis[3], const float z_axis[3]);

void WM_manipulator_set_matrix_offset_location(
        struct wmManipulator *mpr, const float origin[3]);
void WM_manipulator_set_matrix_offset_rotation_from_z_axis(
        struct wmManipulator *mpr, const float z_axis[3]);
void WM_manipulator_set_matrix_offset_rotation_from_yz_axis(
        struct wmManipulator *mpr, const float y_axis[3], const float z_axis[3]);

void WM_manipulator_set_flag(struct wmManipulator *mpr, const int flag, const bool enable);
void WM_manipulator_set_scale(struct wmManipulator *mpr, float scale);
void WM_manipulator_set_line_width(struct wmManipulator *mpr, const float line_width);

void WM_manipulator_get_color(const struct wmManipulator *mpr, float color[4]);
void WM_manipulator_set_color(struct wmManipulator *mpr, const float color[4]);
void WM_manipulator_get_color_highlight(const struct wmManipulator *mpr, float color_hi[4]);
void WM_manipulator_set_color_highlight(struct wmManipulator *mpr, const float color[4]);

/**
 * Leaving values NULL use values from #wmManipulator.
 */
struct WM_ManipulatorMatrixParams {
	const float(*matrix_space)[4];
	const float(*matrix_basis)[4];
	const float(*matrix_offset)[4];
	const float *scale_final;
};

void WM_manipulator_calc_matrix_final_params(
        const struct wmManipulator *mpr, const struct WM_ManipulatorMatrixParams *params,
        float r_mat[4][4]);
void WM_manipulator_calc_matrix_final_no_offset(
        const struct wmManipulator *mpr, float r_mat[4][4]);

void WM_manipulator_calc_matrix_final(
        const struct wmManipulator *mpr, float r_mat[4][4]);

/* properties */
void WM_manipulator_properties_create_ptr(struct PointerRNA *ptr, struct wmManipulatorType *wt);
void WM_manipulator_properties_create(struct PointerRNA *ptr, const char *opstring);
void WM_manipulator_properties_alloc(struct PointerRNA **ptr, struct IDProperty **properties, const char *wtstring);
void WM_manipulator_properties_sanitize(struct PointerRNA *ptr, const bool no_context);
bool WM_manipulator_properties_default(struct PointerRNA *ptr, const bool do_update);
void WM_manipulator_properties_reset(struct wmManipulator *op);
void WM_manipulator_properties_clear(struct PointerRNA *ptr);
void WM_manipulator_properties_free(struct PointerRNA *ptr);


/* wm_manipulator_type.c */
const struct wmManipulatorType *WM_manipulatortype_find(const char *idname, bool quiet);
void WM_manipulatortype_append(void (*wtfunc)(struct wmManipulatorType *));
void WM_manipulatortype_append_ptr(void (*mnpfunc)(struct wmManipulatorType *, void *), void *userdata);
bool WM_manipulatortype_remove(struct bContext *C, struct Main *bmain, const char *idname);
void WM_manipulatortype_remove_ptr(struct bContext *C, struct Main *bmain, struct wmManipulatorType *wt);
void WM_manipulatortype_iter(struct GHashIterator *ghi);

/* wm_manipulator_group_type.c */
struct wmManipulatorGroupType *WM_manipulatorgrouptype_find(const char *idname, bool quiet);
struct wmManipulatorGroupType *WM_manipulatorgrouptype_append(void (*wtfunc)(struct wmManipulatorGroupType *));
struct wmManipulatorGroupType *WM_manipulatorgrouptype_append_ptr(void (*mnpfunc)(struct wmManipulatorGroupType *, void *), void *userdata);
bool WM_manipulatorgrouptype_free(const char *idname);
void WM_manipulatorgrouptype_free_ptr(struct wmManipulatorGroupType *wt);
void WM_manipulatorgrouptype_iter(struct GHashIterator *ghi);

struct wmManipulatorGroupTypeRef *WM_manipulatorgrouptype_append_and_link(
        struct wmManipulatorMapType *mmap_type,
        void (*wtfunc)(struct wmManipulatorGroupType *));

/* wm_manipulator_map.c */

/* Dynamic Updates (for RNA runtime registration) */
void WM_manipulatorconfig_update_tag_init(struct wmManipulatorMapType *mmap_type, struct wmManipulatorGroupType *wgt);
void WM_manipulatorconfig_update_tag_remove(struct wmManipulatorMapType *mmap_type, struct wmManipulatorGroupType *wgt);
void WM_manipulatorconfig_update(struct Main *bmain);


/* wm_maniulator_target_props.c */
struct wmManipulatorProperty *WM_manipulator_target_property_array(struct wmManipulator *mpr);
struct wmManipulatorProperty *WM_manipulator_target_property_at_index(
        struct wmManipulator *mpr, int index);
struct wmManipulatorProperty *WM_manipulator_target_property_find(
        struct wmManipulator *mpr, const char *idname);

void WM_manipulator_target_property_def_rna_ptr(
        struct wmManipulator *mpr, const struct wmManipulatorPropertyType *mpr_prop_type,
        struct PointerRNA *ptr, struct PropertyRNA *prop, int index);
void WM_manipulator_target_property_def_rna(
        struct wmManipulator *mpr, const char *idname,
        struct PointerRNA *ptr, const char *propname, int index);

void WM_manipulator_target_property_def_func_ptr(
        struct wmManipulator *mpr, const struct wmManipulatorPropertyType *mpr_prop_type,
        const struct wmManipulatorPropertyFnParams *params);
void WM_manipulator_target_property_def_func(
        struct wmManipulator *mpr, const char *idname,
        const struct wmManipulatorPropertyFnParams *params);

void WM_manipulator_target_property_clear_rna_ptr(
        struct wmManipulator *mpr, const struct wmManipulatorPropertyType *mpr_prop_type);
void WM_manipulator_target_property_clear_rna(
        struct wmManipulator *mpr, const char *idname);

bool WM_manipulator_target_property_is_valid_any(struct wmManipulator *mpr);
bool WM_manipulator_target_property_is_valid(
        const struct wmManipulatorProperty *mpr_prop);
float WM_manipulator_target_property_value_get(
        const struct wmManipulator *mpr, struct wmManipulatorProperty *mpr_prop);
void  WM_manipulator_target_property_value_set(
        struct bContext *C, const struct wmManipulator *mpr, struct wmManipulatorProperty *mpr_prop,
        const float value);

void WM_manipulator_target_property_value_get_array(
        const struct wmManipulator *mpr, struct wmManipulatorProperty *mpr_prop,
        float *value);
void WM_manipulator_target_property_value_set_array(
        struct bContext *C, const struct wmManipulator *mpr, struct wmManipulatorProperty *mpr_prop,
        const float *value);

bool WM_manipulator_target_property_range_get(
        const struct wmManipulator *mpr, struct wmManipulatorProperty *mpr_prop,
        float range[2]);

int WM_manipulator_target_property_array_length(
        const struct wmManipulator *mpr, struct wmManipulatorProperty *mpr_prop);

/* definitions */
const struct wmManipulatorPropertyType *WM_manipulatortype_target_property_find(
        const struct wmManipulatorType *wt, const char *idname);
void WM_manipulatortype_target_property_def(
        struct wmManipulatorType *wt, const char *idname, int data_type, int array_length);

/* utilities */
void WM_manipulator_do_msg_notify_tag_refresh(
        struct bContext *C, struct wmMsgSubscribeKey *msg_key, struct wmMsgSubscribeValue *msg_val);
void WM_manipulator_target_property_subscribe_all(
        struct wmManipulator *mpr, struct wmMsgBus *mbus, struct ARegion *ar);

/* -------------------------------------------------------------------- */
/* wmManipulatorGroup */

/* Callbacks for 'wmManipulatorGroupType.setup_keymap' */
struct wmKeyMap *WM_manipulatorgroup_keymap_common(
        const struct wmManipulatorGroupType *wgt, struct wmKeyConfig *config);
struct wmKeyMap *WM_manipulatorgroup_keymap_common_select(
        const struct wmManipulatorGroupType *wgt, struct wmKeyConfig *config);


/* -------------------------------------------------------------------- */
/* wmManipulatorMap */

struct wmManipulatorMap *WM_manipulatormap_new_from_type(
        const struct wmManipulatorMapType_Params *mmap_params);
const struct ListBase *WM_manipulatormap_group_list(struct wmManipulatorMap *mmap);
struct wmManipulatorGroup *WM_manipulatormap_group_find(
        struct wmManipulatorMap *mmap,
        const char *idname);
struct wmManipulatorGroup *WM_manipulatormap_group_find_ptr(
        struct wmManipulatorMap *mmap,
        const struct wmManipulatorGroupType *wgt);
void WM_manipulatormap_tag_refresh(struct wmManipulatorMap *mmap);
void WM_manipulatormap_draw(
        struct wmManipulatorMap *mmap, const struct bContext *C, const eWM_ManipulatorMapDrawStep drawstep);
void WM_manipulatormap_add_handlers(struct ARegion *ar, struct wmManipulatorMap *mmap);
bool WM_manipulatormap_select_all(struct bContext *C, struct wmManipulatorMap *mmap, const int action);
bool WM_manipulatormap_cursor_set(const struct wmManipulatorMap *mmap, struct wmWindow *win);
void WM_manipulatormap_message_subscribe(
        struct bContext *C, struct wmManipulatorMap *mmap, struct ARegion *ar, struct wmMsgBus *mbus);
bool WM_manipulatormap_is_any_selected(const struct wmManipulatorMap *mmap);
bool WM_manipulatormap_minmax(
        const struct wmManipulatorMap *mmap, bool use_hidden, bool use_select,
        float r_min[3], float r_max[3]);

struct ARegion *WM_manipulatormap_tooltip_init(
        struct bContext *C, struct ARegion *ar, bool *r_exit_on_event);

/* -------------------------------------------------------------------- */
/* wmManipulatorMapType */

struct wmManipulatorMapType *WM_manipulatormaptype_find(
        const struct wmManipulatorMapType_Params *mmap_params);
struct wmManipulatorMapType *WM_manipulatormaptype_ensure(
        const struct wmManipulatorMapType_Params *mmap_params);

struct wmManipulatorGroupTypeRef *WM_manipulatormaptype_group_find(
        struct wmManipulatorMapType *mmap_type,
        const char *idname);
struct wmManipulatorGroupTypeRef *WM_manipulatormaptype_group_find_ptr(
        struct wmManipulatorMapType *mmap_type,
        const struct wmManipulatorGroupType *wgt);
struct wmManipulatorGroupTypeRef *WM_manipulatormaptype_group_link(
        struct wmManipulatorMapType *mmap_type,
        const char *idname);
struct wmManipulatorGroupTypeRef *WM_manipulatormaptype_group_link_ptr(
        struct wmManipulatorMapType *mmap_type,
        struct wmManipulatorGroupType *wgt);

void WM_manipulatormaptype_group_init_runtime_keymap(
        const struct Main *bmain,
        struct wmManipulatorGroupType *wgt);
void WM_manipulatormaptype_group_init_runtime(
        const struct Main *bmain, struct wmManipulatorMapType *mmap_type,
        struct wmManipulatorGroupType *wgt);
void WM_manipulatormaptype_group_unlink(
        struct bContext *C, struct Main *bmain, struct wmManipulatorMapType *mmap_type,
        const struct wmManipulatorGroupType *wgt);

void WM_manipulatormaptype_group_free(struct wmManipulatorGroupTypeRef *wgt);

/* -------------------------------------------------------------------- */
/* ManipulatorGroup */

/* Add/Ensure/Remove (High level API) */

void WM_manipulator_group_type_add_ptr_ex(
        struct wmManipulatorGroupType *wgt,
        struct wmManipulatorMapType *mmap_type);
void WM_manipulator_group_type_add_ptr(
        struct wmManipulatorGroupType *wgt);
void WM_manipulator_group_type_add(const char *idname);

void WM_manipulator_group_type_ensure_ptr_ex(
        struct wmManipulatorGroupType *wgt,
        struct wmManipulatorMapType *mmap_type);
void WM_manipulator_group_type_ensure_ptr(
        struct wmManipulatorGroupType *wgt);
void WM_manipulator_group_type_ensure(const char *idname);

void WM_manipulator_group_type_remove_ptr_ex(
        struct Main *bmain, struct wmManipulatorGroupType *wgt,
        struct wmManipulatorMapType *mmap_type);
void WM_manipulator_group_type_remove_ptr(
        struct Main *bmain, struct wmManipulatorGroupType *wgt);
void WM_manipulator_group_type_remove(struct Main *bmain, const char *idname);

void WM_manipulator_group_type_unlink_delayed_ptr_ex(
        struct wmManipulatorGroupType *wgt,
        struct wmManipulatorMapType *mmap_type);
void WM_manipulator_group_type_unlink_delayed_ptr(
        struct wmManipulatorGroupType *wgt);
void WM_manipulator_group_type_unlink_delayed(const char *idname);

/* Utilities */
bool WM_manipulator_context_check_drawstep(const struct bContext *C, eWM_ManipulatorMapDrawStep step);

bool WM_manipulator_group_type_poll(const struct bContext *C, const struct wmManipulatorGroupType *wgt);

#endif  /* __WM_MANIPULATOR_API_H__ */