~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to source/blender/editors/space_action/action_intern.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
void ACTION_OT_clickselect(struct wmOperatorType *ot);
61
61
 
62
62
/* defines for left-right select tool */
63
 
enum {
 
63
enum eActKeys_LeftRightSelect_Mode {
64
64
        ACTKEYS_LRSEL_TEST = 0,
65
65
        ACTKEYS_LRSEL_LEFT,
66
66
        ACTKEYS_LRSEL_RIGHT
67
 
} eActKeys_LeftRightSelect_Mode;
 
67
};
68
68
 
69
69
/* defines for column-select mode */
70
 
enum {
 
70
enum eActKeys_ColumnSelect_Mode {
71
71
        ACTKEYS_COLUMNSEL_KEYS = 0,
72
72
        ACTKEYS_COLUMNSEL_CFRA,
73
73
        ACTKEYS_COLUMNSEL_MARKERS_COLUMN,
74
74
        ACTKEYS_COLUMNSEL_MARKERS_BETWEEN,
75
 
} eActKeys_ColumnSelect_Mode;
 
75
};
76
76
 
77
77
/* ***************************************** */
78
78
/* action_edit.c */
107
107
/* defines for snap keyframes 
108
108
 * NOTE: keep in sync with eEditKeyframes_Snap (in ED_keyframes_edit.h)
109
109
 */
110
 
enum {
 
110
enum eActKeys_Snap_Mode {
111
111
        ACTKEYS_SNAP_CFRA = 1,
112
112
        ACTKEYS_SNAP_NEAREST_FRAME,
113
113
        ACTKEYS_SNAP_NEAREST_SECOND,
114
114
        ACTKEYS_SNAP_NEAREST_MARKER,
115
 
} eActKeys_Snap_Mode;
 
115
};
116
116
 
117
117
/* defines for mirror keyframes 
118
118
 * NOTE: keep in sync with eEditKeyframes_Mirror (in ED_keyframes_edit.h)
119
119
 */
120
 
enum {
 
120
enum eActKeys_Mirror_Mode {
121
121
        ACTKEYS_MIRROR_CFRA = 1,
122
122
        ACTKEYS_MIRROR_YAXIS,
123
123
        ACTKEYS_MIRROR_XAXIS,
124
124
        ACTKEYS_MIRROR_MARKER,
125
 
} eActKeys_Mirror_Mode;
 
125
};
126
126
        
127
127
/* ***************************************** */
128
128
/* action_ops.c */