Componentizing ObjectLists to make code slightly cleaner, fixing scrollbar being over items in settings.
This commit is contained in:
parent
a9a1a6559a
commit
4a9f2f5828
9 changed files with 556 additions and 475 deletions
|
@ -20,6 +20,7 @@ import QtQml 2.12
|
||||||
import QtQuick.Controls 2.12
|
import QtQuick.Controls 2.12
|
||||||
import QtQuick.Layouts 1.12
|
import QtQuick.Layouts 1.12
|
||||||
import QtQuick 2.12
|
import QtQuick 2.12
|
||||||
|
import eu.ad5001.LogarithmPlotter.ObjectLists 1.0
|
||||||
import "js/objects.js" as Objects
|
import "js/objects.js" as Objects
|
||||||
|
|
||||||
|
|
||||||
|
@ -92,7 +93,7 @@ ApplicationWindow {
|
||||||
anchors.leftMargin: 5
|
anchors.leftMargin: 5
|
||||||
anchors.bottom: parent.bottom
|
anchors.bottom: parent.bottom
|
||||||
anchors.bottomMargin: sidebarSelector.height
|
anchors.bottomMargin: sidebarSelector.height
|
||||||
width: parent.width - 10
|
width: parent.width - 5
|
||||||
currentIndex: sidebarSelector.currentIndex
|
currentIndex: sidebarSelector.currentIndex
|
||||||
z: -1
|
z: -1
|
||||||
clip: true
|
clip: true
|
||||||
|
|
|
@ -1,472 +0,0 @@
|
||||||
/**
|
|
||||||
* LogarithmPlotter - Create graphs with logarithm scales.
|
|
||||||
* Copyright (C) 2021 Ad5001
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick 2.12
|
|
||||||
import QtQuick.Dialogs 1.3 as D
|
|
||||||
import QtQuick.Controls 2.12
|
|
||||||
import "js/objects.js" as Objects
|
|
||||||
import "js/mathlib.js" as MathLib
|
|
||||||
import "js/utils.js" as Utils
|
|
||||||
import "js/historylib.js" as HistoryLib
|
|
||||||
|
|
||||||
|
|
||||||
ListView {
|
|
||||||
id: objectListList
|
|
||||||
|
|
||||||
signal changed()
|
|
||||||
|
|
||||||
property var listViews: {'':''} // Needs to be initialized or will be undefined -_-
|
|
||||||
|
|
||||||
model: Object.keys(Objects.types)
|
|
||||||
implicitHeight: contentItem.childrenRect.height + footer.height + 10
|
|
||||||
|
|
||||||
delegate: ListView {
|
|
||||||
id: objTypeList
|
|
||||||
property string objType: objectListList.model[index]
|
|
||||||
property var editingRows: []
|
|
||||||
model: Objects.currentObjects[objType]
|
|
||||||
width: objectListList.width
|
|
||||||
implicitHeight: contentItem.childrenRect.height
|
|
||||||
visible: model != undefined && model.length > 0
|
|
||||||
interactive: false
|
|
||||||
|
|
||||||
Component.onCompleted: objectListList.listViews[objType] = objTypeList // Listing in order to be refreshed
|
|
||||||
|
|
||||||
header: Row {
|
|
||||||
width: typeHeaderText.width + typeVisibilityCheckBox.visible
|
|
||||||
height: visible ? 20 : 0
|
|
||||||
visible: objTypeList.visible
|
|
||||||
|
|
||||||
CheckBox {
|
|
||||||
id: typeVisibilityCheckBox
|
|
||||||
checked: Objects.currentObjects[objType] != undefined ? Objects.currentObjects[objType].every(obj => obj.visible) : true
|
|
||||||
onClicked: {
|
|
||||||
for(var obj of Objects.currentObjects[objType]) obj.visible = this.checked
|
|
||||||
for(var obj of objTypeList.editingRows) obj.objVisible = this.checked
|
|
||||||
objectListList.changed()
|
|
||||||
}
|
|
||||||
|
|
||||||
ToolTip.visible: hovered
|
|
||||||
ToolTip.text: checked ? `Hide all ${Objects.types[objType].typeMultiple()}` : `Show all ${Objects.types[objType].typeMultiple()}`
|
|
||||||
}
|
|
||||||
|
|
||||||
Label {
|
|
||||||
id: typeHeaderText
|
|
||||||
verticalAlignment: TextInput.AlignVCenter
|
|
||||||
text: Objects.types[objType].typeMultiple() + ":"
|
|
||||||
font.pixelSize: 20
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
delegate: Item {
|
|
||||||
id: controlRow
|
|
||||||
property var obj: Objects.currentObjects[objType][index]
|
|
||||||
property alias objVisible: objVisibilityCheckBox.checked
|
|
||||||
height: 40
|
|
||||||
width: objTypeList.width
|
|
||||||
|
|
||||||
Component.onCompleted: objTypeList.editingRows.push(controlRow)
|
|
||||||
|
|
||||||
CheckBox {
|
|
||||||
id: objVisibilityCheckBox
|
|
||||||
checked: Objects.currentObjects[objType][index].visible
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
anchors.left: parent.left
|
|
||||||
anchors.leftMargin: 5
|
|
||||||
onClicked: {
|
|
||||||
history.addToHistory(new HistoryLib.EditedVisibility(
|
|
||||||
Objects.currentObjects[objType][index].name, objType, this.checked
|
|
||||||
))
|
|
||||||
Objects.currentObjects[objType][index].visible = this.checked
|
|
||||||
objectListList.changed()
|
|
||||||
controlRow.obj = Objects.currentObjects[objType][index]
|
|
||||||
}
|
|
||||||
|
|
||||||
ToolTip.visible: hovered
|
|
||||||
ToolTip.text: checked ? `Hide ${objType} ${obj.name}` : `Show ${objType} ${obj.name}`
|
|
||||||
}
|
|
||||||
|
|
||||||
Label {
|
|
||||||
id: objDescription
|
|
||||||
anchors.left: objVisibilityCheckBox.right
|
|
||||||
anchors.right: deleteButton.left
|
|
||||||
height: parent.height
|
|
||||||
verticalAlignment: TextInput.AlignVCenter
|
|
||||||
text: obj.getReadableString()
|
|
||||||
font.pixelSize: 14
|
|
||||||
|
|
||||||
MouseArea {
|
|
||||||
anchors.fill: parent
|
|
||||||
onClicked: {
|
|
||||||
objEditor.obj = Objects.currentObjects[objType][index]
|
|
||||||
objEditor.objType = objType
|
|
||||||
objEditor.objIndex = index
|
|
||||||
objEditor.editingRow = controlRow
|
|
||||||
objEditor.show()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Button {
|
|
||||||
id: deleteButton
|
|
||||||
width: parent.height - 10
|
|
||||||
height: width
|
|
||||||
anchors.right: colorPickRect.left
|
|
||||||
anchors.rightMargin: 5
|
|
||||||
anchors.topMargin: 5
|
|
||||||
icon.name: 'delete'
|
|
||||||
|
|
||||||
onClicked: {
|
|
||||||
history.addToHistory(new HistoryLib.DeleteObject(
|
|
||||||
objEditor.obj.name, objEditor.objType, objEditor.obj.export()
|
|
||||||
))
|
|
||||||
Objects.currentObjects[objType][index].delete()
|
|
||||||
Objects.currentObjects[objType].splice(index, 1)
|
|
||||||
objectListList.update()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Rectangle {
|
|
||||||
id: colorPickRect
|
|
||||||
anchors.right: parent.right
|
|
||||||
anchors.rightMargin: 5
|
|
||||||
anchors.topMargin: 5
|
|
||||||
color: obj.color
|
|
||||||
width: parent.height - 10
|
|
||||||
height: width
|
|
||||||
radius: Math.min(width, height)
|
|
||||||
border.width: 2
|
|
||||||
border.color: sysPalette.windowText
|
|
||||||
|
|
||||||
MouseArea {
|
|
||||||
anchors.fill: parent
|
|
||||||
onClicked: pickColor.open()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
D.ColorDialog {
|
|
||||||
id: pickColor
|
|
||||||
color: obj.color
|
|
||||||
title: `Pick new color for ${objType} ${obj.name}`
|
|
||||||
onAccepted: {
|
|
||||||
history.addToHistory(new HistoryLib.EditedProperty(
|
|
||||||
obj.name, objType, "color",
|
|
||||||
obj.color, color.toString()
|
|
||||||
))
|
|
||||||
obj.color = color.toString()
|
|
||||||
controlRow.obj = Objects.currentObjects[objType][index]
|
|
||||||
objectListList.update()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Object editor
|
|
||||||
D.Dialog {
|
|
||||||
id: objEditor
|
|
||||||
property string objType: 'Point'
|
|
||||||
property int objIndex: 0
|
|
||||||
property QtObject editingRow: QtObject{}
|
|
||||||
property var obj: Objects.currentObjects[objType][objIndex]
|
|
||||||
title: `LogarithmPlotter`
|
|
||||||
width: 300
|
|
||||||
height: 400
|
|
||||||
|
|
||||||
Label {
|
|
||||||
id: dlgTitle
|
|
||||||
anchors.left: parent.left
|
|
||||||
anchors.top: parent.top
|
|
||||||
verticalAlignment: TextInput.AlignVCenter
|
|
||||||
text: `Edit properties of ${objEditor.objType} ${objEditor.obj.name}`
|
|
||||||
font.pixelSize: 20
|
|
||||||
color: sysPalette.windowText
|
|
||||||
}
|
|
||||||
|
|
||||||
Column {
|
|
||||||
id: dlgProperties
|
|
||||||
anchors.top: dlgTitle.bottom
|
|
||||||
width: objEditor.width - 20
|
|
||||||
spacing: 10
|
|
||||||
|
|
||||||
TextSetting {
|
|
||||||
id: nameProperty
|
|
||||||
height: 30
|
|
||||||
label: "Name"
|
|
||||||
icon: "icons/settings/custom/label.svg"
|
|
||||||
min: 1
|
|
||||||
width: dlgProperties.width
|
|
||||||
defValue: objEditor.obj.name
|
|
||||||
onChanged: function(newValue) {
|
|
||||||
var newName = Utils.parseName(newValue)
|
|
||||||
if(newName != '' && objEditor.obj.name != newName) {
|
|
||||||
if(Objects.getObjectByName(newName) != null) {
|
|
||||||
console.log(Objects.getObjectByName(newName).name, newName)
|
|
||||||
newName = Objects.getNewName(newName)
|
|
||||||
}
|
|
||||||
history.addToHistory(new HistoryLib.NameChanged(
|
|
||||||
objEditor.obj.name, objEditor.objType, newName
|
|
||||||
))
|
|
||||||
Objects.currentObjects[objEditor.objType][objEditor.objIndex].name = newName
|
|
||||||
objEditor.obj = Objects.currentObjects[objEditor.objType][objEditor.objIndex]
|
|
||||||
objectListList.update()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ComboBoxSetting {
|
|
||||||
id: labelContentProperty
|
|
||||||
height: 30
|
|
||||||
width: dlgProperties.width
|
|
||||||
label: "Label content"
|
|
||||||
model: ["null", "name", "name + value"]
|
|
||||||
icon: "icons/settings/custom/label.svg"
|
|
||||||
currentIndex: model.indexOf(objEditor.obj.labelContent)
|
|
||||||
onActivated: function(newIndex) {
|
|
||||||
if(model[newIndex] != objEditor.obj.labelContent) {
|
|
||||||
objEditor.obj.labelContent = model[newIndex]
|
|
||||||
objectListList.update()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Dynamic properties
|
|
||||||
Repeater {
|
|
||||||
id: dlgCustomProperties
|
|
||||||
|
|
||||||
Item {
|
|
||||||
height: customPropComment.height + customPropText.height + customPropCheckBox.height + customPropCombo.height + customPropListDict.height
|
|
||||||
width: dlgProperties.width
|
|
||||||
property string label: Utils.camelCase2readable(modelData[0])
|
|
||||||
|
|
||||||
Label {
|
|
||||||
id: customPropComment
|
|
||||||
width: parent.width
|
|
||||||
height: visible ? implicitHeight : 0
|
|
||||||
visible: modelData[0].startsWith('comment')
|
|
||||||
text: visible ? modelData[1].replace(/\{name\}/g, objEditor.obj.name) : ''
|
|
||||||
//color: sysPalette.windowText
|
|
||||||
wrapMode: Text.WordWrap
|
|
||||||
}
|
|
||||||
|
|
||||||
TextSetting {
|
|
||||||
id: customPropText
|
|
||||||
height: visible ? 30 : 0
|
|
||||||
width: parent.width
|
|
||||||
label: parent.label
|
|
||||||
icon: `icons/settings/custom/${parent.label}.svg`
|
|
||||||
isDouble: modelData[1] == 'number'
|
|
||||||
visible: paramTypeIn(modelData[1], ['Expression', 'Domain', 'string', 'number'])
|
|
||||||
defValue: visible ? {
|
|
||||||
'Expression': () => Utils.simplifyExpression(objEditor.obj[modelData[0]].toEditableString()),
|
|
||||||
'Domain': () => objEditor.obj[modelData[0]].toString(),
|
|
||||||
'string': () => objEditor.obj[modelData[0]],
|
|
||||||
'number': () => objEditor.obj[modelData[0]]
|
|
||||||
}[modelData[1]]() : ""
|
|
||||||
onChanged: function(newValue) {
|
|
||||||
var newValue = {
|
|
||||||
'Expression': () => new MathLib.Expression(newValue),
|
|
||||||
'Domain': () => MathLib.parseDomain(newValue),
|
|
||||||
'string': () => newValue,
|
|
||||||
'number': () => parseFloat(newValue)
|
|
||||||
}[modelData[1]]()
|
|
||||||
// Ensuring old and new values are different to prevent useless adding to history.
|
|
||||||
if(objEditor.obj[modelData[0]] != newValue) {
|
|
||||||
history.addToHistory(new HistoryLib.EditedProperty(
|
|
||||||
objEditor.obj.name, objEditor.objType, modelData[0],
|
|
||||||
objEditor.obj[modelData[0]], newValue
|
|
||||||
))
|
|
||||||
objEditor.obj[modelData[0]] = newValue
|
|
||||||
Objects.currentObjects[objEditor.objType][objEditor.objIndex].update()
|
|
||||||
objectListList.update()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
CheckBox {
|
|
||||||
id: customPropCheckBox
|
|
||||||
visible: modelData[1] == 'boolean'
|
|
||||||
height: visible ? 20 : 0
|
|
||||||
width: parent.width
|
|
||||||
text: parent.label
|
|
||||||
icon: visible ? `icons/settings/custom/${parent.label}.svg` : ''
|
|
||||||
|
|
||||||
checked: visible ? objEditor.obj[modelData[0]] : false
|
|
||||||
onClicked: {
|
|
||||||
history.addToHistory(new HistoryLib.EditedProperty(
|
|
||||||
objEditor.obj.name, objEditor.objType, modelData[0],
|
|
||||||
objEditor.obj[modelData[0]], this.checked
|
|
||||||
))
|
|
||||||
objEditor.obj[modelData[0]] = this.checked
|
|
||||||
Objects.currentObjects[objEditor.objType][objEditor.objIndex].update()
|
|
||||||
objectListList.update()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ComboBoxSetting {
|
|
||||||
id: customPropCombo
|
|
||||||
width: dlgProperties.width
|
|
||||||
height: visible ? 30 : 0
|
|
||||||
label: parent.label
|
|
||||||
icon: `icons/settings/custom/${parent.label}.svg`
|
|
||||||
// True to select an object of type, false for enums.
|
|
||||||
property bool selectObjMode: paramTypeIn(modelData[1], ['ObjectType'])
|
|
||||||
|
|
||||||
model: visible ?
|
|
||||||
(selectObjMode ? Objects.getObjectsName(modelData[1].objType).concat(['+ Create new ' + modelData[1].objType]) : modelData[1].values)
|
|
||||||
: []
|
|
||||||
visible: paramTypeIn(modelData[1], ['ObjectType', 'Enum'])
|
|
||||||
currentIndex: model.indexOf(selectObjMode ? objEditor.obj[modelData[0]].name : objEditor.obj[modelData[0]])
|
|
||||||
|
|
||||||
onActivated: function(newIndex) {
|
|
||||||
// Setting object property.
|
|
||||||
if(selectObjMode) {
|
|
||||||
var selectedObj = Objects.getObjectByName(model[newIndex], modelData[1].objType)
|
|
||||||
if(selectedObj == null) {
|
|
||||||
selectedObj = Objects.createNewRegisteredObject(modelData[1].objType)
|
|
||||||
history.addToHistory(new HistoryLib.CreateNewObject(selectedObj.name, modelData[1].objType, selectedObj.export()))
|
|
||||||
model = Objects.getObjectsName(modelData[1].objType).concat(['+ Create new ' + modelData[1].objType])
|
|
||||||
currentIndex = model.indexOf(selectedObj.name)
|
|
||||||
}
|
|
||||||
//Objects.currentObjects[objEditor.objType][objEditor.objIndex].requiredBy = objEditor.obj[modelData[0]].filter((obj) => objEditor.obj.name != obj.name)
|
|
||||||
objEditor.obj.requiredBy = objEditor.obj.requiredBy.filter((obj) => objEditor.obj.name != obj.name)
|
|
||||||
selectedObj.requiredBy.push(Objects.currentObjects[objEditor.objType][objEditor.objIndex])
|
|
||||||
history.addToHistory(new HistoryLib.EditedProperty(
|
|
||||||
objEditor.obj.name, objEditor.objType, modelData[0],
|
|
||||||
objEditor.obj[modelData[0]], selectedObj
|
|
||||||
))
|
|
||||||
objEditor.obj[modelData[0]] = selectedObj
|
|
||||||
} else if(model[newIndex] != objEditor.obj[modelData[0]]) {
|
|
||||||
// Ensuring new property is different to not add useless history entries.
|
|
||||||
history.addToHistory(new HistoryLib.EditedProperty(
|
|
||||||
objEditor.obj.name, objEditor.objType, modelData[0],
|
|
||||||
objEditor.obj[modelData[0]], model[newIndex]
|
|
||||||
))
|
|
||||||
objEditor.obj[modelData[0]] = model[newIndex]
|
|
||||||
}
|
|
||||||
// Refreshing
|
|
||||||
Objects.currentObjects[objEditor.objType][objEditor.objIndex].update()
|
|
||||||
objectListList.update()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ListSetting {
|
|
||||||
id: customPropListDict
|
|
||||||
width: parent.width
|
|
||||||
height: visible ? implicitHeight : 0
|
|
||||||
|
|
||||||
visible: paramTypeIn(modelData[1], ['List', 'Dict'])
|
|
||||||
label: parent.label
|
|
||||||
//icon: `icons/settings/custom/${parent.label}.svg`
|
|
||||||
dictionaryMode: paramTypeIn(modelData[1], ['Dict'])
|
|
||||||
keyType: dictionaryMode ? modelData[1].keyType : 'string'
|
|
||||||
valueType: visible ? modelData[1].valueType : 'string'
|
|
||||||
preKeyLabel: visible ? (dictionaryMode ? modelData[1].preKeyLabel : modelData[1].label).replace(/\{name\}/g, objEditor.obj.name) : ''
|
|
||||||
postKeyLabel: visible ? (dictionaryMode ? modelData[1].postKeyLabel : '').replace(/\{name\}/g, objEditor.obj.name) : ''
|
|
||||||
keyRegexp: dictionaryMode ? modelData[1].keyFormat : /^.+$/
|
|
||||||
valueRegexp: visible ? modelData[1].format : /^.+$/
|
|
||||||
forbidAdding: visible ? modelData[1].forbidAdding : false
|
|
||||||
|
|
||||||
onChanged: {
|
|
||||||
var exported = exportModel()
|
|
||||||
history.addToHistory(new HistoryLib.EditedProperty(
|
|
||||||
objEditor.obj.name, objEditor.objType, modelData[0],
|
|
||||||
objEditor.obj[modelData[0]], exported
|
|
||||||
))
|
|
||||||
//Objects.currentObjects[objEditor.objType][objEditor.objIndex][modelData[0]] = exported
|
|
||||||
objEditor.obj[modelData[0]] = exported
|
|
||||||
//Objects.currentObjects[objEditor.objType][objEditor.objIndex].update()
|
|
||||||
objEditor.obj.update()
|
|
||||||
objectListList.update()
|
|
||||||
}
|
|
||||||
|
|
||||||
Component.onCompleted: {
|
|
||||||
if(visible) importModel(objEditor.obj[modelData[0]])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function show() {
|
|
||||||
dlgCustomProperties.model = [] // Reset
|
|
||||||
var objProps = Objects.types[objEditor.objType].properties()
|
|
||||||
dlgCustomProperties.model = Object.keys(objProps).map(prop => [prop, objProps[prop]]) // Converted to 2-dimentional array.
|
|
||||||
objEditor.open()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create items
|
|
||||||
footer: Column {
|
|
||||||
id: createRow
|
|
||||||
width: parent.width
|
|
||||||
|
|
||||||
Label {
|
|
||||||
id: createTitle
|
|
||||||
verticalAlignment: TextInput.AlignVCenter
|
|
||||||
text: '+ Create new:'
|
|
||||||
font.pixelSize: 20
|
|
||||||
//color: sysPalette.windowText
|
|
||||||
}
|
|
||||||
|
|
||||||
Grid {
|
|
||||||
width: parent.width
|
|
||||||
columns: 3
|
|
||||||
Repeater {
|
|
||||||
model: Object.keys(Objects.types)
|
|
||||||
|
|
||||||
Button {
|
|
||||||
id: createBtn
|
|
||||||
text: modelData
|
|
||||||
width: parent.width/3
|
|
||||||
visible: Objects.types[modelData].createable()
|
|
||||||
height: visible ? implicitHeight : 0
|
|
||||||
display: AbstractButton.TextUnderIcon
|
|
||||||
icon.name: modelData
|
|
||||||
icon.width: 24
|
|
||||||
icon.height: 24
|
|
||||||
icon.color: sysPalette.windowText
|
|
||||||
|
|
||||||
onClicked: {
|
|
||||||
var newObj = Objects.createNewRegisteredObject(modelData)
|
|
||||||
history.addToHistory(new HistoryLib.CreateNewObject(newObj.name, modelData, newObj.export()))
|
|
||||||
objectListList.update()
|
|
||||||
objEditor.obj = Objects.currentObjects[modelData][Objects.currentObjects[modelData].length - 1]
|
|
||||||
objEditor.objType = modelData
|
|
||||||
objEditor.objIndex = Objects.currentObjects[modelData].length - 1
|
|
||||||
objEditor.editingRow = objectListList.listViews[modelData].editingRows[objEditor.objIndex]
|
|
||||||
objEditor.show()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function update() {
|
|
||||||
objectListList.changed()
|
|
||||||
for(var objType in objectListList.listViews) {
|
|
||||||
objectListList.listViews[objType].model = Objects.currentObjects[objType]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function paramTypeIn(parameter, types = []) {
|
|
||||||
if(types.includes(parameter.toString())) return true
|
|
||||||
if(typeof parameter == 'object' && 'type' in parameter)
|
|
||||||
return types.includes(parameter.type)
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,267 @@
|
||||||
|
/**
|
||||||
|
* LogarithmPlotter - Create graphs with logarithm scales.
|
||||||
|
* Copyright (C) 2021 Ad5001
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import QtQuick 2.12
|
||||||
|
import QtQuick.Controls 2.12
|
||||||
|
import QtQuick.Dialogs 1.3 as D
|
||||||
|
import eu.ad5001.LogarithmPlotter 1.0
|
||||||
|
import "../js/objects.js" as Objects
|
||||||
|
import "../js/historylib.js" as HistoryLib
|
||||||
|
import "../js/utils.js" as Utils
|
||||||
|
import "../js/mathlib.js" as MathLib
|
||||||
|
|
||||||
|
D.Dialog {
|
||||||
|
id: objEditor
|
||||||
|
property string objType: 'Point'
|
||||||
|
property int objIndex: 0
|
||||||
|
property var obj: Objects.currentObjects[objType][objIndex]
|
||||||
|
property QtObject editingRow: QtObject{}
|
||||||
|
property var objectLists
|
||||||
|
title: `LogarithmPlotter`
|
||||||
|
width: 300
|
||||||
|
height: 400
|
||||||
|
|
||||||
|
Label {
|
||||||
|
id: dlgTitle
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.top: parent.top
|
||||||
|
verticalAlignment: TextInput.AlignVCenter
|
||||||
|
text: `Edit properties of ${objEditor.objType} ${objEditor.obj.name}`
|
||||||
|
font.pixelSize: 20
|
||||||
|
color: sysPalette.windowText
|
||||||
|
}
|
||||||
|
|
||||||
|
Column {
|
||||||
|
id: dlgProperties
|
||||||
|
anchors.top: dlgTitle.bottom
|
||||||
|
width: objEditor.width - 20
|
||||||
|
spacing: 10
|
||||||
|
|
||||||
|
TextSetting {
|
||||||
|
id: nameProperty
|
||||||
|
height: 30
|
||||||
|
label: "Name"
|
||||||
|
icon: "icons/settings/custom/label.svg"
|
||||||
|
min: 1
|
||||||
|
width: dlgProperties.width
|
||||||
|
defValue: objEditor.obj.name
|
||||||
|
onChanged: function(newValue) {
|
||||||
|
var newName = Utils.parseName(newValue)
|
||||||
|
if(newName != '' && objEditor.obj.name != newName) {
|
||||||
|
if(Objects.getObjectByName(newName) != null) {
|
||||||
|
console.log(Objects.getObjectByName(newName).name, newName)
|
||||||
|
newName = Objects.getNewName(newName)
|
||||||
|
}
|
||||||
|
history.addToHistory(new HistoryLib.NameChanged(
|
||||||
|
objEditor.obj.name, objEditor.objType, newName
|
||||||
|
))
|
||||||
|
Objects.currentObjects[objEditor.objType][objEditor.objIndex].name = newName
|
||||||
|
objEditor.obj = Objects.currentObjects[objEditor.objType][objEditor.objIndex]
|
||||||
|
objectListList.update()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ComboBoxSetting {
|
||||||
|
id: labelContentProperty
|
||||||
|
height: 30
|
||||||
|
width: dlgProperties.width
|
||||||
|
label: "Label content"
|
||||||
|
model: ["null", "name", "name + value"]
|
||||||
|
icon: "icons/settings/custom/label.svg"
|
||||||
|
currentIndex: model.indexOf(objEditor.obj.labelContent)
|
||||||
|
onActivated: function(newIndex) {
|
||||||
|
if(model[newIndex] != objEditor.obj.labelContent) {
|
||||||
|
objEditor.obj.labelContent = model[newIndex]
|
||||||
|
objectListList.update()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dynamic properties
|
||||||
|
Repeater {
|
||||||
|
id: dlgCustomProperties
|
||||||
|
|
||||||
|
Item {
|
||||||
|
height: customPropComment.height + customPropText.height + customPropCheckBox.height + customPropCombo.height + customPropListDict.height
|
||||||
|
width: dlgProperties.width
|
||||||
|
property string label: Utils.camelCase2readable(modelData[0])
|
||||||
|
|
||||||
|
// Item for comments
|
||||||
|
Label {
|
||||||
|
id: customPropComment
|
||||||
|
width: parent.width
|
||||||
|
height: visible ? implicitHeight : 0
|
||||||
|
visible: modelData[0].startsWith('comment')
|
||||||
|
text: visible ? modelData[1].replace(/\{name\}/g, objEditor.obj.name) : ''
|
||||||
|
//color: sysPalette.windowText
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
}
|
||||||
|
|
||||||
|
// Setting for text & number settings as well as domains & expressions
|
||||||
|
TextSetting {
|
||||||
|
id: customPropText
|
||||||
|
height: visible ? 30 : 0
|
||||||
|
width: parent.width
|
||||||
|
label: parent.label
|
||||||
|
icon: `icons/settings/custom/${parent.label}.svg`
|
||||||
|
isDouble: modelData[1] == 'number'
|
||||||
|
visible: paramTypeIn(modelData[1], ['Expression', 'Domain', 'string', 'number'])
|
||||||
|
defValue: visible ? {
|
||||||
|
'Expression': () => Utils.simplifyExpression(objEditor.obj[modelData[0]].toEditableString()),
|
||||||
|
'Domain': () => objEditor.obj[modelData[0]].toString(),
|
||||||
|
'string': () => objEditor.obj[modelData[0]],
|
||||||
|
'number': () => objEditor.obj[modelData[0]]
|
||||||
|
}[modelData[1]]() : ""
|
||||||
|
onChanged: function(newValue) {
|
||||||
|
var newValue = {
|
||||||
|
'Expression': () => new MathLib.Expression(newValue),
|
||||||
|
'Domain': () => MathLib.parseDomain(newValue),
|
||||||
|
'string': () => newValue,
|
||||||
|
'number': () => parseFloat(newValue)
|
||||||
|
}[modelData[1]]()
|
||||||
|
// Ensuring old and new values are different to prevent useless adding to history.
|
||||||
|
if(objEditor.obj[modelData[0]] != newValue) {
|
||||||
|
history.addToHistory(new HistoryLib.EditedProperty(
|
||||||
|
objEditor.obj.name, objEditor.objType, modelData[0],
|
||||||
|
objEditor.obj[modelData[0]], newValue
|
||||||
|
))
|
||||||
|
objEditor.obj[modelData[0]] = newValue
|
||||||
|
Objects.currentObjects[objEditor.objType][objEditor.objIndex].update()
|
||||||
|
objectListList.update()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Setting for boolean
|
||||||
|
CheckBox {
|
||||||
|
id: customPropCheckBox
|
||||||
|
visible: modelData[1] == 'boolean'
|
||||||
|
height: visible ? 20 : 0
|
||||||
|
width: parent.width
|
||||||
|
text: parent.label
|
||||||
|
icon: visible ? `icons/settings/custom/${parent.label}.svg` : ''
|
||||||
|
|
||||||
|
checked: visible ? objEditor.obj[modelData[0]] : false
|
||||||
|
onClicked: {
|
||||||
|
history.addToHistory(new HistoryLib.EditedProperty(
|
||||||
|
objEditor.obj.name, objEditor.objType, modelData[0],
|
||||||
|
objEditor.obj[modelData[0]], this.checked
|
||||||
|
))
|
||||||
|
objEditor.obj[modelData[0]] = this.checked
|
||||||
|
Objects.currentObjects[objEditor.objType][objEditor.objIndex].update()
|
||||||
|
objectListList.update()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Setting when selecting data from an enum, or an object of a certain type.
|
||||||
|
ComboBoxSetting {
|
||||||
|
id: customPropCombo
|
||||||
|
width: dlgProperties.width
|
||||||
|
height: visible ? 30 : 0
|
||||||
|
label: parent.label
|
||||||
|
icon: visible ? `icons/settings/custom/${parent.label}.svg` : ''
|
||||||
|
// True to select an object of type, false for enums.
|
||||||
|
property bool selectObjMode: paramTypeIn(modelData[1], ['ObjectType'])
|
||||||
|
|
||||||
|
model: visible ?
|
||||||
|
(selectObjMode ? Objects.getObjectsName(modelData[1].objType).concat(['+ Create new ' + modelData[1].objType]) : modelData[1].values)
|
||||||
|
: []
|
||||||
|
visible: paramTypeIn(modelData[1], ['ObjectType', 'Enum'])
|
||||||
|
currentIndex: model.indexOf(selectObjMode ? objEditor.obj[modelData[0]].name : objEditor.obj[modelData[0]])
|
||||||
|
|
||||||
|
onActivated: function(newIndex) {
|
||||||
|
if(selectObjMode) {
|
||||||
|
// This is only done when what we're selecting are Objects.
|
||||||
|
// Setting object property.
|
||||||
|
var selectedObj = Objects.getObjectByName(model[newIndex], modelData[1].objType)
|
||||||
|
if(selectedObj == null) {
|
||||||
|
// Creating new object.
|
||||||
|
selectedObj = Objects.createNewRegisteredObject(modelData[1].objType)
|
||||||
|
history.addToHistory(new HistoryLib.CreateNewObject(selectedObj.name, modelData[1].objType, selectedObj.export()))
|
||||||
|
model = Objects.getObjectsName(modelData[1].objType).concat(['+ Create new ' + modelData[1].objType])
|
||||||
|
currentIndex = model.indexOf(selectedObj.name)
|
||||||
|
}
|
||||||
|
//Objects.currentObjects[objEditor.objType][objEditor.objIndex].requiredBy = objEditor.obj[modelData[0]].filter((obj) => objEditor.obj.name != obj.name)
|
||||||
|
objEditor.obj.requiredBy = objEditor.obj.requiredBy.filter((obj) => objEditor.obj.name != obj.name)
|
||||||
|
selectedObj.requiredBy.push(Objects.currentObjects[objEditor.objType][objEditor.objIndex])
|
||||||
|
history.addToHistory(new HistoryLib.EditedProperty(
|
||||||
|
objEditor.obj.name, objEditor.objType, modelData[0],
|
||||||
|
objEditor.obj[modelData[0]], selectedObj
|
||||||
|
))
|
||||||
|
objEditor.obj[modelData[0]] = selectedObj
|
||||||
|
} else if(model[newIndex] != objEditor.obj[modelData[0]]) {
|
||||||
|
// Ensuring new property is different to not add useless history entries.
|
||||||
|
history.addToHistory(new HistoryLib.EditedProperty(
|
||||||
|
objEditor.obj.name, objEditor.objType, modelData[0],
|
||||||
|
objEditor.obj[modelData[0]], model[newIndex]
|
||||||
|
))
|
||||||
|
objEditor.obj[modelData[0]] = model[newIndex]
|
||||||
|
}
|
||||||
|
// Refreshing
|
||||||
|
Objects.currentObjects[objEditor.objType][objEditor.objIndex].update()
|
||||||
|
objectListList.update()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Setting to edit lists or dictionaries (e.g sequences & repartition function values)
|
||||||
|
ListSetting {
|
||||||
|
id: customPropListDict
|
||||||
|
width: parent.width
|
||||||
|
height: visible ? implicitHeight : 0
|
||||||
|
|
||||||
|
visible: paramTypeIn(modelData[1], ['List', 'Dict'])
|
||||||
|
label: parent.label
|
||||||
|
//icon: `icons/settings/custom/${parent.label}.svg`
|
||||||
|
dictionaryMode: paramTypeIn(modelData[1], ['Dict'])
|
||||||
|
keyType: dictionaryMode ? modelData[1].keyType : 'string'
|
||||||
|
valueType: visible ? modelData[1].valueType : 'string'
|
||||||
|
preKeyLabel: visible ? (dictionaryMode ? modelData[1].preKeyLabel : modelData[1].label).replace(/\{name\}/g, objEditor.obj.name) : ''
|
||||||
|
postKeyLabel: visible ? (dictionaryMode ? modelData[1].postKeyLabel : '').replace(/\{name\}/g, objEditor.obj.name) : ''
|
||||||
|
keyRegexp: dictionaryMode ? modelData[1].keyFormat : /^.+$/
|
||||||
|
valueRegexp: visible ? modelData[1].format : /^.+$/
|
||||||
|
forbidAdding: visible ? modelData[1].forbidAdding : false
|
||||||
|
|
||||||
|
onChanged: {
|
||||||
|
var exported = exportModel()
|
||||||
|
history.addToHistory(new HistoryLib.EditedProperty(
|
||||||
|
objEditor.obj.name, objEditor.objType, modelData[0],
|
||||||
|
objEditor.obj[modelData[0]], exported
|
||||||
|
))
|
||||||
|
//Objects.currentObjects[objEditor.objType][objEditor.objIndex][modelData[0]] = exported
|
||||||
|
objEditor.obj[modelData[0]] = exported
|
||||||
|
//Objects.currentObjects[objEditor.objType][objEditor.objIndex].update()
|
||||||
|
objEditor.obj.update()
|
||||||
|
objectListList.update()
|
||||||
|
}
|
||||||
|
|
||||||
|
Component.onCompleted: {
|
||||||
|
if(visible) importModel(objEditor.obj[modelData[0]])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function show() {
|
||||||
|
dlgCustomProperties.model = [] // Reset
|
||||||
|
var objProps = Objects.types[objEditor.objType].properties()
|
||||||
|
dlgCustomProperties.model = Object.keys(objProps).map(prop => [prop, objProps[prop]]) // Converted to 2-dimentional array.
|
||||||
|
objEditor.open()
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,67 @@
|
||||||
|
/**
|
||||||
|
* LogarithmPlotter - Create graphs with logarithm scales.
|
||||||
|
* Copyright (C) 2021 Ad5001
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import QtQuick 2.12
|
||||||
|
import QtQuick.Controls 2.12
|
||||||
|
import "../js/objects.js" as Objects
|
||||||
|
import "../js/historylib.js" as HistoryLib
|
||||||
|
|
||||||
|
Column {
|
||||||
|
id: createRow
|
||||||
|
property var objectEditor
|
||||||
|
property var objectLists
|
||||||
|
|
||||||
|
Label {
|
||||||
|
id: createTitle
|
||||||
|
verticalAlignment: TextInput.AlignVCenter
|
||||||
|
text: '+ Create new:'
|
||||||
|
font.pixelSize: 20
|
||||||
|
}
|
||||||
|
|
||||||
|
Grid {
|
||||||
|
width: parent.width
|
||||||
|
columns: 3
|
||||||
|
Repeater {
|
||||||
|
model: Object.keys(Objects.types)
|
||||||
|
|
||||||
|
Button {
|
||||||
|
id: createBtn
|
||||||
|
text: modelData
|
||||||
|
width: parent.width/3
|
||||||
|
visible: Objects.types[modelData].createable()
|
||||||
|
height: visible ? implicitHeight : 0
|
||||||
|
display: AbstractButton.TextUnderIcon
|
||||||
|
icon.name: modelData
|
||||||
|
icon.width: 24
|
||||||
|
icon.height: 24
|
||||||
|
icon.color: sysPalette.windowText
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
var newObj = Objects.createNewRegisteredObject(modelData)
|
||||||
|
history.addToHistory(new HistoryLib.CreateNewObject(newObj.name, modelData, newObj.export()))
|
||||||
|
objectLists.update()
|
||||||
|
objectEditor.obj = Objects.currentObjects[modelData][Objects.currentObjects[modelData].length - 1]
|
||||||
|
objectEditor.objType = modelData
|
||||||
|
objectEditor.objIndex = Objects.currentObjects[modelData].length - 1
|
||||||
|
objectEditor.editingRow = objectLists.listViews[modelData].editingRows[objectEditor.objIndex]
|
||||||
|
objectEditor.show()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,204 @@
|
||||||
|
/**
|
||||||
|
* LogarithmPlotter - Create graphs with logarithm scales.
|
||||||
|
* Copyright (C) 2021 Ad5001
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import QtQuick 2.12
|
||||||
|
import QtQuick.Dialogs 1.3 as D
|
||||||
|
import QtQuick.Controls 2.12
|
||||||
|
import "../js/objects.js" as Objects
|
||||||
|
import "../js/historylib.js" as HistoryLib
|
||||||
|
|
||||||
|
|
||||||
|
ListView {
|
||||||
|
id: objectListList
|
||||||
|
|
||||||
|
signal changed()
|
||||||
|
|
||||||
|
property var listViews: {'':''} // Needs to be initialized or will be undefined -_-
|
||||||
|
|
||||||
|
model: Object.keys(Objects.types)
|
||||||
|
implicitHeight: contentItem.childrenRect.height + footer.height + 10
|
||||||
|
|
||||||
|
delegate: ListView {
|
||||||
|
id: objTypeList
|
||||||
|
property string objType: objectListList.model[index]
|
||||||
|
property var editingRows: []
|
||||||
|
model: Objects.currentObjects[objType]
|
||||||
|
width: objectListList.width
|
||||||
|
implicitHeight: contentItem.childrenRect.height
|
||||||
|
visible: model != undefined && model.length > 0
|
||||||
|
interactive: false
|
||||||
|
|
||||||
|
Component.onCompleted: objectListList.listViews[objType] = objTypeList // Listing in order to be refreshed
|
||||||
|
|
||||||
|
header: Row {
|
||||||
|
width: typeHeaderText.width + typeVisibilityCheckBox.visible
|
||||||
|
height: visible ? 20 : 0
|
||||||
|
visible: objTypeList.visible
|
||||||
|
|
||||||
|
CheckBox {
|
||||||
|
id: typeVisibilityCheckBox
|
||||||
|
checked: Objects.currentObjects[objType] != undefined ? Objects.currentObjects[objType].every(obj => obj.visible) : true
|
||||||
|
onClicked: {
|
||||||
|
for(var obj of Objects.currentObjects[objType]) obj.visible = this.checked
|
||||||
|
for(var obj of objTypeList.editingRows) obj.objVisible = this.checked
|
||||||
|
objectListList.changed()
|
||||||
|
}
|
||||||
|
|
||||||
|
ToolTip.visible: hovered
|
||||||
|
ToolTip.text: checked ? `Hide all ${Objects.types[objType].typeMultiple()}` : `Show all ${Objects.types[objType].typeMultiple()}`
|
||||||
|
}
|
||||||
|
|
||||||
|
Label {
|
||||||
|
id: typeHeaderText
|
||||||
|
verticalAlignment: TextInput.AlignVCenter
|
||||||
|
text: Objects.types[objType].typeMultiple() + ":"
|
||||||
|
font.pixelSize: 20
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
delegate: Item {
|
||||||
|
id: controlRow
|
||||||
|
property var obj: Objects.currentObjects[objType][index]
|
||||||
|
property alias objVisible: objVisibilityCheckBox.checked
|
||||||
|
height: 40
|
||||||
|
width: objTypeList.width
|
||||||
|
|
||||||
|
Component.onCompleted: objTypeList.editingRows.push(controlRow)
|
||||||
|
|
||||||
|
CheckBox {
|
||||||
|
id: objVisibilityCheckBox
|
||||||
|
checked: Objects.currentObjects[objType][index].visible
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.leftMargin: 5
|
||||||
|
onClicked: {
|
||||||
|
history.addToHistory(new HistoryLib.EditedVisibility(
|
||||||
|
Objects.currentObjects[objType][index].name, objType, this.checked
|
||||||
|
))
|
||||||
|
Objects.currentObjects[objType][index].visible = this.checked
|
||||||
|
objectListList.changed()
|
||||||
|
controlRow.obj = Objects.currentObjects[objType][index]
|
||||||
|
}
|
||||||
|
|
||||||
|
ToolTip.visible: hovered
|
||||||
|
ToolTip.text: checked ? `Hide ${objType} ${obj.name}` : `Show ${objType} ${obj.name}`
|
||||||
|
}
|
||||||
|
|
||||||
|
Label {
|
||||||
|
id: objDescription
|
||||||
|
anchors.left: objVisibilityCheckBox.right
|
||||||
|
anchors.right: deleteButton.left
|
||||||
|
height: parent.height
|
||||||
|
verticalAlignment: TextInput.AlignVCenter
|
||||||
|
text: obj.getReadableString()
|
||||||
|
font.pixelSize: 14
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked: {
|
||||||
|
objEditor.obj = Objects.currentObjects[objType][index]
|
||||||
|
objEditor.objType = objType
|
||||||
|
objEditor.objIndex = index
|
||||||
|
objEditor.editingRow = controlRow
|
||||||
|
objEditor.show()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Button {
|
||||||
|
id: deleteButton
|
||||||
|
width: parent.height - 10
|
||||||
|
height: width
|
||||||
|
anchors.right: colorPickRect.left
|
||||||
|
anchors.rightMargin: 5
|
||||||
|
anchors.topMargin: 5
|
||||||
|
icon.name: 'delete'
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
history.addToHistory(new HistoryLib.DeleteObject(
|
||||||
|
objEditor.obj.name, objEditor.objType, objEditor.obj.export()
|
||||||
|
))
|
||||||
|
Objects.currentObjects[objType][index].delete()
|
||||||
|
Objects.currentObjects[objType].splice(index, 1)
|
||||||
|
objectListList.update()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: colorPickRect
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.rightMargin: 5
|
||||||
|
anchors.topMargin: 5
|
||||||
|
color: obj.color
|
||||||
|
width: parent.height - 10
|
||||||
|
height: width
|
||||||
|
radius: Math.min(width, height)
|
||||||
|
border.width: 2
|
||||||
|
border.color: sysPalette.windowText
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked: pickColor.open()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
D.ColorDialog {
|
||||||
|
id: pickColor
|
||||||
|
color: obj.color
|
||||||
|
title: `Pick new color for ${objType} ${obj.name}`
|
||||||
|
onAccepted: {
|
||||||
|
history.addToHistory(new HistoryLib.EditedProperty(
|
||||||
|
obj.name, objType, "color",
|
||||||
|
obj.color, color.toString()
|
||||||
|
))
|
||||||
|
obj.color = color.toString()
|
||||||
|
controlRow.obj = Objects.currentObjects[objType][index]
|
||||||
|
objectListList.update()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Object editor
|
||||||
|
EditorDialog {
|
||||||
|
id: objEditor
|
||||||
|
objectLists: objectListList
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create items
|
||||||
|
footer: ObjectCreationGrid {
|
||||||
|
id: createRow
|
||||||
|
width: parent.width
|
||||||
|
objectEditor: objEditor
|
||||||
|
objectLists: objectListList
|
||||||
|
}
|
||||||
|
|
||||||
|
function update() {
|
||||||
|
objectListList.changed()
|
||||||
|
for(var objType in objectListList.listViews) {
|
||||||
|
objectListList.listViews[objType].model = Objects.currentObjects[objType]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function paramTypeIn(parameter, types = []) {
|
||||||
|
if(types.includes(parameter.toString())) return true
|
||||||
|
if(typeof parameter == 'object' && 'type' in parameter)
|
||||||
|
return types.includes(parameter.type)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
module eu.ad5001.LogarithmPlotter.ObjectLists
|
||||||
|
|
||||||
|
ObjectLists 1.0 ObjectLists.qml
|
||||||
|
ObjectCreationGrid 1.0 ObjectCreationGrid.qml
|
||||||
|
EditorDialog 1.0 EditorDialog.qml
|
||||||
|
|
|
@ -25,7 +25,7 @@ ScrollView {
|
||||||
|
|
||||||
signal changed()
|
signal changed()
|
||||||
|
|
||||||
property int settingWidth: settings.width
|
property int settingWidth: settings.width - ScrollBar.vertical.width
|
||||||
|
|
||||||
property int xzoom: 100
|
property int xzoom: 100
|
||||||
property int yzoom: 10
|
property int yzoom: 10
|
||||||
|
@ -46,6 +46,8 @@ ScrollView {
|
||||||
//height: 30*12 //30*Math.max(1, Math.ceil(7 / columns))
|
//height: 30*12 //30*Math.max(1, Math.ceil(7 / columns))
|
||||||
//columns: Math.floor(width / settingWidth)
|
//columns: Math.floor(width / settingWidth)
|
||||||
spacing: 10
|
spacing: 10
|
||||||
|
width: parent.width
|
||||||
|
bottomPadding: 20
|
||||||
|
|
||||||
FileDialog {
|
FileDialog {
|
||||||
id: fdiag
|
id: fdiag
|
||||||
|
|
|
@ -241,7 +241,7 @@ class StringElement extends AbstractSyntaxElement {
|
||||||
}
|
}
|
||||||
|
|
||||||
class FunctionElement extends AbstractSyntaxElement {
|
class FunctionElement extends AbstractSyntaxElement {
|
||||||
type = ASEType.STRING;
|
type = ASEType.FUNCTION;
|
||||||
|
|
||||||
constructor(functionName, astArguments) {
|
constructor(functionName, astArguments) {
|
||||||
this.function = functionName;
|
this.function = functionName;
|
||||||
|
|
6
LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/qmldir
Normal file
6
LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/qmldir
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
module eu.ad5001.LogarithmPlotter
|
||||||
|
|
||||||
|
TextSetting 1.0 TextSetting.qml
|
||||||
|
ListSetting 1.0 ListSetting.qml
|
||||||
|
ComboBoxSetting 1.0 ComboBoxSetting.qml
|
||||||
|
Icon 1.0 Icon.qml
|
Loading…
Add table
Add a link
Reference in a new issue