-
Notifications
You must be signed in to change notification settings - Fork 806
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing Xcode projects to samples (#1659)
* Add missing xcode projects to the sample apps. * Add relative paths
- Loading branch information
Showing
53 changed files
with
2,212 additions
and
1,049 deletions.
There are no files selected for viewing
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
17 changes: 0 additions & 17 deletions
17
...lex/GLKitComplex.vsimporter/GLKitComplex-Headers-WinStore10/GLKitComplex-Headers.vcxitems
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
...tComplex.vsimporter/GLKitComplex-Headers-WinStore10/GLKitComplex-Headers.vcxitems.filters
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
samples/GLKitComplex/GLKitComplex.vsimporter/GLKitComplex-WinStore10/App.xaml
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,8 @@ | ||
<Application | ||
x:Class="GLKitComplex.App" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:local="using:GLKitComplex" | ||
RequestedTheme="Light"> | ||
|
||
</Application> |
90 changes: 90 additions & 0 deletions
90
samples/GLKitComplex/GLKitComplex.vsimporter/GLKitComplex-WinStore10/App.xaml.cpp
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,90 @@ | ||
// | ||
// App.xaml.cpp | ||
// Implementation of the App class. | ||
// | ||
|
||
// clang-format off | ||
|
||
#include "pch.h" | ||
|
||
using namespace GLKitComplex; | ||
|
||
using namespace Platform; | ||
using namespace Windows::ApplicationModel; | ||
using namespace Windows::ApplicationModel::Activation; | ||
using namespace Windows::Foundation; | ||
using namespace Windows::Foundation::Collections; | ||
using namespace Windows::UI::Xaml; | ||
using namespace Windows::UI::Xaml::Controls; | ||
using namespace Windows::UI::Xaml::Controls::Primitives; | ||
using namespace Windows::UI::Xaml::Data; | ||
using namespace Windows::UI::Xaml::Input; | ||
using namespace Windows::UI::Xaml::Interop; | ||
using namespace Windows::UI::Xaml::Media; | ||
using namespace Windows::UI::Xaml::Navigation; | ||
|
||
/// <summary> | ||
/// Initializes the singleton application object. This is the first line of authored code | ||
/// executed, and as such is the logical equivalent of main() or WinMain(). | ||
/// </summary> | ||
App::App() { | ||
InitializeComponent(); | ||
Suspending += ref new SuspendingEventHandler(this, &App::OnSuspending); | ||
} | ||
|
||
extern "C" int main(int argc, char* argv[]); | ||
extern "C" void UIApplicationActivated(Windows::ApplicationModel::Activation::IActivatedEventArgs^ e); | ||
extern "C" void UIApplicationLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ e); | ||
#ifdef ENABLE_BACKGROUND_TASK | ||
extern "C" void UIApplicationBackgroundActivated(Windows::ApplicationModel::Activation::BackgroundActivatedEventArgs^ e); | ||
#endif | ||
|
||
/// <summary> | ||
/// Invoked when the application is launched normally by the end user. Other entry points | ||
/// will be used such as when the application is launched to open a specific file. | ||
/// </summary> | ||
/// <param name="e">Details about the launch request and process.</param> | ||
void App::OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ e) { | ||
main(0, NULL); | ||
UIApplicationLaunched(e); | ||
} | ||
|
||
void App::OnActivated(Windows::ApplicationModel::Activation::IActivatedEventArgs^ e) { | ||
main(0, NULL); | ||
UIApplicationActivated(e); | ||
} | ||
|
||
void App::OnFileActivated(FileActivatedEventArgs^ args) | ||
{ | ||
main(0, NULL); | ||
UIApplicationActivated(args); | ||
} | ||
|
||
#ifdef ENABLE_BACKGROUND_TASK | ||
void App::OnBackgroundActivated(Windows::ApplicationModel::Activation::BackgroundActivatedEventArgs^ e) { | ||
__super ::OnBackgroundActivated(e); | ||
UIApplicationBackgroundActivated(e); | ||
} | ||
#endif | ||
|
||
/// <summary> | ||
/// Invoked when application execution is being suspended. Application state is saved | ||
/// without knowing whether the application will be terminated or resumed with the contents | ||
/// of memory still intact. | ||
/// </summary> | ||
/// <param name="sender">The source of the suspend request.</param> | ||
/// <param name="e">Details about the suspend request.</param> | ||
void App::OnSuspending(Object^ /*sender*/, SuspendingEventArgs^ /*e*/) { | ||
// TODO: Save application state and stop any background activity | ||
} | ||
|
||
/// <summary> | ||
/// Invoked when Navigation to a certain page fails | ||
/// </summary> | ||
/// <param name="sender">The Frame which failed navigation</param> | ||
/// <param name="e">Details about the navigation failure</param> | ||
void App::OnNavigationFailed(Platform::Object^ sender, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs^ e) { | ||
throw ref new FailureException("Failed to load Page " + e->SourcePageType.Name); | ||
} | ||
|
||
// clang-format on |
33 changes: 33 additions & 0 deletions
33
samples/GLKitComplex/GLKitComplex.vsimporter/GLKitComplex-WinStore10/App.xaml.h
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,33 @@ | ||
// | ||
// App.xaml.h | ||
// Declaration of the App class. | ||
// | ||
|
||
// clang-format off | ||
#pragma once | ||
|
||
#include "App.g.h" | ||
|
||
namespace GLKitComplex { | ||
/// <summary> | ||
/// Provides application-specific behavior to supplement the default Application class. | ||
/// </summary> | ||
ref class App sealed { | ||
protected: | ||
virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ e) override; | ||
virtual void OnActivated(Windows::ApplicationModel::Activation::IActivatedEventArgs^ e) override; | ||
#ifdef ENABLE_BACKGROUND_TASK | ||
virtual void OnBackgroundActivated(Windows::ApplicationModel::Activation::BackgroundActivatedEventArgs^ e) override; | ||
#endif | ||
|
||
void OnFileActivated(Windows::ApplicationModel::Activation::FileActivatedEventArgs^ args) override; | ||
|
||
internal : App(); | ||
|
||
private: | ||
void OnSuspending(Platform::Object ^ sender, Windows::ApplicationModel::SuspendingEventArgs^ e); | ||
void OnNavigationFailed(Platform::Object ^ sender, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs^ e); | ||
}; | ||
} | ||
|
||
// clang-format on |
Oops, something went wrong.