Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_file/file_intern.h
| Show First 20 Lines • Show All 66 Lines • ▼ Show 20 Lines | |||||
| void FILE_OT_bookmark_add(struct wmOperatorType *ot); | void FILE_OT_bookmark_add(struct wmOperatorType *ot); | ||||
| void FILE_OT_bookmark_delete(struct wmOperatorType *ot); | void FILE_OT_bookmark_delete(struct wmOperatorType *ot); | ||||
| void FILE_OT_reset_recent(wmOperatorType *ot); | void FILE_OT_reset_recent(wmOperatorType *ot); | ||||
| void FILE_OT_hidedot(struct wmOperatorType *ot); | void FILE_OT_hidedot(struct wmOperatorType *ot); | ||||
| void FILE_OT_execute(struct wmOperatorType *ot); | void FILE_OT_execute(struct wmOperatorType *ot); | ||||
| void FILE_OT_cancel(struct wmOperatorType *ot); | void FILE_OT_cancel(struct wmOperatorType *ot); | ||||
| void FILE_OT_parent(struct wmOperatorType *ot); | void FILE_OT_parent(struct wmOperatorType *ot); | ||||
| void FILE_OT_directory_new(struct wmOperatorType *ot); | void FILE_OT_directory_new(struct wmOperatorType *ot); | ||||
| void FILE_OT_directory(struct wmOperatorType *ot); | |||||
| void FILE_OT_filename(struct wmOperatorType *ot); | |||||
| void FILE_OT_previous(struct wmOperatorType *ot); | void FILE_OT_previous(struct wmOperatorType *ot); | ||||
| void FILE_OT_next(struct wmOperatorType *ot); | void FILE_OT_next(struct wmOperatorType *ot); | ||||
| void FILE_OT_refresh(struct wmOperatorType *ot); | void FILE_OT_refresh(struct wmOperatorType *ot); | ||||
| void FILE_OT_bookmark_toggle(struct wmOperatorType *ot); | void FILE_OT_bookmark_toggle(struct wmOperatorType *ot); | ||||
| void FILE_OT_filenum(struct wmOperatorType *ot); | void FILE_OT_filenum(struct wmOperatorType *ot); | ||||
| void FILE_OT_delete(struct wmOperatorType *ot); | void FILE_OT_delete(struct wmOperatorType *ot); | ||||
| void FILE_OT_rename(struct wmOperatorType *ot); | void FILE_OT_rename(struct wmOperatorType *ot); | ||||
| void FILE_OT_smoothscroll(struct wmOperatorType *ot); | void FILE_OT_smoothscroll(struct wmOperatorType *ot); | ||||
| int file_exec(bContext *C, struct wmOperator *exec_op); | int file_exec(bContext *C, struct wmOperator *exec_op); | ||||
| int file_cancel_exec(bContext *C, struct wmOperator *unused); | int file_cancel_exec(bContext *C, struct wmOperator *unused); | ||||
| int file_parent_exec(bContext *C, struct wmOperator *unused); | int file_parent_exec(bContext *C, struct wmOperator *unused); | ||||
| int file_previous_exec(bContext *C, struct wmOperator *unused); | int file_previous_exec(bContext *C, struct wmOperator *unused); | ||||
| int file_next_exec(bContext *C, struct wmOperator *unused); | int file_next_exec(bContext *C, struct wmOperator *unused); | ||||
| int file_filename_exec(bContext *C, struct wmOperator *unused); | |||||
| int file_directory_exec(bContext *C, struct wmOperator *unused); | |||||
| int file_directory_new_exec(bContext *C, struct wmOperator *unused); | int file_directory_new_exec(bContext *C, struct wmOperator *unused); | ||||
| int file_delete_exec(bContext *C, struct wmOperator *unused); | int file_delete_exec(bContext *C, struct wmOperator *unused); | ||||
| void file_directory_enter_handle(bContext *C, void *arg_unused, void *arg_but); | |||||
| void file_filename_enter_handle(bContext *C, void *arg_unused, void *arg_but); | |||||
| int file_highlight_set(struct SpaceFile *sfile, struct ARegion *ar, int mx, int my); | int file_highlight_set(struct SpaceFile *sfile, struct ARegion *ar, int mx, int my); | ||||
| void file_sfile_to_operator(struct wmOperator *op, struct SpaceFile *sfile, char *filepath); | void file_sfile_to_operator(struct wmOperator *op, struct SpaceFile *sfile, char *filepath); | ||||
| void file_operator_to_sfile(struct SpaceFile *sfile, struct wmOperator *op); | void file_operator_to_sfile(struct SpaceFile *sfile, struct wmOperator *op); | ||||
| /* filesel.c */ | /* filesel.c */ | ||||
| float file_shorten_string(char *string, float w, int front); | float file_shorten_string(char *string, float w, int front); | ||||
| float file_string_width(const char *str); | float file_string_width(const char *str); | ||||
| float file_font_pointsize(void); | float file_font_pointsize(void); | ||||
| void file_change_dir(bContext *C, int checkdir); | void file_change_dir(bContext *C, int checkdir); | ||||
| int file_select_match(struct SpaceFile *sfile, const char *pattern, char *matched_file); | int file_select_match(struct SpaceFile *sfile, const char *pattern, char *matched_file); | ||||
| bool autocomplete_directory(struct bContext *C, char *str, void *arg_v); | int autocomplete_directory(struct bContext *C, char *str, void *arg_v); | ||||
| bool autocomplete_file(struct bContext *C, char *str, void *arg_v); | int autocomplete_file(struct bContext *C, char *str, void *arg_v); | ||||
| /* file_panels.c */ | /* file_panels.c */ | ||||
| void file_panels_register(struct ARegionType *art); | void file_panels_register(struct ARegionType *art); | ||||
| #endif /* __FILE_INTERN_H__ */ | #endif /* __FILE_INTERN_H__ */ | ||||