~ubuntu-branches/ubuntu/lucid/blender/lucid

« back to all changes in this revision

Viewing changes to source/blender/makesdna/DNA_scriptlink_types.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2009-08-06 22:32:19 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090806223219-8z4eej1u8levu4pz
Tags: 2.49a+dfsg-0ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/control: Build-depend on python-2.6 rather than python-2.5.
  - debian/misc/*.desktop: Add Spanish translation to .desktop 
    files.
  - debian/pyversions: 2.6.
  - debian/rules: Clean *.o of source/blender/python/api2_2x/
* New upstream release (LP: #382153).
* Refreshed patches:
  - 01_sanitize_sys.patch
  - 02_tmp_in_HOME
  - 10_use_systemwide_ftgl
  - 70_portability_platform_detection
* Removed patches merged upstream:
  - 30_fix_python_syntax_warning
  - 90_ubuntu_ffmpeg_52_changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *      
4
4
 * Scriptlink is hard-coded in object for some reason.
5
5
 *
6
 
 * $Id: DNA_scriptlink_types.h 14444 2008-04-16 22:40:48Z hos $ 
 
6
 * $Id: DNA_scriptlink_types.h 17750 2008-12-09 00:18:30Z ianwill $ 
7
7
 *
8
8
 * ***** BEGIN GPL LICENSE BLOCK *****
9
9
 *
65
65
/* these are special scriptlinks that can be assigned to
66
66
 * a given space in a given ScrArea to:
67
67
 * - (EVENT type) handle events sent to that space;
68
 
 * - (DRAW type) draw on the space after its own drawing function finishes
 
68
 * - (EVENT_ALL type): handle release events, too;
 
69
 * - (DRAW type) draw on the space after its own drawing function finishes.
69
70
 */
70
 
#define SPACEHANDLER_VIEW3D_EVENT 1
71
 
#define SPACEHANDLER_VIEW3D_DRAW 2
 
71
#define SPACEHANDLER_VIEW3D_DRAW 1
 
72
#define SPACEHANDLER_VIEW3D_EVENT 2
 
73
#define SPACEHANDLER_VIEW3D_EVENT_ALL 3
72
74
 
73
75
 
74
76
#ifdef __cplusplus