mirror of
https://github.com/overte-org/overte.git
synced 2025-04-30 00:42:46 +02:00
35 lines
679 B
QML
35 lines
679 B
QML
//
|
|
// ModelBrowserDialog.qml
|
|
//
|
|
// Created by David Rowe on 11 Mar 2017.
|
|
// Copyright 2017 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or https://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
import QtQuick 2.5
|
|
|
|
import "../../windows"
|
|
import "content"
|
|
|
|
ScrollingWindow {
|
|
id: root
|
|
objectName: "ModelBrowserDialog"
|
|
title: "Attachment Model"
|
|
resizable: true
|
|
width: 600
|
|
height: 480
|
|
closable: false
|
|
|
|
//HifiConstants { id: hifi }
|
|
|
|
property var result
|
|
|
|
signal selected(var modelUrl)
|
|
signal canceled()
|
|
|
|
ModelBrowserContent {
|
|
id: modelBrowserContent
|
|
}
|
|
}
|