LogarithmPlotter/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/History/HistoryBrowser.qml

134 lines
4 KiB
QML
Raw Normal View History

2021-04-07 12:51:48 +00:00
/**
* LogarithmPlotter - 2D plotter software to make BODE plots, sequences and repartition functions.
* Copyright (C) 2022 Ad5001
2021-04-07 12:51:48 +00:00
*
* 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/>.
*/
2021-04-07 12:51:48 +00:00
import QtQuick.Controls 2.12
import QtQuick 2.12
2022-01-30 00:22:33 +00:00
import "../js/utils.js" as Utils
2021-04-07 12:51:48 +00:00
/*!
\qmltype HistoryBrowser
2022-01-30 00:22:33 +00:00
\inqmlmodule eu.ad5001.LogarithmPlotter.History
\brief Tab of the drawer that allows to navigate through the undo and redo history.
Creates a scrollable view containing a list of history actions based on the redo stack, then a "Now" indicator
followed by the entirety of the saved undo stack. Each action can be click to restore a state of the graph at
some point of the history.
\sa LogarithmPlotter, Settings, ObjectLists
*/
2021-04-07 12:51:48 +00:00
ScrollView {
id: historyBrowser
/*!
\qmlproperty int HistoryBrowser::actionWidth
Width of the actions.
*/
2021-04-07 12:51:48 +00:00
property int actionWidth: width-20
/*!
\qmlproperty int HistoryBrowser::actionHeight
Height of the actions.
*/
property int actionHeight: 30
2021-04-07 12:51:48 +00:00
Flickable {
width: parent.width
height: parent.height
contentHeight: redoColumn.height + nowRect.height + undoColumn.height
contentWidth: parent.width
Column {
id: redoColumn
anchors.right: parent.right
anchors.top: parent.top
2022-01-30 00:22:33 +00:00
width: actionWidth
2021-04-07 12:51:48 +00:00
Repeater {
model: history.redoCount
2022-01-30 00:22:33 +00:00
HistoryItem {
2021-04-07 12:51:48 +00:00
id: redoButton
2022-01-30 00:22:33 +00:00
width: actionWidth
height: actionHeight
2022-01-30 00:22:33 +00:00
isRedo: true
idx: index
2021-04-07 12:51:48 +00:00
}
}
}
Text {
anchors.left: parent.left
anchors.bottom: nowRect.top
text: qsTr("Redo >")
2021-04-07 12:51:48 +00:00
color: sysPaletteIn.windowText
transform: Rotation { origin.x: 30; origin.y: 30; angle: 270}
height: 70
width: 20
visible: history.redoCount > 0
}
Rectangle {
id: nowRect
anchors.right: parent.right
anchors.top: redoColumn.bottom
2022-01-30 00:22:33 +00:00
width: actionWidth
height: actionHeight
2021-04-07 12:51:48 +00:00
color: sysPalette.highlight
Text {
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
anchors.leftMargin: 5
text: qsTr("> Now")
2021-04-07 12:51:48 +00:00
color: sysPalette.windowText
}
}
Column {
id: undoColumn
anchors.right: parent.right
anchors.top: nowRect.bottom
2022-01-30 00:22:33 +00:00
width: actionWidth
2021-04-07 12:51:48 +00:00
Repeater {
model: history.undoCount
2022-01-30 00:22:33 +00:00
HistoryItem {
2021-04-07 12:51:48 +00:00
id: undoButton
2022-01-30 00:22:33 +00:00
width: actionWidth
height: actionHeight
2022-01-30 00:22:33 +00:00
isRedo: false
idx: index
2021-04-07 12:51:48 +00:00
}
}
}
Text {
anchors.left: parent.left
anchors.top: undoColumn.top
text: qsTr("< Undo")
2021-04-07 12:51:48 +00:00
color: sysPaletteIn.windowText
transform: Rotation { origin.x: 30; origin.y: 30; angle: 270}
height: 60
width: 20
visible: history.undoCount > 0
}
}
}