Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/UI_interface.h
| Show All 31 Lines | |||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| /* Struct Declarations */ | /* Struct Declarations */ | ||||
| struct ARegion; | struct ARegion; | ||||
| struct AssetFilterSettings; | struct AssetFilterSettings; | ||||
| struct AssetHandle; | struct AssetHandle; | ||||
| struct AssetMetaData; | |||||
| struct AutoComplete; | struct AutoComplete; | ||||
| struct EnumPropertyItem; | struct EnumPropertyItem; | ||||
| struct FileDirEntry; | struct FileDirEntry; | ||||
| struct FileSelectParams; | struct FileSelectParams; | ||||
| struct ID; | struct ID; | ||||
| struct IDProperty; | struct IDProperty; | ||||
| struct ImBuf; | struct ImBuf; | ||||
| struct Image; | struct Image; | ||||
| ▲ Show 20 Lines • Show All 727 Lines • ▼ Show 20 Lines | |||||
| void UI_block_translate(uiBlock *block, int x, int y); | void UI_block_translate(uiBlock *block, int x, int y); | ||||
| int UI_but_return_value_get(uiBut *but); | int UI_but_return_value_get(uiBut *but); | ||||
| void UI_but_drag_set_id(uiBut *but, struct ID *id); | void UI_but_drag_set_id(uiBut *but, struct ID *id); | ||||
| void UI_but_drag_set_asset(uiBut *but, | void UI_but_drag_set_asset(uiBut *but, | ||||
| const struct AssetHandle *asset, | const struct AssetHandle *asset, | ||||
| const char *path, | const char *path, | ||||
| struct AssetMetaData *metadata, | |||||
| int import_type, /* eFileAssetImportType */ | int import_type, /* eFileAssetImportType */ | ||||
| int icon, | int icon, | ||||
| struct ImBuf *imb, | struct ImBuf *imb, | ||||
| float scale); | float scale); | ||||
| void UI_but_drag_set_rna(uiBut *but, struct PointerRNA *ptr); | void UI_but_drag_set_rna(uiBut *but, struct PointerRNA *ptr); | ||||
| void UI_but_drag_set_path(uiBut *but, const char *path, const bool use_free); | void UI_but_drag_set_path(uiBut *but, const char *path, const bool use_free); | ||||
| void UI_but_drag_set_name(uiBut *but, const char *name); | void UI_but_drag_set_name(uiBut *but, const char *name); | ||||
| void UI_but_drag_set_value(uiBut *but); | void UI_but_drag_set_value(uiBut *but); | ||||
| ▲ Show 20 Lines • Show All 2,005 Lines • Show Last 20 Lines | |||||