mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
- Toolchain file to configure a Visual Studio generator for a Windows 10 Universal Application was added (CMake). - There is no support for environment variables in UWP. - SID is not supported (were excluded). - Windows registry is not supported (were excluded). - Mess with usage of Unicode/ANSI was corrected. - Added sample to check UWP functionality. - Excluded usage of methods with Unicode characters where it is possible. - Minor corrections to allow building OCAF (except TKVCAF) and DE (except VRML and XDE) - Building of unsupported modules for UWP platform is off by default . - Checking of DataExchange functionality was added to XAML (UWP) sample. - Added information about UWP to the documentation. - Update of results of merge with issue 27801
52 lines
1.8 KiB
C++
52 lines
1.8 KiB
C++
//
|
|
// MainPage.xaml.h
|
|
// Declaration of the MainPage class.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <TopoDS_Shape.hxx>
|
|
#include <STEPControl_StepModelType.hxx>
|
|
|
|
#include "MainPage.g.h"
|
|
|
|
namespace uwp
|
|
{
|
|
/// <summary>
|
|
/// An empty page that can be used on its own or navigated to within a Frame.
|
|
/// </summary>
|
|
public ref class MainPage sealed
|
|
{
|
|
public:
|
|
MainPage();
|
|
|
|
void OnClickOffset(Platform::Object^ theSender,
|
|
Windows::UI::Xaml::Input::PointerRoutedEventArgs^ theEvent);
|
|
|
|
void OnClickMesh(Platform::Object^ theSender,
|
|
Windows::UI::Xaml::Input::PointerRoutedEventArgs^ theEvent);
|
|
|
|
void OnClickBoolean(Platform::Object^ theSender,
|
|
Windows::UI::Xaml::Input::PointerRoutedEventArgs^ theEvent);
|
|
|
|
void OnClickDataExchange(Platform::Object^ theSender,
|
|
Windows::UI::Xaml::Input::PointerRoutedEventArgs^ theEvent);
|
|
|
|
void OnClickBuildTemporary(Platform::Object^ theSender,
|
|
Windows::UI::Xaml::Input::PointerRoutedEventArgs^ theEvent);
|
|
|
|
private:
|
|
// test data exchange export functionality
|
|
Standard_Boolean SaveBREP(const wchar_t* theFilePath, const TopoDS_Shape& theShape);
|
|
Standard_Boolean SaveIGES(const wchar_t* theFilePath, const TopoDS_Shape& theShape);
|
|
Standard_Boolean SaveSTEP(const wchar_t* theFilePath, const TopoDS_Shape& theShape, const STEPControl_StepModelType theValue);
|
|
Standard_Boolean SaveSTL (const wchar_t* theFilePath, const TopoDS_Shape& theShape);
|
|
// Standard_Boolean SaveVRML(const wchar_t* theFilePath, const TopoDS_Shape& theShape);
|
|
|
|
// test data exchange import functionality
|
|
Standard_Boolean ReadBREP(const wchar_t* theFilePath, TopoDS_Shape& theShape);
|
|
Standard_Boolean ReadIGES(const wchar_t* theFilePath, TopoDS_Shape& theShape);
|
|
Standard_Boolean ReadSTEP(const wchar_t* theFilePath, TopoDS_Shape& theShape);
|
|
};
|
|
}
|