Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_buttons/buttons_intern.h
| /* SPDX-License-Identifier: GPL-2.0-or-later | /* SPDX-License-Identifier: GPL-2.0-or-later | ||||
| * Copyright 2008 Blender Foundation. All rights reserved. */ | * Copyright 2008 Blender Foundation. All rights reserved. */ | ||||
| /** \file | /** \file | ||||
| * \ingroup spbuttons | * \ingroup spbuttons | ||||
| */ | */ | ||||
| #pragma once | #pragma once | ||||
| #include "BLI_bitmap.h" | #include "BLI_bitmap.h" | ||||
| #include "DNA_listBase.h" | #include "DNA_listBase.h" | ||||
| #include "RNA_types.h" | #include "RNA_types.h" | ||||
| #ifdef __cplusplus | |||||
| extern "C" { | |||||
| #endif | |||||
| struct ARegionType; | struct ARegionType; | ||||
| struct ID; | struct ID; | ||||
| struct SpaceProperties; | struct SpaceProperties; | ||||
| struct Tex; | struct Tex; | ||||
| struct bContext; | struct bContext; | ||||
| struct bContextDataResult; | struct bContextDataResult; | ||||
| struct bNode; | struct bNode; | ||||
| struct bNodeSocket; | struct bNodeSocket; | ||||
| ▲ Show 20 Lines • Show All 70 Lines • ▼ Show 20 Lines | |||||
| void BUTTONS_OT_clear_filter(struct wmOperatorType *ot); | void BUTTONS_OT_clear_filter(struct wmOperatorType *ot); | ||||
| void BUTTONS_OT_toggle_pin(struct wmOperatorType *ot); | void BUTTONS_OT_toggle_pin(struct wmOperatorType *ot); | ||||
| void BUTTONS_OT_file_browse(struct wmOperatorType *ot); | void BUTTONS_OT_file_browse(struct wmOperatorType *ot); | ||||
| /** | /** | ||||
| * Second operator, only difference from #BUTTONS_OT_file_browse is #WM_FILESEL_DIRECTORY. | * Second operator, only difference from #BUTTONS_OT_file_browse is #WM_FILESEL_DIRECTORY. | ||||
| */ | */ | ||||
| void BUTTONS_OT_directory_browse(struct wmOperatorType *ot); | void BUTTONS_OT_directory_browse(struct wmOperatorType *ot); | ||||
| void BUTTONS_OT_context_menu(struct wmOperatorType *ot); | void BUTTONS_OT_context_menu(struct wmOperatorType *ot); | ||||
| #ifdef __cplusplus | |||||
| } | |||||
| #endif | |||||