├── .gitattributes ├── .gitignore ├── App.config ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Enumerations.cs ├── Interfaces ├── IExecutionService.cs ├── IParametersService.cs ├── ISettingsService.cs ├── ITranslationService.cs └── IWindowService.cs ├── LICENSE.txt ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models ├── SettingsModel.cs └── WindowPositionModel.cs ├── README.md ├── ScreTran.csproj ├── ScreTran.sln ├── ScreTranLogo.ico ├── ScreTranLogoSmall.png ├── Services ├── ExecutionService.cs ├── ParametersService.cs ├── SettingsService.cs ├── TranslationService.cs └── WindowService.cs ├── ViewModels ├── MainWindowModel.cs ├── SelectionViewModel.cs └── TranslationViewModel.cs ├── Views ├── SelectionWindow.xaml ├── SelectionWindow.xaml.cs ├── TranslationWindow.xaml └── TranslationWindow.xaml.cs ├── XAMLConverters └── BoolToObjectConverter.cs └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/App.config -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/AssemblyInfo.cs -------------------------------------------------------------------------------- /Enumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Enumerations.cs -------------------------------------------------------------------------------- /Interfaces/IExecutionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Interfaces/IExecutionService.cs -------------------------------------------------------------------------------- /Interfaces/IParametersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Interfaces/IParametersService.cs -------------------------------------------------------------------------------- /Interfaces/ISettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Interfaces/ISettingsService.cs -------------------------------------------------------------------------------- /Interfaces/ITranslationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Interfaces/ITranslationService.cs -------------------------------------------------------------------------------- /Interfaces/IWindowService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Interfaces/IWindowService.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Models/SettingsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Models/SettingsModel.cs -------------------------------------------------------------------------------- /Models/WindowPositionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Models/WindowPositionModel.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/README.md -------------------------------------------------------------------------------- /ScreTran.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/ScreTran.csproj -------------------------------------------------------------------------------- /ScreTran.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/ScreTran.sln -------------------------------------------------------------------------------- /ScreTranLogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/ScreTranLogo.ico -------------------------------------------------------------------------------- /ScreTranLogoSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/ScreTranLogoSmall.png -------------------------------------------------------------------------------- /Services/ExecutionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Services/ExecutionService.cs -------------------------------------------------------------------------------- /Services/ParametersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Services/ParametersService.cs -------------------------------------------------------------------------------- /Services/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Services/SettingsService.cs -------------------------------------------------------------------------------- /Services/TranslationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Services/TranslationService.cs -------------------------------------------------------------------------------- /Services/WindowService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Services/WindowService.cs -------------------------------------------------------------------------------- /ViewModels/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/ViewModels/MainWindowModel.cs -------------------------------------------------------------------------------- /ViewModels/SelectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/ViewModels/SelectionViewModel.cs -------------------------------------------------------------------------------- /ViewModels/TranslationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/ViewModels/TranslationViewModel.cs -------------------------------------------------------------------------------- /Views/SelectionWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Views/SelectionWindow.xaml -------------------------------------------------------------------------------- /Views/SelectionWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Views/SelectionWindow.xaml.cs -------------------------------------------------------------------------------- /Views/TranslationWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Views/TranslationWindow.xaml -------------------------------------------------------------------------------- /Views/TranslationWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/Views/TranslationWindow.xaml.cs -------------------------------------------------------------------------------- /XAMLConverters/BoolToObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/XAMLConverters/BoolToObjectConverter.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavlikBender/ScreTran/HEAD/app.manifest --------------------------------------------------------------------------------