├── .gitignore ├── Packages.dgml ├── README.md ├── TomatoTimerWPF.sln └── TomatoTimerWPF ├── App.config ├── App.xaml ├── App.xaml.cs ├── EmbeddedAssembly.cs ├── Extensions.cs ├── GifImage.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Pages ├── Page_Buttons.xaml ├── Page_Buttons.xaml.cs ├── Page_Settings.xaml ├── Page_Settings.xaml.cs ├── Page_SoundSettings.xaml ├── Page_SoundSettings.xaml.cs └── UIStyleResource.xaml ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── RectConverter.cs ├── Resource ├── Android_JellyBean │ ├── 1-navigation-cancel.png │ ├── 10-device-access-alarms.png │ ├── 10-device-access-alarms_big.png │ ├── 10-device-access-alarms_big_wbg.ico │ ├── 10-device-access-alarms_big_wbg.pdn │ ├── 10-device-access-alarms_big_wbg.png │ ├── 10-device-access-alarms_big_wbg__.ico │ ├── 10-device-access-alarms_big_wbg_wbloom.ico │ ├── 10-device-access-alarms_big_wbg_wbloom.pdn │ ├── 10-device-access-alarms_big_wbg_wbloom.png │ ├── 10-device-access-alarms_shift.png │ ├── 10-device-access-time.png │ ├── 10-device-access-volume-muted.png │ ├── 10-device-access-volume-on.png │ ├── 10-device-access-volume-on_white.png │ ├── 12-hardware-gamepad.ico │ ├── 12-hardware-gamepad.png │ ├── 2-action-help.png │ ├── 2-action-settings.png │ ├── 4-collections-collection.png │ ├── 4-collections-go-to-today.png │ ├── 4-collections-view-as-list.ico │ ├── 4-collections-view-as-list.png │ ├── 5-content-edit.png │ ├── 9-av-full-screen.png │ ├── 9-av-make-available-offline.png │ ├── 9-av-move.png │ ├── 9-av-pause.ico │ ├── 9-av-pause.png │ ├── 9-av-play.ico │ ├── 9-av-play.png │ ├── 9-av-replay.ico │ ├── 9-av-replay.png │ └── 9-av-stop.png ├── Roboto-Black.ttf ├── Roboto-Regular.ttf ├── TomatoTimerWPF_HowToGetCalenderID.gif ├── work_bag-32_alpha.png ├── work_bag-512.png ├── work_bag-512_alpha.png ├── work_icon.png └── work_icon_alpha.png ├── TimerSettings.Designer.cs ├── TimerSettings.settings ├── TomatoTimerWPF.csproj └── merged64.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/.gitignore -------------------------------------------------------------------------------- /Packages.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/Packages.dgml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/README.md -------------------------------------------------------------------------------- /TomatoTimerWPF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF.sln -------------------------------------------------------------------------------- /TomatoTimerWPF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/App.config -------------------------------------------------------------------------------- /TomatoTimerWPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/App.xaml -------------------------------------------------------------------------------- /TomatoTimerWPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/App.xaml.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/EmbeddedAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/EmbeddedAssembly.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Extensions.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/GifImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/GifImage.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/MainWindow.xaml -------------------------------------------------------------------------------- /TomatoTimerWPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/Pages/Page_Buttons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Pages/Page_Buttons.xaml -------------------------------------------------------------------------------- /TomatoTimerWPF/Pages/Page_Buttons.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Pages/Page_Buttons.xaml.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/Pages/Page_Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Pages/Page_Settings.xaml -------------------------------------------------------------------------------- /TomatoTimerWPF/Pages/Page_Settings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Pages/Page_Settings.xaml.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/Pages/Page_SoundSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Pages/Page_SoundSettings.xaml -------------------------------------------------------------------------------- /TomatoTimerWPF/Pages/Page_SoundSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Pages/Page_SoundSettings.xaml.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/Pages/UIStyleResource.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Pages/UIStyleResource.xaml -------------------------------------------------------------------------------- /TomatoTimerWPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Properties/Resources.resx -------------------------------------------------------------------------------- /TomatoTimerWPF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Properties/Settings.settings -------------------------------------------------------------------------------- /TomatoTimerWPF/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Properties/app.manifest -------------------------------------------------------------------------------- /TomatoTimerWPF/RectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/RectConverter.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/1-navigation-cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/1-navigation-cancel.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg.ico -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg.pdn -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg__.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg__.ico -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg_wbloom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg_wbloom.ico -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg_wbloom.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg_wbloom.pdn -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg_wbloom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_big_wbg_wbloom.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-alarms_shift.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-time.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-volume-muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-volume-muted.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-volume-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-volume-on.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-volume-on_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/10-device-access-volume-on_white.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/12-hardware-gamepad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/12-hardware-gamepad.ico -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/12-hardware-gamepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/12-hardware-gamepad.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/2-action-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/2-action-help.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/2-action-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/2-action-settings.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/4-collections-collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/4-collections-collection.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/4-collections-go-to-today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/4-collections-go-to-today.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/4-collections-view-as-list.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/4-collections-view-as-list.ico -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/4-collections-view-as-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/4-collections-view-as-list.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/5-content-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/5-content-edit.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/9-av-full-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/9-av-full-screen.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/9-av-make-available-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/9-av-make-available-offline.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/9-av-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/9-av-move.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/9-av-pause.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/9-av-pause.ico -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/9-av-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/9-av-pause.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/9-av-play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/9-av-play.ico -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/9-av-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/9-av-play.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/9-av-replay.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/9-av-replay.ico -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/9-av-replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/9-av-replay.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Android_JellyBean/9-av-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Android_JellyBean/9-av-stop.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Roboto-Black.ttf -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/Roboto-Regular.ttf -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/TomatoTimerWPF_HowToGetCalenderID.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/TomatoTimerWPF_HowToGetCalenderID.gif -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/work_bag-32_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/work_bag-32_alpha.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/work_bag-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/work_bag-512.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/work_bag-512_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/work_bag-512_alpha.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/work_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/work_icon.png -------------------------------------------------------------------------------- /TomatoTimerWPF/Resource/work_icon_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/Resource/work_icon_alpha.png -------------------------------------------------------------------------------- /TomatoTimerWPF/TimerSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/TimerSettings.Designer.cs -------------------------------------------------------------------------------- /TomatoTimerWPF/TimerSettings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/TimerSettings.settings -------------------------------------------------------------------------------- /TomatoTimerWPF/TomatoTimerWPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/TomatoTimerWPF.csproj -------------------------------------------------------------------------------- /TomatoTimerWPF/merged64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harpseal/TomatoTimerWPF/HEAD/TomatoTimerWPF/merged64.bat --------------------------------------------------------------------------------