|
1 |
| -import QtQuick 2.8 |
2 |
| -import QtQuick.Layouts 1.3 |
3 |
| -import QtQuick.Controls 2.12 |
4 |
| -import JASP.Controls 1.0 |
5 |
| -import JASP 1.0 |
| 1 | +// |
| 2 | +// Copyright (C) 2013-2018 University of Amsterdam |
| 3 | +// |
| 4 | +// This program is free software: you can redistribute it and/or modify |
| 5 | +// it under the terms of the GNU Affero General Public License as |
| 6 | +// published by the Free Software Foundation, either version 3 of the |
| 7 | +// License, or (at your option) any later version. |
| 8 | +// |
| 9 | +// This program is distributed in the hope that it will be useful, |
| 10 | +// but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | +// GNU Affero General Public License for more details. |
| 13 | +// |
| 14 | +// You should have received a copy of the GNU Affero General Public |
| 15 | +// License along with this program. If not, see |
| 16 | +// <http://www.gnu.org/licenses/>. |
| 17 | +// |
| 18 | +import QtQuick |
| 19 | +import QtQuick.Layouts |
| 20 | +import QtQuick.Controls |
| 21 | +import JASP.Controls |
| 22 | +import JASP |
6 | 23 |
|
7 | 24 | Form
|
8 | 25 | {
|
|
11 | 28 | {
|
12 | 29 | preferredHeight: 300 * preferencesModel.uiScale
|
13 | 30 | AvailableVariablesList{ name: "allVariables"; id: allVariables}
|
14 |
| - AssignedVariablesList { name: "timeVariable"; title: qsTr("Time Variable"); suggestedColumns: ["scale","ordinal", "nominal"]; singleVariable: true ; id: assignedVariableTime} |
15 |
| - AssignedVariablesList { name: "actorVariableSender"; title: qsTr("Actor Variable Sender"); suggestedColumns: ["scale","ordinal", "nominal"]; singleVariable: true} |
16 |
| - AssignedVariablesList { name: "actorVariableReceiver"; title: qsTr("Actor Variable Receiver"); suggestedColumns: ["scale","ordinal", "nominal"]; singleVariable: true} |
| 31 | + AssignedVariablesList { name: "timeVariable"; title: qsTr("Time Variable"); allowedColumns: ["scale","ordinal", "nominal"]; singleVariable: true ; id: assignedVariableTime} |
| 32 | + AssignedVariablesList { name: "actorVariableSender"; title: qsTr("Actor Variable Sender"); allowedColumns: ["scale","ordinal", "nominal"]; singleVariable: true} |
| 33 | + AssignedVariablesList { name: "actorVariableReceiver"; title: qsTr("Actor Variable Receiver"); allowedColumns: ["scale","ordinal", "nominal"]; singleVariable: true} |
17 | 34 |
|
18 |
| - AssignedVariablesList { name: "weightVariable"; title: qsTr("Weight Variable"); suggestedColumns: ["scale"]; singleVariable: true } |
19 |
| - AssignedVariablesList { name: "typeVariable"; title: qsTr("Type Variable"); suggestedColumns: ["nominal"]; singleVariable: true; id:typeVar} |
| 35 | + AssignedVariablesList { name: "weightVariable"; title: qsTr("Weight Variable"); allowedColumns: ["scale"]; singleVariable: true } |
| 36 | + AssignedVariablesList { name: "typeVariable"; title: qsTr("Type Variable"); allowedColumns: ["nominal"]; singleVariable: true; id:typeVar} |
20 | 37 |
|
21 | 38 | CheckBox
|
22 | 39 | {
|
|
25 | 42 | label: qsTr("<b>Start/Sync Analysis</b>")
|
26 | 43 | checked: false
|
27 | 44 | Component.onCompleted:
|
28 |
| - { |
29 |
| - background.color = "#ff8600" |
30 |
| - } |
| 45 | + { |
| 46 | + background.color = "#ff8600" |
| 47 | + } |
31 | 48 | }
|
32 | 49 |
|
33 | 50 | }
|
|
0 commit comments