Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/WM_types.h
| Show First 20 Lines • Show All 816 Lines • ▼ Show 20 Lines | |||||
| /* *************** Drag and drop *************** */ | /* *************** Drag and drop *************** */ | ||||
| #define WM_DRAG_ID 0 | #define WM_DRAG_ID 0 | ||||
| #define WM_DRAG_RNA 1 | #define WM_DRAG_RNA 1 | ||||
| #define WM_DRAG_PATH 2 | #define WM_DRAG_PATH 2 | ||||
| #define WM_DRAG_NAME 3 | #define WM_DRAG_NAME 3 | ||||
| #define WM_DRAG_VALUE 4 | #define WM_DRAG_VALUE 4 | ||||
| #define WM_DRAG_COLOR 5 | #define WM_DRAG_COLOR 5 | ||||
| #define WM_DRAG_DATASTACK 6 | |||||
| typedef enum wmDragFlags { | typedef enum wmDragFlags { | ||||
| WM_DRAG_NOP = 0, | WM_DRAG_NOP = 0, | ||||
| WM_DRAG_FREE_DATA = 1, | WM_DRAG_FREE_DATA = 1, | ||||
| } wmDragFlags; | } wmDragFlags; | ||||
| /* note: structs need not exported? */ | /* note: structs need not exported? */ | ||||
| ▲ Show 20 Lines • Show All 106 Lines • Show Last 20 Lines | |||||