-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
44 changed files
with
1,270 additions
and
763 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
JishoTangoAssistant/Interfaces/ICurrentJapaneseUserInputSelectionService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using System.Collections.ObjectModel; | ||
using System.Threading.Tasks; | ||
using JishoTangoAssistant.Models; | ||
|
||
namespace JishoTangoAssistant.Interfaces; | ||
|
||
public interface ICurrentJapaneseUserInputSelectionService | ||
{ | ||
ObservableCollection<string> GetWords(); | ||
ObservableCollection<string> GetOtherForms(); | ||
ObservableRangeCollection<SimilarMeaningsGroup> GetMeanings(); | ||
int GetSelectedWordsIndex(); | ||
void SetSelectedWordsIndex(int value); | ||
int GetSelectedOtherFormsIndex(); | ||
void SetSelectedOtherFormsIndex(int value); | ||
string GetReadingOutput(); | ||
string GetAdditionalComments(); | ||
void SetAdditionalComments(string value); | ||
bool GetWriteInKana(); | ||
public void SetWriteInKana(bool value); | ||
public bool GetItemAdditionPossible(); | ||
Task UpdateSelectionAsync(string preprocessedInput); | ||
VocabularyItem? CreateVocabularyItem(); | ||
void UpdateOtherForms(); | ||
bool OnlyOneMeaningInSelection(); | ||
void ChangeIsEnabledForAllMeanings(bool isEnabled); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.