mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Extending CMake procedure by 'BUILD_MODULE_QtSamples' variable to switch on qt samples build. Implementation required: - union of occt_toolkit_tool.cmake and occt_toolkit.cmake files; - correction of qt samples sources by adding path to Qt 'plugins' folder. It helps to avoid definition of additional variable (QT_QPA_PLATFORM_PLUGIN_PATH) when staring sample.bat for qt samples; - executable processing is extended in cmake procedure by providing 'EXECUTABLE_PROJECT' variable. Now we need not specify custom processing for DRAWEXE in occt_toolkit.cmake
83 lines
1.8 KiB
QML
83 lines
1.8 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
|
|
|
|
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: 200
|
|
height: 200
|
|
|
|
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)
|
|
}
|
|
}
|