-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add option to favorite items in the file browser #7753
base: master
Are you sure you want to change the base?
Conversation
# Conflicts: # include/MainWindow.h # src/gui/MainWindow.cpp
I think the phrasing "Favorites" is better than "Starred Items". |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just my initial thoughts and concerns. I think overall, a new class should be made that inherits FileBrowser
and then has its own functions and logic for favoriting items. Putting that functionality directly into FileBrowser
feels wrong because it seems like there's a layer of abstraction missing (that class shouldn't have to worry about that stuff).
Actually nevermind, not sure yet.
Co-authored-by: Sotonye Atemie <sakertooth@gmail.com>
Co-authored-by: Sotonye Atemie <sakertooth@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably be consistent with either using "favorite" or "favourite" to avoid complications. For the actual GUI, translations can be added as necessary.
I am probably going to be submitting the review in batches since I need to review multiple times.
I was thinking of a solution like this:
Unless I am mistaken, that should be it (if not, the bulk of the work). No need to maintain a separate list of items or add coupling you don't need. |
Co-authored-by: Sotonye Atemie <sakertooth@gmail.com>
Co-authored-by: Sotonye Atemie <sakertooth@gmail.com>
This seems like a good solution. |
I believe I was consistent with "favorite", but as I'm British I may have slipped up. I'll take a look later. |
Feel free to choose whatever you are comfortable with. But I would recommend being consistent with one in the code 👍 |
…tem-starring # Conflicts: # src/core/ConfigManager.cpp
Great, thank you. I'll do that now |
This comment was marked as outdated.
This comment was marked as outdated.
We didn't have to change the star for the classic theme? |
I left the original one in and I think it looks fine for now (discord message) It's just slightly smaller than the rest. |
oh yeah I moved it up in 4848a41. Should I move it back down? I like the position its at now because its quite an important tab |
I was thinking move it above instrument plugins, but its up to you. Don't feel compelled to though. I don't mind where it is too much. Not that big of a deal. |
I think its better below, because the way I see it, the plugin browser is separate to all the other file browsers (its not even really a file browser, as such) |
I briefly tested this and it seems to work as expected. I'm able to add/remove files/folders from favorites. If I delete a file which has been favorited, that file will disappear from the favorites tab (you have to restart for it to update though). If you add that file back it will appear again in the favorites (I'm not sure if that is intended behavior but it seems fine). While using it, I felt like it would be useful if you could drag to rearrange the order of the favorite files. Also I kind of expected a star to appear beside the files which are favorited in the other file browsers. |
data/themes/default/hq_mode.png
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is hq_mode
used anywhere else in the codebase? I can't seem to find any occurrences, but I'm not sure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also why does the diff show the classic theme icon being renamed, but the default theme icon is being deleted and replaced by a different file (which looks the same?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is
hq_mode
used anywhere else in the codebase? I can't seem to find any occurrences, but I'm not sure.
not that i'm aware of. @sakertooth probably knows more
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also why does the diff show the classic theme icon being renamed, but the default theme icon is being deleted and replaced by a different file (which looks the same?)
I had to resize the default icon because it looked bad shown at #7753 (comment)
And this explains why I didn't change the classic theme: #7753 (comment)
I thought about this, but I think that might be to0 complex for me at the moment (I'm new to both Qt and LMMS).
I also thought about this, and I think it might cause performance issues, as checking if an item is starred requires a loop to be run, and it would be taxing to run this for each item- especially in the My Computer or My Home tabs. (explained here: #7753 (comment)) |
Added the ability to favorite items. This gets added to its own tab named "My Favorites". note that this required a minor config change. I'm unsure whether this counts as a new config version.
Video Demonstration (slightly outdated):
(recovered from #7419)