UI: Add scroll to sidebar tabs #105355

Merged
Pablo Vazquez merged 3 commits from guishe/blender:category-tab-scroll into main 2023-03-15 16:45:21 +01:00
Contributor

When the height of the editor couldn’t fit the sidebar tabs, they would shrink
to a minimum size that made it impossible to read the tab labels.

This pull request matches the behaviour with the Properties Editor navigation
bar, by introducing the following improvements:

  • Avoid truncating tab labels.
  • Allow scrolling when tabs don’t fit.

Behaviour is similar to how scrolling works in the Properties Editor navigation
bar, supporting mouse wheel up/down and MMB, and switching tabs with
Ctrl+Wheel Up/Down.

When the height of the editor couldn’t fit the sidebar tabs, they would shrink to a minimum size that made it impossible to read the tab labels. This pull request matches the behaviour with the Properties Editor navigation bar, by introducing the following improvements: * Avoid truncating tab labels. * Allow scrolling when tabs don’t fit. Behaviour is similar to how scrolling works in the Properties Editor navigation bar, supporting mouse wheel up/down and MMB, and switching tabs with `Ctrl+Wheel Up/Down`.
Pablo Vazquez added this to the User Interface project 2023-03-02 22:45:16 +01:00
Member

Amazing to see this fix again. It works as one would expect, here's a video showing how it looks.

Thanks for working on it!

Amazing to see this fix again. It works as one would expect, here's a [video showing how it looks](/attachments/4aac58a5-a85b-42c4-a660-c59da60e5d15). Thanks for working on it!
Hans Goudey added the
Module
User Interface
label 2023-03-06 15:44:24 +01:00
Campbell Barton reviewed 2023-03-09 06:03:24 +01:00
@ -483,2 +510,4 @@
}
wmWindow *win = CTX_wm_window(C);
wmEvent *event = win->event_last_handled;

Use win->eventstate, win->event_last_handled is intended for event handling logic and not to be used by interface logic. Updated the doc-string to note this 09ba0210d9.

Use `win->eventstate`, `win->event_last_handled` is intended for event handling logic and not to be used by interface logic. Updated the doc-string to note this 09ba0210d9a19a2713fa0f92cf5f54914789c62f.
Author
Contributor

Solved, the problem I had is that mval is not assigned in win->eventstate for 'Wheel Up/Down' events.

Solved, the problem I had is that `mval` is not assigned in `win->eventstate` for 'Wheel Up/Down' events.
guishe marked this conversation as resolved
Campbell Barton requested review from Campbell Barton 2023-03-09 13:07:39 +01:00
Julian Eisel reviewed 2023-03-09 15:02:29 +01:00
@ -196,6 +206,21 @@ static int view_pan_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
inline bool mouse_in_category_tab(const ARegion *region, const wmEvent *event)
Member

I don't see a point in using inline here, this is not a performance sensitive code path, so I rather don't optimize prematurely and let the compiler figure things out.

