Bug 157580 - Allow notebookbar and groupedbarcompact groups sections to be shown/hidden based on available space instead of only their order
Summary: Allow notebookbar and groupedbarcompact groups sections to be shown/hidden ba...
Status: RESOLVED WONTFIX
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: UI (show other bugs)
Version:
(earliest affected)
5.3.0.3 release
Hardware: All All
: medium enhancement
Assignee: Not Assigned
URL:
Whiteboard:
Keywords: needsUXEval
Depends on:
Blocks: Notebookbar-Resize Notebookbar-Tabbed
  Show dependency treegraph
 
Reported: 2023-10-03 16:04 UTC by Jeff Fortin Tam
Modified: 2023-11-03 07:40 UTC (History)
4 users (show)

See Also:
Crash report or crash signature:


Attachments
screenshot of issue for Writer's Home tab (LO 24.2) (70.43 KB, image/png)
2023-10-24 09:03 UTC, Stéphane Guillou (stragu)
Details
Screenshot at 1280x768 (67.60 KB, image/png)
2023-10-31 15:47 UTC, Jeff Fortin Tam
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jeff Fortin Tam 2023-10-03 16:04:27 UTC
Particularly on laptop screens or in windowed mode, the notebookbar (and groupedbarcompact, I think) toolbar UI has some limitations when it comes to space optimization when hiding/revealing sections.

For example, in Writer, the "Styles Preview" section is very wide, and blocks the display of subsequent "Table" and "Zoom" sections, even though there would be plenty of space to display those.

This is a demonstration of the problem: https://youtu.be/5SiVEOhYqrQ

---

Tested with version: 7.6.2.1 (X86_64) / LibreOffice Community
Build ID: 56f7684011345957bbf33a7ee678afaf4d2ba333
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: gtk3
Locale: fr-CA (en_CA.UTF-8); UI: en-US
Flatpak

...but it happened in every previous version that shipped notebookbar UIs, too.
Comment 1 Stéphane Guillou (stragu) 2023-10-24 09:01:49 UTC
That's a good point, thanks Jeff!
It does not make sense to have such a big empty space if those two last sections could fit in it.

The logic would be:
- width is reduced and is not enough for section
- section is removed
- check if next in line can fit
- if not, repeat until last one

But what should happen when the width is increased? Table and Zoom sections disappear to prioritise showing the Style previews? Or they are only pushed to the end once there is enough space to show the Styles preview?

One related enhancement would be to reduce the number of columns in the Styles preview (3, then 2, then 1) according to space available.
But this is not only about this Styles preview: the same issue can be seen in the Home tab for Draw, where the Area and Line formatting section is quite wide too.

Tested with:

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: fd69b546ad36452560cb11ccb28e78632d65f045
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded
Comment 2 Stéphane Guillou (stragu) 2023-10-24 09:03:10 UTC
Created attachment 190398 [details]
screenshot of issue for Writer's Home tab (LO 24.2)

Note that the empty space left by the Styles preview could fit the Table and Zoom sections _twice_.
Comment 3 V Stuart Foote 2023-10-24 12:10:12 UTC
The NB has a simple priority test based on available LO frame width, if a higher priority item fits it displays *in its sequence*, subsequent widgets are not evaluated and they all are available on the overflow exposure >> listbox.

Shuffling the current widget/group order based on available width seems like a recipe for chaotic UI experience--better to keep the sequence static-- tolerate the empty space on the MUFFIN NB.  Even though some lower priority widgets might fit.

IMHO => WF

