Lists do allow interaction per context menu usually. So users may expect to also have the ability to modify (rename) and insert items via context menu, as well as add/remove.
(In reply to Heiko Tietze from comment #0) > Lists do allow interaction per context menu usually. I havent seen any lists in LO that provide a context menu, while i have seen lists that have right-click act no different to left-click (e.g. autocorrect dialog, exceptions tab). So what is 'usually' based on?
(In reply to Yousuf Philips (jay) from comment #1) > So what is 'usually' based on? Software in general. But I would object you 'not in LibreOffice' argument. Styles: yes, gallery: yes, navigator: yes... though the offered functions are not always what the user is looking for.
(In reply to Heiko Tietze from comment #2) > Software in general. Any particular software that i might have on my pc? > But I would object you 'not in LibreOffice' argument. > Styles: yes, gallery: yes, navigator: yes... though the offered functions > are not always what the user is looking for. Styles and navigator are tree controls and gallery is icon display control. Them having a scrollbar on the side of the control doesnt make them a listbox.
** Please read this message in its entirety before responding ** To make sure we're focusing on the bugs that affect our users today, LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed bugs which have not been touched for over a year. There have been thousands of bug fixes and commits since anyone checked on this bug report. During that time, it's possible that the bug has been fixed, or the details of the problem have changed. We'd really appreciate your help in getting confirmation that the bug is still present. If you have time, please do the following: Test to see if the bug is still present with the latest version of LibreOffice from https://www.libreoffice.org/download/ If the bug is present, please leave a comment that includes the information from Help - About LibreOffice. If the bug is NOT present, please set the bug's Status field to RESOLVED-WORKSFORME and leave a comment that includes the information from Help - About LibreOffice. Please DO NOT Update the version field Reply via email (please reply directly on the bug tracker) Set the bug's Status field to RESOLVED - FIXED (this status has a particular meaning that is not appropriate in this case) If you want to do more to help you can test to see if your issue is a REGRESSION. To do so: 1. Download and install oldest version of LibreOffice (usually 3.3 unless your bug pertains to a feature added after 3.3) from http://downloadarchive.documentfoundation.org/libreoffice/old/ 2. Test your bug 3. Leave a comment with your results. 4a. If the bug was present with 3.3 - set version to 'inherited from OOo'; 4b. If the bug was not present in 3.3 - add 'regression' to keyword Feel free to come ask questions or to say hello in our QA chat: https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa Thank you for helping us make LibreOffice even better for everyone! Warm Regards, QA Team MassPing-UntouchedBug
Change to Enhancement still missed in Version: 6.2.0.0.alpha0+ Build ID: cec31fdedd7c94f4ebf903a66456a75867db22b0 CPU threads: 4; OS: Windows 6.1; UI render: default; VCL: win; TinderBox: Win-x86@42, Branch:master, Time: 2018-10-21_22:54:44 Locale: ru-RU (ru_RU); Calc: threaded still need in future version ;-)
Let's make this an easyHack. What to do? ----------- Add context (right click) menu support to the Functions and Contents boxes of the customize dialog's Menu, Context Menu, and Menu tabs. Probable context menu items for the Functions (left) list: - Add Probable context menu items for the Contents (right) list: - Remove - Rename How? (Code pointers) -------------------- Take CommandHdl from the fpicker/source/office/fileview.cxx as an example, and see how it is connected to mxTreeView with the connect_popup_menu() call, and how it is declared, and defined in the same file. You will also need to create a tiny ui file just like the one used there (svtools/uiconfig/ui/fileviewmenu.ui). Source file for the menu and context menu tabs: cui/source/customize/SvxMenuConfigPage.cxx Source file for the toolbar tab: cui/source/customize/SvxToolbarConfigPage.cxx Right listbox (assigned commands): m_xContentsListBox Left listbox (available functions): m_xFunctions
(In reply to Muhammet Kara from comment #6) > Let's make this an easyHack. Maybe bug #114557 is relevant here (or maybe your proposal has already taken this into account). (Might be appropriate to "grey out" "rename" for these cases -- to avoid "confusion".)
Sarper Akdemir committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/d54202ff690e4e97e018461cc6dc3dfadd36a702 tdf#112135: Provide controls through context menu in lists of Customize dialog It will be available in 7.0.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
(In reply to sdc.blanco from comment #7) > (In reply to Muhammet Kara from comment #6) > > Let's make this an easyHack. > Maybe bug #114557 is relevant here (or maybe your proposal has already taken > this into account). (Might be appropriate to "grey out" "rename" for these > cases -- to avoid "confusion".) The solution reuses the implementation of the current buttons. So no need to do anything special here. When the other bug is fixed, this will also be fixed.