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

PowerAccent with multi-language selection #35539

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

Sirozha1337
Copy link
Contributor

@Sirozha1337 Sirozha1337 commented Oct 22, 2024

  • Updated Language enum, method signatures, and settings to support multiple language selections.
  • Remove ALL language and added special characters language instead.
  • Modified UI to use ListView with checkboxes for language selection, including a "Select All" option.
  • Adjusted ViewModel and code-behind to handle multi-selection logic.
  • Updated Resources.resw and PowerAccentViewModel.cs to reflect these changes.

Summary of the Pull Request

Added an ability to select multiple languages.

This UI is the best I can do right now as my experience with Desktop UI development is limited, so if someone wants to make it better, be my guest.

image

PR Checklist

Detailed Description of the Pull Request / Additional comments

Validation Steps Performed

Manually tested the app.

- Updated Language enum, method signatures, and settings to support multiple language selections.
- Remove ALL language and added special characters language instead.
- Modified UI to use ListView with checkboxes for language selection, including a "Select All" option.
- Adjusted ViewModel and code-behind to handle multi-selection logic.
- Updated Resources.resw and PowerAccentViewModel.cs to reflect these changes.
@htcfreek
Copy link
Collaborator

htcfreek commented Oct 23, 2024

Some small thoughts:

  1. Would it be helpful to separate languages/countries and special things like currency, ipa, romanization, secial characters. Maybe by sorting all languages or having a separation line.
  2. What means special characters?! Can we make the content of this list more clear in settings. 🤔
  3. What oder do the sets have in the character pop up? Alphabetical, time of selection?

@Sirozha1337
Copy link
Contributor Author

  1. Would it be helpful to separate languages/countries and special things like currency, ipa, romanization, secial characters. Maybe by sorting all languages or having a separation line.

It's not clear to me how to sort languages, when they are supposed to be localizable and their position is hardcoded inside the XAML. By which field should they be sorted: localized name, english name, language code? Maybe I should also rewrite it so that the list of options is bound from the code behind?

  1. What means special characters?! Can we make the content of this list more clear in settings. 🤔

Maybe just list them in the docs? It wasn't much clearer before, why enabling the "All Available" option added those symbols to the list, when they in fact do not belong to any of the languages. Also, I'm not sure anyone was even using this option, since it makes the app hard to use, there are just too many symbols to choose from.

  1. What oder do the sets have in the character pop up? Alphabetical, time of selection?

Looks like by time of selection. Though I'm not sure, I don't know how the ListView works with its internal list of SelectedOptions, so it's possible that it is not predetermined. Maybe we need some other type of control with an ability to order the list of selected items.

@stefansjfw
Copy link
Collaborator

It's not clear to me how to sort languages, when they are supposed to be localizable and their position is hardcoded inside the XAML. By which field should they be sorted: localized name, english name, language code? Maybe I should also rewrite it so that the list of options is bound from the code behind?

See this #35462

@htcfreek
Copy link
Collaborator

It's not clear to me how to sort languages, when they are supposed to be localizable and their position is hardcoded inside the XAML. By which field should they be sorted: localized name, english name, language code? Maybe I should also rewrite it so that the list of options is bound from the code behind?

See this #35462

@stefansjfw
How to position things like math ans currency in the list. Alphabetical or as first one?

@stefansjfw
Copy link
Collaborator

It's not clear to me how to sort languages, when they are supposed to be localizable and their position is hardcoded inside the XAML. By which field should they be sorted: localized name, english name, language code? Maybe I should also rewrite it so that the list of options is bound from the code behind?

See this #35462

@stefansjfw How to position things like math ans currency in the list. Alphabetical or as first one?

Ideally at the top or bottom and with some separator if possible like in context menus

@Sirozha1337
Copy link
Contributor Author

@stefansjfw @htcfreek

Do you mean like this? How should I name those groups?

Screenshot

@Sirozha1337
Copy link
Contributor Author

Also, what about the character popup, should I somehow sort those characters after constructing the complete list for all the selected languages?

Or maybe the sorting should be handled in a separate PR, since you already have an option to sort by "usage frequency". Maybe there should be a list of options instead of just this one? For example: Usage Frequency, Alphabetical, Reverse Alphabetical, Custom Order.

@htcfreek
Copy link
Collaborator

htcfreek commented Oct 24, 2024

Or maybe the sorting should be handled in a separate PR, since you already have an option to sort by "usage frequency". Maybe there should be a list of options instead of just this one? For example: Usage Frequency, Alphabetical, Reverse Alphabetical, Custom Order.

