Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/screen/screen_intern.h
| Show All 29 Lines | |||||
| /* internal exports only */ | /* internal exports only */ | ||||
| #define AZONESPOTW UI_HEADER_OFFSET /* width of corner azone - max */ | #define AZONESPOTW UI_HEADER_OFFSET /* width of corner azone - max */ | ||||
| #define AZONESPOTH (0.6f * U.widget_unit) /* height of corner azone */ | #define AZONESPOTH (0.6f * U.widget_unit) /* height of corner azone */ | ||||
| #define AZONEFADEIN (5.0f * U.widget_unit) /* when azone is totally visible */ | #define AZONEFADEIN (5.0f * U.widget_unit) /* when azone is totally visible */ | ||||
| #define AZONEFADEOUT (6.5f * U.widget_unit) /* when we start seeing the azone */ | #define AZONEFADEOUT (6.5f * U.widget_unit) /* when we start seeing the azone */ | ||||
| #define AREAJOINTOLERANCE (1.0f * U.widget_unit) /* Edges must be close to allow joining. */ | |||||
| /* Expanded interaction influence of area borders. */ | /* Expanded interaction influence of area borders. */ | ||||
| #define BORDERPADDING (U.dpi_fac + U.pixelsize) | #define BORDERPADDING (U.dpi_fac + U.pixelsize) | ||||
| /* area.c */ | /* area.c */ | ||||
| void ED_area_data_copy(ScrArea *area_dst, ScrArea *area_src, const bool do_free); | void ED_area_data_copy(ScrArea *area_dst, ScrArea *area_src, const bool do_free); | ||||
| void ED_area_data_swap(ScrArea *sa1, ScrArea *sa2); | void ED_area_data_swap(ScrArea *sa1, ScrArea *sa2); | ||||
| void region_toggle_hidden(struct bContext *C, ARegion *region, const bool do_fade); | void region_toggle_hidden(struct bContext *C, ARegion *region, const bool do_fade); | ||||
| ▲ Show 20 Lines • Show All 54 Lines • Show Last 20 Lines | |||||