Folder format column header, the sort header -> auto-hide it (visually) in Power mode?

Version: Directory Opus 13.22, 64bit, Windows 10

Location: Preferences > File Displays > Options > …

  • Background info:
    When trying to de-clutter the listers as much as possible, it really helped to move the menu toolbar into the window title area. To conserve even more vertical lister space, and also reduce visual “clutter”, IMO, it would help if a lister’s Sort Header (in PowerMode) would auto-hide (scroll up) by default, so only show when the mouse pointer is in the header area.

  • For Thumbnails mode:
    *Preferences > File Displays > Options > Show sort header in icon modes *
    to some degree already exists, i.e. you can turn off the sort header. But this at times is inconvenient when you quickly want to sort by a certain “column”.
    [Only now noted that the context menu lets you “Sort by”… so could work that way.]

  • In Power mode you would not really want to remove the Sort Header since you would want to continue show defined columns and their spacing.

  • Request: Please add an option like
    Set SHOWPOWERMODESORTHEADER=auto/toggle/off/on
    and/or an option under Prefs that automatically hides the Sort Header in Power mode listers when the mouse pointer is not near that header area. This could also be helpful for Details mode
    Set SHOWDETAILSMODESORTHEADER=auto
    (though I never use the latter).

Might be a nice QOL feature, IMO. I’d certainly immediately use it.

Thanks, AEon

I have sort header toggle in quick menu (script)

It would be great if the toggle also applied to the Details view as well, sometimes it's just clutter.

I’ve been reading up on Quick Access, and found a menu under the Folder Tree, but I could not find an option to turn off the Sort Header for Power Mode in the context menus.

Your “(script)” comment thus suggests you have installed a custom script that does the job?

Any more explicit details on the matter would be appreciated, thanks.

yes - custom script, work in progress, has some config options (some of the fonts might not work if not installed), use at own risk. (the toolbar names might need to be changed in the script, etc.)

Popup List View 5.opusscriptinstall (5.9 KB)

call popupListView5 (put in button, bind to hotkey, etc.)

Thanks, very educational, never seen an example of a Script Command. The code contains a huge amount of overhead though, dizzying. I found the central code inspiring, and added a few of those internal commands to my menus:

menu('Main top')                 = 'Toolbar \"Menu\" STATE=top TOGGLE';
menu('Main bottom')              = 'Toolbar \"Menu\" STATE=bottom TOGGLE';
menu('Favorites')                = 'Toolbar NAME=\"Favorites Bar\" STATE=tree TOGGLE';
menu('Labels')                   = 'Toolbar \"Labels\" STATE=left LINE=0 TOGGLE';

menu('Sort Header')              = 'Set ICONMODESORTHEADER=toggle';
menu('Tabs Bar')                 = 'Set HIDEFOLDERTABS=toggle';
menu('Status Bar')               = 'Set STATUSBAR=toggle';

menu('File Icons Toggle')        = 'Set ICONS=toggle';
menu('Thumbnail Column')         = 'Set COLUMNSTOGGLE=thumbnail(0,44)';
menu('Full-Row Toggle')          = 'Set FULLROWSELECT=toggle';

Still, my OP request stands, since there seems to be no way to hide the Sort Header for Power mode.