I don't see a point in using `inline` here, this is not a performance sensitive code path, so I rather don't optimize prematurely and let the compiler figure things out.
guishe marked this conversation as resolved
Guillermo Venegas force-pushed category-tab-scroll from 19509af027 to 721e1b0084 2023-03-09 18:49:35 +01:00 Compare
Campbell Barton requested changes 2023-03-10 00:27:06 +01:00
@ -2256,3 +2245,3 @@
if (LIKELY(category)) {
PanelCategoryDyn *pc_dyn = UI_panel_category_find(region, category);
if (LIKELY(pc_dyn)) {
if (LIKELY(pc_dyn) && (event->modifier & KM_CTRL)) {

Include a comment for shy checking CTRL is needed, also shouldn't this check event->modifier == KM_CTRL (so other modifier combinations are ignored).

Include a comment for shy checking CTRL is needed, also shouldn't this check `event->modifier == KM_CTRL` (so other modifier combinations are ignored).
guishe marked this conversation as resolved
@ -196,6 +206,21 @@ static int view_pan_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}

Use ED_region_panel_category_gutter_isect_xy or add a new public utility function to area_query.c if existing functions cannot be used - with an explanation for how it differs from existing intersection checking functions.

Use `ED_region_panel_category_gutter_isect_xy` or add a new public utility function to `area_query.c` if existing functions cannot be used - with an explanation for how it differs from existing intersection checking functions.
Author
Contributor

It works, can I just assume that win->eventstate is never null?

It works, can I just assume that `win->eventstate` is never null?

Yes, you can assume it's never NULL (the doc-string should be updated to note this).

Yes, you can assume it's never NULL (the doc-string should be updated to note this).
guishe marked this conversation as resolved
@ -455,6 +455,9 @@ typedef struct ARegion {
rcti drawrct;
/** Size. */
short winx, winy;
/** Scroll value for category tab. */

Doc-string should state what unit this is in.

Also, is it scaled by DPI - does it properly handle changes (loading other peoples files with Hi-DPI?).

Doc-string should state what unit this is in. Also, is it scaled by DPI - does it properly handle changes (loading other peoples files with Hi-DPI?).
guishe marked this conversation as resolved
Campbell Barton reviewed 2023-03-10 00:31:14 +01:00
@ -1405,14 +1400,13 @@ void UI_panel_category_draw_all(ARegion *region, const char *category_id_active)
LISTBASE_FOREACH (PanelCategoryDyn *, pc_dyn, &region->panels_category) {
const rcti *rct = &pc_dyn->rect;
const bool is_visible = rct->ymin < v2d->mask.ymax && rct->ymax > v2d->mask.ymin;

Couldn't this be more efficient?

if (rct->ymin < v2d->mask.ymax) {
  /* Scrolled outside the top of the view, check the next tab. */
  continue;
}
if (rct->ymax > v2d->mask.ymin) {
  /* Scrolled past visible bounds, no need to draw other tabs. */
  break;
}
Couldn't this be more efficient? ``` if (rct->ymin < v2d->mask.ymax) { /* Scrolled outside the top of the view, check the next tab. */ continue; } if (rct->ymax > v2d->mask.ymin) { /* Scrolled past visible bounds, no need to draw other tabs. */ break; } ```
Author
Contributor
if (rct->ymin > v2d->mask.ymax) {
  /* Scrolled outside the top of the view, check the next tab. */
  continue;
}
if (rct->ymax < v2d->mask.ymin) {
  /* Scrolled past visible bounds, no need to draw other tabs. */
  break;
}

Works fine!

``` if (rct->ymin > v2d->mask.ymax) { /* Scrolled outside the top of the view, check the next tab. */ continue; } if (rct->ymax < v2d->mask.ymin) { /* Scrolled past visible bounds, no need to draw other tabs. */ break; } ``` Works fine!
guishe marked this conversation as resolved

Something to consider is how the scroll position is handled across modes.

Edit-mode for example may show many tabs, the user may scroll to the bottom.
Do we consider it a problem if toggling edit-mode (for e.g.) resets the scroll position?

Something to consider is how the scroll position is handled across modes. Edit-mode for example may show many tabs, the user may scroll to the bottom. Do we consider it a problem if toggling edit-mode (for e.g.) resets the scroll position?
Member

Do we consider it a problem if toggling edit-mode (for e.g.) resets the scroll position?

I think it's acceptable since we do that already in other vertical tabs layout like the Properties Editor's navigation bar, or even the editor itself.

If a solution for the navigation bar's scroll comes up it could be applied here, but that would probably be a separate patch that fixes both.

> Do we consider it a problem if toggling edit-mode (for e.g.) resets the scroll position? I think it's acceptable since we do that already in other vertical tabs layout like the Properties Editor's navigation bar, or even the editor itself. If a solution for the navigation bar's scroll comes up it could be applied here, but that would probably be a separate patch that fixes both.
Guillermo Venegas requested review from Campbell Barton 2023-03-10 22:08:35 +01:00
Campbell Barton approved these changes 2023-03-15 09:57:44 +01:00
Guillermo Venegas force-pushed category-tab-scroll from ae62c60f4d to 9478a4d45d 2023-03-15 15:54:30 +01:00 Compare
Guillermo Venegas force-pushed category-tab-scroll from 9478a4d45d to e94fbaa5cf 2023-03-15 16:19:59 +01:00 Compare
Guillermo Venegas force-pushed category-tab-scroll from e94fbaa5cf to c48c4b090c 2023-03-15 16:36:56 +01:00 Compare
Pablo Vazquez merged commit c0e757a713 into main 2023-03-15 16:45:21 +01:00
Pablo Vazquez deleted branch category-tab-scroll 2023-03-15 16:45:22 +01:00
Sign in to join this conversation.
No reviewers
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
4 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#105355
No description provided.