Adjusting the intentionally lightweight MUFFIN NB framework to allow users to set sequence and priority of exposed widgets could be a Customization feature. Current customization is limited to expose/hide toggle per widget.
Comment 4 V Stuart Foote 2023-10-24 12:27:37 UTC
(In reply to V Stuart Foote from comment #3)

for example, Tools -> Customize -> Notebookbar and on the 'Home Tab' target simply toggle the 'Styles Preview' to not display.  

The following widgets/groups will fill in.

Seems like enough for use on displays rendering at less than 1024px width.
Comment 5 Jeff Fortin Tam 2023-10-24 13:16:26 UTC
Alternatively:

When width is constrained, you could automatically show a simple compact styles insertion dropdown/menubutton instead of the styles preview rectangle (which _cannot_ be shown anyway, as you have seen, it's just... an empty space), i.e. show a button with a "▼" where you click it and it reveals a full-sized styles preview picker (which then also wouldn't be limited to this impractically small and scrolling-intensive rectangle space that the UI currently has) as a dropdown from that button. And then, when width becomes wide enough for the styles preview to show embedded in the toolbar, you can show it instead of the dropdown button.

In any case, users shouldn't have to go dig by themselves into customization settings (and most users won't even _think_ about it, they will just see a big empty space on their toolbar on some laptop screens or window sizes, and not realize that there is more to be had), from a UX standpoint this should be handled automatically.
Comment 6 Stéphane Guillou (stragu) 2023-10-24 15:06:30 UTC
(In reply to V Stuart Foote from comment #3)
> Shuffling the current widget/group order based on available width seems like
> a recipe for chaotic UI experience--better to keep the sequence static--
> tolerate the empty space on the MUFFIN NB.  Even though some lower priority
> widgets might fit. 
> Adjusting the intentionally lightweight MUFFIN NB framework to allow users
> to set sequence and priority of exposed widgets could be a Customization
> feature. Current customization is limited to expose/hide toggle per widget.

Good point. Reordering is not ideal and could make things confusing.
Customising the order would help, but reordering elements in the Customize dialog currently has no effect (see bug 140140).

Regardless, the bad use of space remains an issue and I imagine looks like bad design to many. I strongly agree with Jeff that the default behaviour needs improving.

So my current suggestion / summary would be to have a guideline like:
- Tab sections should be less than X pixels in width;
- If a tab section is more than X pixels, it needs to have an alternative view that can reduce it to below the limit.

For the particular case of the Styles preview, we have mentioned two options for the alternative "low width" mode:
- Jeff's suggestion: dropdown button to reveal the full preview
- My suggestion: reduced number of columns

Note that MS Office 365 (online) does _both_ of the above suggestions for its Styles widget: it will first reduce the number of columns, then convert it to a single button to pop down the full widget.
Comment 7 Stéphane Guillou (stragu) 2023-10-24 15:08:59 UTC
(In reply to Stéphane Guillou (stragu) from comment #6)
> MS Office 365 (online) does _both_ of the above suggestions
... and OnlyOffice only reduces the number of columns (until it goes in the "More" overflow dropdown).
Comment 8 V Stuart Foote 2023-10-24 18:28:27 UTC
(In reply to Stéphane Guillou (stragu) from comment #7)
Not a great example, MS uses a fully scoped Ribbon API, in both UWP and win32 [1] for builds of MS Office for Windows/macOS. Not a good model as we would never implement it as native code as we have to be mindful of cross-platform parity in the UI.  The Glade UI framework cobbled together for the MUFFIN NB does really support dynamic reordering or pushing from NB onto collapsed listbox beyond what was done already for the exposure chevrons. 
 
=-ref-= 
[1] https://learn.microsoft.com/en-us/windows/win32/windowsribbon/-uiplat-windowsribbon-entry
Comment 9 Heiko Tietze 2023-10-25 08:20:34 UTC
Besides shuffling being odd and the customizability I'd like to point out that the styles preview is an essential control and you should rather hide other items.

Home > Table is also available under Insert > Table, Zoom can be adjusted via View, and the Navigator has an button on this tab too.

(In reply to Stéphane Guillou (stragu) from comment #6)
> - Tab sections should be less than X pixels in width;
We must not cripple the styles preview, for example. And I'd say the controls and sections are reasonably designed. OTOH, we have a guideline for the total width (1280x768px/WXGA).

> - If a tab section is more than X pixels, it needs to have an alternative
> view that can reduce it to below the limit.
Quite some effort. If screen space is crucial, the user should pick a different UI layout.

=> WF
Comment 10 Heiko Tietze 2023-10-31 15:03:24 UTC
(In reply to V Stuart Foote from comment #3)
> IMHO => WF
(In reply to Heiko Tietze from comment #9)
> => WF

No further input, resolving WF now.
Comment 11 Jeff Fortin Tam 2023-10-31 15:47:59 UTC
Created attachment 190566 [details]
Screenshot at 1280x768

I don't understand how you can essentially conclude that my proposal is taking anything essential away from anyone by either showing "the other widgets that can fit" or a compacted popup button version of the styles preview widget, _when the style widget couldn't be shown and nothing would be shown at all anyway_. It's additive, not substractive. It improves UX rather than takes anything away from it, as that space was already lost/empty.

> OTOH, we have a guideline for the total width (1280x768px/WXGA).

Indeed, the new attached screenshot here shows the UI failing that specific guideline, by wasting one third of the screen's width that could be used to show something. And I'm using the English language (which is quite compact) for the UI there, not even French or German, so my example is gentle…
Comment 12 Heiko Tietze 2023-11-03 07:40:08 UTC
(In reply to Jeff Fortin Tam from comment #11)
> I don't understand how you can essentially conclude that my proposal is
> taking anything essential away from anyone...
You proposed to change the overflow procedure and to first hide the styles preview. Actually, translating into algorithm, to start with the largest section.
(In reply to V Stuart Foote from comment #3)
> The NB has a simple priority test based on available LO frame width...
We do have a priority for the sections, but the styles preview was always attributed to be important. In the end it boils down to whether the interaction with styles or quickly inserting tables is more important (we provide alternative access for both functions).

If your screen is very small, you can customize and disable the styles preview.

And of course, if you disagree with the decision, feel free to reopen.