2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2017-11-03 20:26:35 +11:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup edinterface
|
2017-11-03 20:26:35 +11:00
|
|
|
*
|
|
|
|
|
* Share between interface_region_*.c files.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2021-11-10 15:49:49 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-11-03 20:26:35 +11:00
|
|
|
/* interface_region_menu_popup.c */
|
2022-04-04 13:17:03 +10:00
|
|
|
|
2019-01-04 11:05:53 +11:00
|
|
|
uint ui_popup_menu_hash(const char *str);
|
2017-11-03 20:26:35 +11:00
|
|
|
|
|
|
|
|
/* interface_regions_intern.h */
|
2020-04-03 14:23:21 +02:00
|
|
|
ARegion *ui_region_temp_add(bScreen *screen);
|
|
|
|
|
void ui_region_temp_remove(struct bContext *C, bScreen *screen, ARegion *region);
|
2021-11-10 15:49:49 -06:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
2021-11-13 12:47:18 +11:00
|
|
|
#endif
|