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

wm_manipulator_wmapi.h « manipulators « windowmanager « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61489b6a730d14a341c8c6c9cc987c447577ab32 (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
/*
 * ***** 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_wmapi.h
 *  \ingroup wm
 *
 * \name Manipulators Window Manager API
 * API for usage in window manager code only. It should contain all functionality
 * needed to hook up the manipulator system with Blender's window manager. It's
 * mostly the event system that needs to communicate with manipulator code.
 *
 * Only included in wm.h and lower level files.
 */


#ifndef __WM_MANIPULATOR_WMAPI_H__
#define __WM_MANIPULATOR_WMAPI_H__

struct wmEventHandler;
struct wmManipulatorMap;
struct wmOperatorType;
struct wmOperator;


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

/* wm_manipulator_type.c, for init/exit */
void wm_manipulatortype_free(void);
void wm_manipulatortype_init(void);

/* wm_manipulatorgroup_type.c, for init/exit */
void wm_manipulatorgrouptype_free(void);
void wm_manipulatorgrouptype_init(void);

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

void MANIPULATORGROUP_OT_manipulator_select(struct wmOperatorType *ot);
void MANIPULATORGROUP_OT_manipulator_tweak(struct wmOperatorType *ot);

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

void wm_manipulatormap_remove(struct wmManipulatorMap *mmap);

void wm_manipulators_keymap(struct wmKeyConfig *keyconf);

void wm_manipulatormaps_handled_modal_update(
        bContext *C, struct wmEvent *event, struct wmEventHandler *handler);
void wm_manipulatormap_handler_context(bContext *C, struct wmEventHandler *handler);

struct wmManipulator *wm_manipulatormap_highlight_find(
        struct wmManipulatorMap *mmap, bContext *C, const struct wmEvent *event,
        int *r_part);
void wm_manipulatormap_highlight_set(
        struct wmManipulatorMap *mmap, const bContext *C,
        struct wmManipulator *mpr, int part);
struct wmManipulator *wm_manipulatormap_highlight_get(struct wmManipulatorMap *mmap);
void wm_manipulatormap_active_set(
        struct wmManipulatorMap *mmap, bContext *C,
        const struct wmEvent *event, struct wmManipulator *mpr);
struct wmManipulator *wm_manipulatormap_active_get(struct wmManipulatorMap *mmap);

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

void wm_manipulatormaptypes_free(void);

#endif  /* __WM_MANIPULATOR_WMAPI_H__ */