mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-25 16:09:42 -06:00
By using clang-format directives 'IncludeBlocks' and 'IncludeCategories' headers are regrouped by categories: 1. "cmConfigure.h" which must be first 2. header matching current implementation file 3. standard language headers 4. CMake replacement ones 5. external headers (i.e. #include directive with '<' and '>') 6. Qt headers 7. cmsys/* headers 8. cm_* headers 9. CMake headers (i.e. starting with 'cm[A-Z]') 10. all other headers Fixes: #19674
58 lines
2.0 KiB
C++
58 lines
2.0 KiB
C++
#pragma once
|
|
|
|
// clang-format off
|
|
#include "pch.h"
|
|
|
|
#include "CubeRenderer.h"
|
|
// clang-format on
|
|
|
|
ref class Direct3DApp1 sealed
|
|
: public Windows::ApplicationModel::Core::IFrameworkView
|
|
{
|
|
public:
|
|
Direct3DApp1();
|
|
|
|
// IFrameworkView Methods.
|
|
virtual void Initialize(
|
|
Windows::ApplicationModel::Core::CoreApplicationView ^ applicationView);
|
|
virtual void SetWindow(Windows::UI::Core::CoreWindow ^ window);
|
|
virtual void Load(Platform::String ^ entryPoint);
|
|
virtual void Run();
|
|
virtual void Uninitialize();
|
|
|
|
protected:
|
|
// Event Handlers.
|
|
void OnWindowSizeChanged(Windows::UI::Core::CoreWindow ^ sender,
|
|
Windows::UI::Core::WindowSizeChangedEventArgs ^
|
|
args);
|
|
void OnLogicalDpiChanged(Platform::Object ^ sender);
|
|
void OnActivated(Windows::ApplicationModel::Core::CoreApplicationView ^
|
|
applicationView,
|
|
Windows::ApplicationModel::Activation::IActivatedEventArgs ^
|
|
args);
|
|
void OnSuspending(Platform::Object ^ sender,
|
|
Windows::ApplicationModel::SuspendingEventArgs ^ args);
|
|
void OnResuming(Platform::Object ^ sender, Platform::Object ^ args);
|
|
void OnWindowClosed(Windows::UI::Core::CoreWindow ^ sender,
|
|
Windows::UI::Core::CoreWindowEventArgs ^ args);
|
|
void OnVisibilityChanged(Windows::UI::Core::CoreWindow ^ sender,
|
|
Windows::UI::Core::VisibilityChangedEventArgs ^
|
|
args);
|
|
void OnPointerPressed(Windows::UI::Core::CoreWindow ^ sender,
|
|
Windows::UI::Core::PointerEventArgs ^ args);
|
|
void OnPointerMoved(Windows::UI::Core::CoreWindow ^ sender,
|
|
Windows::UI::Core::PointerEventArgs ^ args);
|
|
|
|
private:
|
|
CubeRenderer ^ m_renderer;
|
|
bool m_windowClosed;
|
|
bool m_windowVisible;
|
|
};
|
|
|
|
ref class Direct3DApplicationSource sealed
|
|
: Windows::ApplicationModel::Core::IFrameworkViewSource
|
|
{
|
|
public:
|
|
virtual Windows::ApplicationModel::Core::IFrameworkView ^ CreateView();
|
|
};
|