Skip to content
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

Open
wants to merge 54 commits into
base: master
Choose a base branch
from

Conversation

AW1534
Copy link
Member

@AW1534 AW1534 commented Mar 3, 2025

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.

<favoriteitems>
  <item path="C:\Program Files\Steinberg\VSTPlugins"/>
  <item path="E:\Documents\lmms\samples\Boi-1da Soundkit 2\Bill Gates Hat.wav"/>
</favoriteitems>

image
image

Video Demonstration (slightly outdated):

(recovered from #7419)

@sakertooth
Copy link
Contributor

I think the phrasing "Favorites" is better than "Starred Items".

Copy link
Contributor

@sakertooth sakertooth left a 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.

@sakertooth sakertooth changed the title Add Item starring Add option to favorite items in the file browser Mar 5, 2025
Copy link
Contributor

@sakertooth sakertooth left a 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.

@sakertooth
Copy link
Contributor

I was thinking of a solution like this:

  1. FileBrowser should contain new context menu actions to add or remove favorite items.
  2. The context menu actions should update the config as necessary. If the browser is the "Favorite" browser (can make a new class or pass in a bool parameter in the constructor, I prefer a new class), then a Directory or FileItem should be added or removed to/from the main FileBrowserTreeWidget. Otherwise, do nothing (maybe add a star to the right if possible).
  3. On construction of the "Favorite" browser, it should be fine to load in the favorite items the same way as the other browsers without much refactoring.

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.

AW1534 and others added 2 commits March 6, 2025 07:41
Co-authored-by: Sotonye Atemie <sakertooth@gmail.com>
Co-authored-by: Sotonye Atemie <sakertooth@gmail.com>
@AW1534
Copy link
Member Author

AW1534 commented Mar 6, 2025

  1. The context menu actions should update the config as necessary. If the browser is the "Favorite" browser (can make a new class or pass in a bool parameter in the constructor, I prefer a new class), then a Directory or FileItem should be added or removed to/from the main FileBrowserTreeWidget. Otherwise, do nothing (maybe add a star to the right if possible).

This seems like a good solution.
The star on the right is something I wanted to add too, but I realised it would require checking if each item is favourited as it is added, which would end up running std::find_if on each element. in something like the samples or preset browser this would be fine, but in the home or computer browsers this would compound and slow down the loading of the items drastically

@AW1534
Copy link
Member Author

AW1534 commented Mar 6, 2025

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 believe I was consistent with "favorite", but as I'm British I may have slipped up. I'll take a look later.

@sakertooth
Copy link
Contributor

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 👍

@AW1534
Copy link
Member Author

AW1534 commented Mar 8, 2025

I think that's it (for the most part, we have to deal with the icon situation now).

Great, thank you. I'll do that now

@AW1534

This comment was marked as outdated.

@AW1534 AW1534 requested a review from sakertooth March 9, 2025 13:26
@sakertooth
Copy link
Contributor

We didn't have to change the star for the classic theme?

@AW1534
Copy link
Member Author

AW1534 commented Mar 9, 2025

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.

@sakertooth
Copy link
Contributor

Looks good, thanks. I was also wondering if we wanted to move the star? 🤔
Doesn't matter as much though.
image

@AW1534
Copy link
Member Author

AW1534 commented Mar 9, 2025

Looks good, thanks. I was also wondering if we wanted to move the star? 🤔 Doesn't matter as much though.

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

@sakertooth
Copy link
Contributor

sakertooth commented Mar 9, 2025

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.

@AW1534
Copy link
Member Author

AW1534 commented Mar 9, 2025

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)

@regulus79
Copy link
Contributor

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.

Copy link
Contributor

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.

Copy link
Contributor

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?)

Copy link
Member Author

@AW1534 AW1534 Mar 13, 2025

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

Copy link
Member Author

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)

@AW1534
Copy link
Member Author

AW1534 commented Mar 13, 2025

I felt like it would be useful if you could drag to rearrange the order of the favorite files.

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).

Also I kind of expected a star to appear beside the files which are favorited in the other file browsers.

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))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants