~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/windowmanager/wm_event_system.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * $Id: wm_event_system.h 27639 2010-03-21 01:14:04Z gsrb3d $
3
 
 *
 
1
/*
4
2
 * ***** BEGIN GPL LICENSE BLOCK *****
5
3
 *
6
4
 * This program is free software; you can redistribute it and/or
25
23
 *
26
24
 * ***** END GPL LICENSE BLOCK *****
27
25
 */
28
 
#ifndef WM_EVENT_SYSTEM_H
29
 
#define WM_EVENT_SYSTEM_H
 
26
 
 
27
/** \file blender/windowmanager/wm_event_system.h
 
28
 *  \ingroup wm
 
29
 */
 
30
 
 
31
#ifndef __WM_EVENT_SYSTEM_H__
 
32
#define __WM_EVENT_SYSTEM_H__
30
33
 
31
34
/* return value of handler-operator call */
32
35
#define WM_HANDLER_CONTINUE     0
73
76
/* handler flag */
74
77
                /* after this handler all others are ignored */
75
78
#define WM_HANDLER_BLOCKING             1
 
79
                /* handler tagged to be freed in wm_handlers_do() */
 
80
#define WM_HANDLER_DO_FREE              2
76
81
 
77
82
 
78
83
 
84
89
 
85
90
 
86
91
/* wm_event_system.c */
87
 
void            wm_event_add                    (wmWindow *win, wmEvent *event_to_add);
88
92
void            wm_event_free_all               (wmWindow *win);
89
93
void            wm_event_free                   (wmEvent *event);
90
94
void            wm_event_free_handler   (wmEventHandler *handler);
103
107
void            wm_drags_check_ops(bContext *C, wmEvent *event);
104
108
void            wm_drags_draw(bContext *C, wmWindow *win, rcti *rect);
105
109
 
106
 
#endif /* WM_EVENT_SYSTEM_H */
 
110
#endif /* __WM_EVENT_SYSTEM_H__ */
107
111