├── .gitignore ├── LICENSE ├── demo ├── Mobile.png └── PC.png ├── readme.md └── src ├── MobSDes ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainPage.xaml ├── MainPage.xaml.cs ├── MobSDes.csproj ├── Package.appxmanifest └── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── MobileCoreServer ├── MobileCoreServer.vcxproj ├── MobileCoreServer.vcxproj.filters ├── PropertySheet.props ├── main.cpp ├── packages.config ├── pch.cpp └── pch.h ├── MobileShellExtLauncher ├── MobileShellExtLauncher.vcxproj ├── MobileShellExtLauncher.vcxproj.filters ├── PropertySheet.props ├── main.cpp ├── packages.config ├── pch.cpp └── pch.h ├── MobileShellExtPackaging ├── Images │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MobileShellExtLauncher │ ├── MiniBroker.exe │ └── MobileShellExtension.dll ├── MobileShellExtPackaging.wapproj └── Package.appxmanifest ├── MobileShellExtension ├── BaseWindow.cpp ├── BaseWindow.h ├── MobileShellExtension.vcxproj ├── MobileShellExtension.vcxproj.filters ├── PropertySheet.props ├── TrashWindow.cpp ├── TrashWindow.h ├── Utils.cpp ├── Utils.h ├── main.cpp ├── packages.config ├── pch.cpp ├── pch.h └── readme.txt ├── MobileShellPackaging ├── Images │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── MobileShellPackaging.wapproj └── Package.appxmanifest ├── MobileShellPlus.sln └── MobileShellPlus ├── Application.manifest ├── BaseWindow.cpp ├── BaseWindow.h ├── LayoutTransformControl.cpp ├── LayoutTransformControl.h ├── MatrixExt.cpp ├── MatrixExt.h ├── MobileShellPlus.vcxproj ├── MobileShellPlus.vcxproj.filters ├── NavBarWindow.cpp ├── NavBarWindow.h ├── NotificationWindow.cpp ├── NotificationWindow.h ├── PropertySheet.props ├── StatusBarWindow.cpp ├── StatusBarWindow.h ├── TopPadWindow.cpp ├── TopPadWindow.h ├── Utils.cpp ├── Utils.h ├── WindowEnumeration.h ├── Wnf.cpp ├── Wnf.h ├── main.cpp ├── packages.config ├── pch.cpp ├── pch.h ├── readme.txt ├── resource.h └── version.rc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/LICENSE -------------------------------------------------------------------------------- /demo/Mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/demo/Mobile.png -------------------------------------------------------------------------------- /demo/PC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/demo/PC.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/readme.md -------------------------------------------------------------------------------- /src/MobSDes/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/App.xaml -------------------------------------------------------------------------------- /src/MobSDes/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/App.xaml.cs -------------------------------------------------------------------------------- /src/MobSDes/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/MobSDes/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/MobSDes/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MobSDes/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/MobSDes/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/MobSDes/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/MobSDes/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MobSDes/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/MainPage.xaml -------------------------------------------------------------------------------- /src/MobSDes/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/MobSDes/MobSDes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/MobSDes.csproj -------------------------------------------------------------------------------- /src/MobSDes/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/Package.appxmanifest -------------------------------------------------------------------------------- /src/MobSDes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MobSDes/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobSDes/Properties/Default.rd.xml -------------------------------------------------------------------------------- /src/MobileCoreServer/MobileCoreServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileCoreServer/MobileCoreServer.vcxproj -------------------------------------------------------------------------------- /src/MobileCoreServer/MobileCoreServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileCoreServer/MobileCoreServer.vcxproj.filters -------------------------------------------------------------------------------- /src/MobileCoreServer/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileCoreServer/PropertySheet.props -------------------------------------------------------------------------------- /src/MobileCoreServer/main.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | 3 | int main() 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /src/MobileCoreServer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileCoreServer/packages.config -------------------------------------------------------------------------------- /src/MobileCoreServer/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/MobileCoreServer/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /src/MobileShellExtLauncher/MobileShellExtLauncher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtLauncher/MobileShellExtLauncher.vcxproj -------------------------------------------------------------------------------- /src/MobileShellExtLauncher/MobileShellExtLauncher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtLauncher/MobileShellExtLauncher.vcxproj.filters -------------------------------------------------------------------------------- /src/MobileShellExtLauncher/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtLauncher/PropertySheet.props -------------------------------------------------------------------------------- /src/MobileShellExtLauncher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtLauncher/main.cpp -------------------------------------------------------------------------------- /src/MobileShellExtLauncher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtLauncher/packages.config -------------------------------------------------------------------------------- /src/MobileShellExtLauncher/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/MobileShellExtLauncher/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtLauncher/pch.h -------------------------------------------------------------------------------- /src/MobileShellExtPackaging/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtPackaging/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellExtPackaging/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtPackaging/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellExtPackaging/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtPackaging/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellExtPackaging/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtPackaging/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellExtPackaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtPackaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/MobileShellExtPackaging/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtPackaging/Images/StoreLogo.png -------------------------------------------------------------------------------- /src/MobileShellExtPackaging/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtPackaging/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellExtPackaging/MobileShellExtLauncher/MiniBroker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtPackaging/MobileShellExtLauncher/MiniBroker.exe -------------------------------------------------------------------------------- /src/MobileShellExtPackaging/MobileShellExtLauncher/MobileShellExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtPackaging/MobileShellExtLauncher/MobileShellExtension.dll -------------------------------------------------------------------------------- /src/MobileShellExtPackaging/MobileShellExtPackaging.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtPackaging/MobileShellExtPackaging.wapproj -------------------------------------------------------------------------------- /src/MobileShellExtPackaging/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtPackaging/Package.appxmanifest -------------------------------------------------------------------------------- /src/MobileShellExtension/BaseWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/BaseWindow.cpp -------------------------------------------------------------------------------- /src/MobileShellExtension/BaseWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/BaseWindow.h -------------------------------------------------------------------------------- /src/MobileShellExtension/MobileShellExtension.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/MobileShellExtension.vcxproj -------------------------------------------------------------------------------- /src/MobileShellExtension/MobileShellExtension.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/MobileShellExtension.vcxproj.filters -------------------------------------------------------------------------------- /src/MobileShellExtension/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/PropertySheet.props -------------------------------------------------------------------------------- /src/MobileShellExtension/TrashWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/TrashWindow.cpp -------------------------------------------------------------------------------- /src/MobileShellExtension/TrashWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/TrashWindow.h -------------------------------------------------------------------------------- /src/MobileShellExtension/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/Utils.cpp -------------------------------------------------------------------------------- /src/MobileShellExtension/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/Utils.h -------------------------------------------------------------------------------- /src/MobileShellExtension/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/main.cpp -------------------------------------------------------------------------------- /src/MobileShellExtension/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/packages.config -------------------------------------------------------------------------------- /src/MobileShellExtension/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/MobileShellExtension/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/pch.h -------------------------------------------------------------------------------- /src/MobileShellExtension/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellExtension/readme.txt -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/StoreLogo.backup.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/MobileShellPackaging/MobileShellPackaging.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/MobileShellPackaging.wapproj -------------------------------------------------------------------------------- /src/MobileShellPackaging/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPackaging/Package.appxmanifest -------------------------------------------------------------------------------- /src/MobileShellPlus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus.sln -------------------------------------------------------------------------------- /src/MobileShellPlus/Application.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/Application.manifest -------------------------------------------------------------------------------- /src/MobileShellPlus/BaseWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/BaseWindow.cpp -------------------------------------------------------------------------------- /src/MobileShellPlus/BaseWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/BaseWindow.h -------------------------------------------------------------------------------- /src/MobileShellPlus/LayoutTransformControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/LayoutTransformControl.cpp -------------------------------------------------------------------------------- /src/MobileShellPlus/LayoutTransformControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/LayoutTransformControl.h -------------------------------------------------------------------------------- /src/MobileShellPlus/MatrixExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/MatrixExt.cpp -------------------------------------------------------------------------------- /src/MobileShellPlus/MatrixExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/MatrixExt.h -------------------------------------------------------------------------------- /src/MobileShellPlus/MobileShellPlus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/MobileShellPlus.vcxproj -------------------------------------------------------------------------------- /src/MobileShellPlus/MobileShellPlus.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/MobileShellPlus.vcxproj.filters -------------------------------------------------------------------------------- /src/MobileShellPlus/NavBarWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/NavBarWindow.cpp -------------------------------------------------------------------------------- /src/MobileShellPlus/NavBarWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/NavBarWindow.h -------------------------------------------------------------------------------- /src/MobileShellPlus/NotificationWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/NotificationWindow.cpp -------------------------------------------------------------------------------- /src/MobileShellPlus/NotificationWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/NotificationWindow.h -------------------------------------------------------------------------------- /src/MobileShellPlus/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/PropertySheet.props -------------------------------------------------------------------------------- /src/MobileShellPlus/StatusBarWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/StatusBarWindow.cpp -------------------------------------------------------------------------------- /src/MobileShellPlus/StatusBarWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/StatusBarWindow.h -------------------------------------------------------------------------------- /src/MobileShellPlus/TopPadWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/TopPadWindow.cpp -------------------------------------------------------------------------------- /src/MobileShellPlus/TopPadWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/TopPadWindow.h -------------------------------------------------------------------------------- /src/MobileShellPlus/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/Utils.cpp -------------------------------------------------------------------------------- /src/MobileShellPlus/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/Utils.h -------------------------------------------------------------------------------- /src/MobileShellPlus/WindowEnumeration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/WindowEnumeration.h -------------------------------------------------------------------------------- /src/MobileShellPlus/Wnf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/Wnf.cpp -------------------------------------------------------------------------------- /src/MobileShellPlus/Wnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/Wnf.h -------------------------------------------------------------------------------- /src/MobileShellPlus/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/main.cpp -------------------------------------------------------------------------------- /src/MobileShellPlus/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/packages.config -------------------------------------------------------------------------------- /src/MobileShellPlus/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/MobileShellPlus/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/pch.h -------------------------------------------------------------------------------- /src/MobileShellPlus/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/readme.txt -------------------------------------------------------------------------------- /src/MobileShellPlus/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/resource.h -------------------------------------------------------------------------------- /src/MobileShellPlus/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobileShell/HEAD/src/MobileShellPlus/version.rc --------------------------------------------------------------------------------