Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_fileselect.h
| Show First 20 Lines • Show All 145 Lines • ▼ Show 20 Lines | |||||
| struct ID *ED_fileselect_active_asset_get(const struct SpaceFile *sfile); | struct ID *ED_fileselect_active_asset_get(const struct SpaceFile *sfile); | ||||
| /* Activate the file that corresponds to the given ID. | /* Activate the file that corresponds to the given ID. | ||||
| * Pass deferred=true to wait for the next refresh before activating. */ | * Pass deferred=true to wait for the next refresh before activating. */ | ||||
| void ED_fileselect_activate_by_id(struct SpaceFile *sfile, | void ED_fileselect_activate_by_id(struct SpaceFile *sfile, | ||||
| struct ID *asset_id, | struct ID *asset_id, | ||||
| const bool deferred); | const bool deferred); | ||||
| void ED_fileselect_deselect_all(struct SpaceFile *sfile); | |||||
| void ED_fileselect_activate_by_relpath(struct SpaceFile *sfile, const char *relative_path); | |||||
| void ED_fileselect_window_params_get(const struct wmWindow *win, | void ED_fileselect_window_params_get(const struct wmWindow *win, | ||||
| int win_size[2], | int win_size[2], | ||||
| bool *is_maximized); | bool *is_maximized); | ||||
| struct ScrArea *ED_fileselect_handler_area_find(const struct wmWindow *win, | struct ScrArea *ED_fileselect_handler_area_find(const struct wmWindow *win, | ||||
| const struct wmOperator *file_operator); | const struct wmOperator *file_operator); | ||||
| int ED_path_extension_type(const char *path); | int ED_path_extension_type(const char *path); | ||||
| ▲ Show 20 Lines • Show All 69 Lines • Show Last 20 Lines | |||||