error: ‘INT_MAX’ was not declared in this scope compiler hints to include missing header `#include <climits>` but replaced with `std::numeric_limits<int>::max()` / min **ONLY** in cases where the errors were thrown Pull Request: https://projects.blender.org/blender/blender/pulls/146212
87 lines
2.5 KiB
C++
87 lines
2.5 KiB
C++
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup edscr
|
|
*
|
|
* Helper functions for area/region API.
|
|
*/
|
|
|
|
#include <limits>
|
|
|
|
#include "BKE_screen.hh"
|
|
|
|
#include "BLI_rect.h"
|
|
#include "BLI_utildefines.h"
|
|
|
|
#include "WM_message.hh"
|
|
|
|
#include "ED_screen.hh"
|
|
|
|
#include "UI_interface.hh"
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Generic Tool System Region Callbacks
|
|
* \{ */
|
|
|
|
void ED_region_generic_tools_region_message_subscribe(const wmRegionMessageSubscribeParams *params)
|
|
{
|
|
wmMsgBus *mbus = params->message_bus;
|
|
ARegion *region = params->region;
|
|
|
|
wmMsgSubscribeValue msg_sub_value_region_tag_redraw{};
|
|
msg_sub_value_region_tag_redraw.owner = region;
|
|
msg_sub_value_region_tag_redraw.user_data = region;
|
|
msg_sub_value_region_tag_redraw.notify = ED_region_do_msg_notify_tag_redraw;
|
|
WM_msg_subscribe_rna_anon_prop(mbus, WorkSpace, tools, &msg_sub_value_region_tag_redraw);
|
|
}
|
|
|
|
int ED_region_generic_tools_region_snap_size(const ARegion *region, int size, int axis)
|
|
{
|
|
if (axis == 0) {
|
|
/* Using Y axis avoids slight feedback loop when adjusting X. */
|
|
const float aspect = BLI_rctf_size_y(®ion->v2d.cur) /
|
|
(BLI_rcti_size_y(®ion->v2d.mask) + 1);
|
|
const float column = UI_TOOLBAR_COLUMN / aspect;
|
|
const float margin = UI_TOOLBAR_MARGIN / aspect;
|
|
const float snap_units[] = {
|
|
column + margin,
|
|
(2.0f * column) + margin,
|
|
(2.7f * column) + margin,
|
|
};
|
|
int best_diff = std::numeric_limits<int>::max();
|
|
int best_size = size;
|
|
/* Only snap if less than last snap unit. */
|
|
if (size <= snap_units[ARRAY_SIZE(snap_units) - 1]) {
|
|
for (uint i = 0; i < ARRAY_SIZE(snap_units); i += 1) {
|
|
const int test_size = snap_units[i];
|
|
const int test_diff = abs(test_size - size);
|
|
if (test_diff < best_diff) {
|
|
best_size = test_size;
|
|
best_diff = test_diff;
|
|
}
|
|
}
|
|
}
|
|
return best_size;
|
|
}
|
|
return size;
|
|
}
|
|
|
|
int ED_region_generic_panel_region_snap_size(const ARegion *region, int size, int axis)
|
|
{
|
|
if (axis == 0) {
|
|
if (!UI_panel_category_is_visible(region)) {
|
|
return size;
|
|
}
|
|
|
|
/* Using Y axis avoids slight feedback loop when adjusting X. */
|
|
const float aspect = BLI_rctf_size_y(®ion->v2d.cur) /
|
|
(BLI_rcti_size_y(®ion->v2d.mask) + 1);
|
|
return int(UI_PANEL_CATEGORY_MIN_WIDTH / aspect);
|
|
}
|
|
return size;
|
|
}
|
|
|
|
/** \} */
|