Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/WM_types.h
| Show First 20 Lines • Show All 218 Lines • ▼ Show 20 Lines | |||||
| * 0x0000FF00; data subtype (unused?) | * 0x0000FF00; data subtype (unused?) | ||||
| * 0x000000FF; action | * 0x000000FF; action | ||||
| */ | */ | ||||
| /* category */ | /* category */ | ||||
| #define NOTE_CATEGORY 0xFF000000 | #define NOTE_CATEGORY 0xFF000000 | ||||
| #define NC_WM (1<<24) | #define NC_WM (1<<24) | ||||
| #define NC_WINDOW (2<<24) | #define NC_WINDOW (2<<24) | ||||
| #define NC_SCREEN (3<<24) | #define NC_SCREEN (3<<24) | ||||
| #define NC_SCENE (4<<24) | #define NC_SCENE (4<<24) | ||||
| #define NC_OBJECT (5<<24) | #define NC_OBJECT (5<<24) | ||||
| #define NC_MATERIAL (6<<24) | #define NC_MATERIAL (6<<24) | ||||
| #define NC_TEXTURE (7<<24) | #define NC_TEXTURE (7<<24) | ||||
| #define NC_LAMP (8<<24) | #define NC_LAMP (8<<24) | ||||
| #define NC_GROUP (9<<24) | #define NC_GROUP (9<<24) | ||||
| #define NC_IMAGE (10<<24) | #define NC_IMAGE (10<<24) | ||||
| #define NC_BRUSH (11<<24) | #define NC_BRUSH (11<<24) | ||||
| Show All 17 Lines | #define NOTE_DATA 0x00FF0000 | ||||
| /* NC_WM windowmanager */ | /* NC_WM windowmanager */ | ||||
| #define ND_FILEREAD (1<<16) | #define ND_FILEREAD (1<<16) | ||||
| #define ND_FILESAVE (2<<16) | #define ND_FILESAVE (2<<16) | ||||
| #define ND_DATACHANGED (3<<16) | #define ND_DATACHANGED (3<<16) | ||||
| #define ND_HISTORY (4<<16) | #define ND_HISTORY (4<<16) | ||||
| #define ND_JOB (5<<16) | #define ND_JOB (5<<16) | ||||
| #define ND_UNDO (6<<16) | #define ND_UNDO (6<<16) | ||||
| /* NC_SCREEN screen */ | /* NC_SCREEN */ | ||||
| #define ND_SCREENBROWSE (1<<16) | #define ND_LAYOUTBROWSE (1<<16) | ||||
| #define ND_SCREENDELETE (2<<16) | #define ND_LAYOUTDELETE (2<<16) | ||||
| #define ND_SCREENCAST (3<<16) | #define ND_SCREENCAST (3<<16) | ||||
| #define ND_ANIMPLAY (4<<16) | #define ND_ANIMPLAY (4<<16) | ||||
| #define ND_GPENCIL (5<<16) | #define ND_GPENCIL (5<<16) | ||||
| #define ND_EDITOR_CHANGED (6<<16) /*sent to new editors after switching to them*/ | #define ND_EDITOR_CHANGED (6<<16) /*sent to new editors after switching to them*/ | ||||
| #define ND_SCREENSET (7<<16) | #define ND_LAYOUTSET (7<<16) | ||||
| #define ND_SKETCH (8<<16) | #define ND_SKETCH (8<<16) | ||||
| #define ND_WORKSPACE_SET (9<<16) | |||||
| /* NC_SCENE Scene */ | /* NC_SCENE Scene */ | ||||
| #define ND_SCENEBROWSE (1<<16) | #define ND_SCENEBROWSE (1<<16) | ||||
| #define ND_MARKERS (2<<16) | #define ND_MARKERS (2<<16) | ||||
| #define ND_FRAME (3<<16) | #define ND_FRAME (3<<16) | ||||
| #define ND_RENDER_OPTIONS (4<<16) | #define ND_RENDER_OPTIONS (4<<16) | ||||
| #define ND_NODES (5<<16) | #define ND_NODES (5<<16) | ||||
| #define ND_SEQUENCER (6<<16) | #define ND_SEQUENCER (6<<16) | ||||
| ▲ Show 20 Lines • Show All 425 Lines • Show Last 20 Lines | |||||