Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/interface/interface_intern.h
| Show First 20 Lines • Show All 68 Lines • ▼ Show 20 Lines | enum { | ||||
| UI_SCROLLED = (1 << 1), | UI_SCROLLED = (1 << 1), | ||||
| UI_ACTIVE = (1 << 2), | UI_ACTIVE = (1 << 2), | ||||
| UI_HAS_ICON = (1 << 3), | UI_HAS_ICON = (1 << 3), | ||||
| UI_HIDDEN = (1 << 4), | UI_HIDDEN = (1 << 4), | ||||
| /** Display selected, doesn't impact interaction. */ | /** Display selected, doesn't impact interaction. */ | ||||
| UI_SELECT_DRAW = (1 << 5), | UI_SELECT_DRAW = (1 << 5), | ||||
| /** Property search filter is active and the button does not match. */ | /** Property search filter is active and the button does not match. */ | ||||
| UI_SEARCH_FILTER_NO_MATCH = (1 << 6), | UI_SEARCH_FILTER_NO_MATCH = (1 << 6), | ||||
| /** Temporarily override the active button for lookups in context, regions, etc. (everything | |||||
| * using #ui_context_button_active()). For example, so that operators normally acting on the | |||||
| * active button can be polled on non-active buttons to (e.g. for disabling). */ | |||||
| UI_BUT_ACTIVE_OVERRIDE = (1 << 7), | |||||
| /* WARNING: rest of #uiBut.flag in UI_interface.h */ | /* WARNING: rest of #uiBut.flag in UI_interface.h */ | ||||
| }; | }; | ||||
| /** #uiBut.dragflag */ | /** #uiBut.dragflag */ | ||||
| enum { | enum { | ||||
| UI_BUT_DRAGPOIN_FREE = (1 << 0), | UI_BUT_DRAGPOIN_FREE = (1 << 0), | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 1,443 Lines • Show Last 20 Lines | |||||