Pop up: When asking I didn't thought about the usage frequency sorting. I think keep it as is and either open a issue for discussion and a new PR later or wait if users complains about the current behavior.

(Settings: Sort checkboxes alphabetical in each groub.)

@Sirozha1337
Copy link
Contributor Author

Sirozha1337 commented Oct 24, 2024

wait if users complains about the current behavior.

Ha ha, I like that option ;)

(Settings: Sort checkboxes alphabetical in each groub.)

They're sorted on the screenshot (from left to right, top to bottom). Do you mean they should go top to bottom, left to right?

What do you think about group titles? I should probably make them a bit smaller, but I'm not sure about the word "synthetic".

Maybe it should be called "Special characters", but then I don't know what to call the current "special characters" option. Because it includes both math symbols, currencies and letters from the languages I've never heard about. Maybe it should be split into multiple options? But then again my knowledge of them is lacking so I'm not sure how to group them correctly.

@htcfreek
Copy link
Collaborator

htcfreek commented Oct 25, 2024

(Settings: Sort checkboxes alphabetical in each groub.)

They're sorted on the screenshot (from left to right, top to bottom). Do you mean they should go top to bottom, left to right?

What I mean is they should be automatically sorted based on their translated name. Then the sorting is alphabetical in all supported ui language.

What do you think about group titles? I should probably make them a bit smaller, but I'm not sure about the word "synthetic".

You can use "Language sets" and "Special sets" or something similar.

Maybe it should be called "Special characters", but then I don't know what to call the current "special characters" option. Because it includes both math symbols, currencies and letters from the languages I've never heard about. Maybe it should be split into multiple options? But then again my knowledge of them is lacking so I'm not sure how to group them correctly.

Maybe the problem here is that this is a undefined mixed collection of all leftovers. There is a PR to create an extra Math set (#34428).

@Sirozha1337
Copy link
Contributor Author

Ok, I just pushed the new commit and here's the updated UI.

image

This comment has been minimized.

- Groups languages into two groups
- Sort them by localized language name
- Remove unneeded looping when no languages selected
@PesBandi
Copy link
Contributor

Hi @Sirozha1337, first of all thank you for all the work, I'm really looking forward to this. I just noticed one slight issue, the checkboxes look a bit weird in dark mode:
image
Compared to other checkboxes:
image

@Sirozha1337
Copy link
Contributor Author

Hi @PesBandi, thank you for your observation! I tried playing around with style properties, but I do not undestand how to make it look the same as ordinary checkbox. When I look at the other CheckBoxes that are used in this project, they do not have any styling applied to them. When I remove this styling, that I've applied to the ListViewItemPresenter, CheckBoxes start look completely different (no background or border, just the tick mark):

CheckBoxBorderBrush="{ThemeResource CheckBoxBorderThemeBrush}"
CheckBoxBrush="{ThemeResource CheckBoxBackgroundThemeBrush}"
CheckBrush="{ThemeResource CheckBoxForegroundUnchecked}"

I don't understand what should I set here to make it look good both in Dark and Light mode. It's my first time working with WinUI project.

When working on this PR, I've used an example from WinUI 3 gallery app. For some reason they don't use any styling in this example and it looks just like the ordinary checkbox. I can't understand why is my so different when no styling is applied to it.

I tried asking GitHub Copilot about it, but it doesn't seem to understand how to style it either. It suggests only wrong solutions which relate to CheckBox styling and not to ListView with CheckBoxes styling, it can't even get to the solution I've figured out by myself.

Either I'm very stupid and can't Google properly or there's just too little info about styling this ListView component on the web.

Maybe someone else can help me with this PR?

@PesBandi
Copy link
Contributor

Yeah, I have no idea either 🤷‍♂️. I don't think this is a major issue, I just thought I'd point it out in case you know how to fix it.

@htcfreek
Copy link
Collaborator

@Sirozha1337
Maybe this table helps: https://learn.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.primitives.listviewitempresenter?view=winrt-26100

@niels9001, do you have an idea why the list view checkboxes looking different?

@Sirozha1337
Copy link
Contributor Author

@Sirozha1337 Maybe this table helps: https://learn.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.primitives.listviewitempresenter?view=winrt-26100

Yeah, this is how I figured out the current solution. The documentation lists all properties but doesn't tell me which ThemeResources should I bind to get the default CheckBox look.

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.

4 participants