mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- _WIN32 definition provides functionality for sample on Windows - CMake procedure is changed to have Qt5_FOUND variable defined before compilation modules. Searching of Qt packages is moved into qt.cmake.
86 lines
2.1 KiB
QML
86 lines
2.1 KiB
QML
// Created: 2014-08-28
|
|
//
|
|
// Copyright (c) 2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of commercial software by OPEN CASCADE SAS.
|
|
//
|
|
// This software is furnished in accordance with the terms and conditions
|
|
// of the contract and with the inclusion of this copyright notice.
|
|
// This software or any other copy thereof may not be provided or otherwise
|
|
// be made available to any third party.
|
|
// No ownership title to the software is transferred hereby.
|
|
//
|
|
// OPEN CASCADE SAS makes no representation or warranties with respect to the
|
|
// performance of this software, and specifically disclaims any responsibility
|
|
// for any damages, special or consequential, connected with its use.
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Window 2.1
|
|
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
import QtQuick.Controls 1.2
|
|
import QtQuick.Controls.Styles 1.2
|
|
|
|
import AndroidQt 1.0
|
|
|
|
Window {
|
|
id: root_window
|
|
visible: true
|
|
|
|
width: (Qt.platform.os == "android" || Qt.platform.os == "ios") ? Screen.width : 600
|
|
height: (Qt.platform.os == "android" || Qt.platform.os == "ios") ? Screen.height : 400
|
|
|
|
Item {
|
|
id: root_item
|
|
anchors.fill: parent
|
|
|
|
AndroidQt {
|
|
id: viewer
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
|
|
onPressed: viewer.InitTouch(mouseX, mouseY)
|
|
onPositionChanged: viewer.UpdateTouch (mouseX, mouseY)
|
|
}
|
|
|
|
// open button
|
|
Rectangle {
|
|
id: open_button
|
|
|
|
// align
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
|
|
// size
|
|
width: (Qt.platform.os == "android" || Qt.platform.os == "ios") ? 200 : 150
|
|
height: (Qt.platform.os == "android" || Qt.platform.os == "ios") ? 200 : 150
|
|
|
|
color: "white"
|
|
|
|
// image
|
|
Image {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
source: "qrc:/ic_action_collection.png"
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onClicked: file_dialog.open()
|
|
}
|
|
}
|
|
}
|
|
|
|
FileDialog {
|
|
id: file_dialog
|
|
title: "Please choose a file"
|
|
selectMultiple: false
|
|
nameFilters: [ "BRep files (*.brep)", "All files (*)" ]
|
|
onAccepted: viewer.ReadShapeFromFile(file_dialog.fileUrl)
|
|
}
|
|
}
|