Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Education
KAlgebra
Commits
193f64f1
Commit
193f64f1
authored
Dec 14, 2020
by
Carl Schwan
🚴
Browse files
Move value table results to another page
and port form to FormLayout
parent
3b58148d
Changes
3
Hide whitespace changes
Inline
Side-by-side
mobile/content/ui/TableResultPage.qml
0 → 100644
View file @
193f64f1
/**
* SPDX-FileCopyrightText: Carl Schwan <carl@carlschwan.eu>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
import
QtQuick
2.0
import
org
.
kde
.
kirigami
2.14
as
Kirigami
Kirigami.ScrollablePage
{
title
:
i18n
(
"
Results
"
)
required
property
var
results
ListView
{
currentIndex
:
-
1
model
:
results
delegate
:
Kirigami.BasicListItem
{
label
:
model
.
element
}
}
}
mobile/content/ui/Tables.qml
View file @
193f64f1
...
...
@@ -20,18 +20,17 @@ import QtQuick 2.0
import
QtQuick
.
Layouts
1.1
import
org
.
kde
.
analitza
1.0
import
QtQuick
.
Controls
2.5
import
org
.
kde
.
kirigami
2.
5
as
Kirigami
import
org
.
kde
.
kirigami
2.
14
as
Kirigami
import
org
.
kde
.
kalgebra
.
mobile
1.0
KAlgebraPage
{
Analitza
{
id
:
a
variables
:
App
.
variables
}
Kirigami.ScrollablePage
{
title
:
i18n
(
"
Value tables
"
)
property
ListModel
resultsModel
:
ListModel
{}
function
calculateTable
()
{
resultsModel
.
clear
();
var
tmp
=
a
.
unusedVariableName
()
var
ret
=
a
.
insertVariable
(
tmp
,
a
.
dependenciesToLambda
(
input
.
text
))
var
ffrom
=
from
.
realValue
,
fto
=
to
.
realValue
,
fstep
=
step
.
realValue
;
...
...
@@ -41,7 +40,7 @@ KAlgebraPage {
step
.
value
=
fstep
}
// console.log("chancho2 (" + ffrom + ", " + fto + " : " + fstep + ") " + ret);
if
(
fstep
===
0
)
{
resultsModel
.
append
(
{
element
:
i18n
(
"
Errors: The step cannot be 0
"
)
}
);
}
else
if
(
ffrom
===
fto
)
{
...
...
@@ -56,56 +55,64 @@ KAlgebraPage {
resultsModel
.
append
(
{
element
:
i
+
"
=
"
+
expr
.
expression
}
);
}
}
a
.
removeVariable
(
tmp
);
}
ColumnLayout
{
id
:
inputcol
anchors
{
top
:
parent
.
top
left
:
parent
.
left
right
:
parent
.
right
if
(
applicationWindow
().
pageStack
.
depth
>
1
)
{
applicationWindow
().
pageStack
.
replace
(
"
qrc:/TableResultPage.qml
"
,
{
'
results
'
:
resultsModel
});
}
else
{
applicationWindow
().
pageStack
.
push
(
"
qrc:/TableResultPage.qml
"
,
{
'
results
'
:
resultsModel
});
}
spacing
:
10
GridLayout
{
id
:
ins
columns
:
2
}
actions.main
:
Kirigami.Action
{
icon.name
:
'
dialog-ok
'
text
:
i18n
(
'
Run
'
)
onTriggered
:
calculateTable
()
}
Analitza
{
id
:
a
variables
:
App
.
variables
}
Kirigami.FormLayout
{
ExpressionInput
{
Kirigami.FormData.label
:
i18n
(
"
Input
"
)
id
:
input
text
:
"
sin x
"
;
Layout.fillWidth
:
true
Label
{
text
:
i18n
(
"
Input:
"
)
}
ExpressionInput
{
id
:
input
text
:
"
sin x
"
;
Layout.fillWidth
:
true
onAccepted
:
calculateTable
();
}
Label
{
text
:
i18n
(
"
From:
"
)
}
RealInput
{
id
:
from
;
text
:
"
0
"
;
Layout.fillWidth
:
true
;
onAccepted
:
calculateTable
()
}
Label
{
text
:
i18n
(
"
To:
"
)
}
RealInput
{
id
:
to
;
text
:
"
10
"
;
Layout.fillWidth
:
true
;
onAccepted
:
calculateTable
()
}
Label
{
text
:
i18n
(
"
Step:
"
)
}
RealInput
{
id
:
step
;
text
:
"
1
"
;
Layout.fillWidth
:
true
;
onAccepted
:
calculateTable
()
}
onAccepted
:
calculateTable
();
}
RealInput
{
id
:
from
;
text
:
"
0
"
;
Kirigami.FormData.label
:
i18n
(
"
From:
"
)
Layout.fillWidth
:
true
;
onAccepted
:
calculateTable
()
}
RealInput
{
id
:
to
;
text
:
"
10
"
;
Kirigami.FormData.label
:
i18n
(
"
To:
"
)
Layout.fillWidth
:
true
;
onAccepted
:
calculateTable
()
}
RealInput
{
id
:
step
;
Kirigami.FormData.label
:
i18n
(
"
Step
"
)
text
:
"
1
"
;
Layout.fillWidth
:
true
;
onAccepted
:
calculateTable
()
}
Button
{
Layout.alignment
:
Qt
.
AlignRight
text
:
i18n
(
"
Run
"
)
onClicked
:
calculateTable
()
visible
:
!
Kirigami
.
Settings
.
isMobile
}
}
Kirigami.CardsListView
{
width
:
parent
.
width
anchors
{
top
:
inputcol
.
bottom
bottom
:
parent
.
bottom
topMargin
:
5
}
currentIndex
:
-
1
model
:
ListModel
{
id
:
resultsModel
}
delegate
:
Kirigami.Card
{
contentItem
:
Label
{
text
:
model
.
element
}
}
header
:
Label
{
text
:
i18n
(
"
Results:
"
)
}
}
}
mobile/resources.qrc
View file @
193f64f1
...
...
@@ -5,6 +5,7 @@
<file alias='kalgebra.svgz'>../icons/sc-apps-kalgebra.svgz</file>
<file alias="main.qml">content/ui/main.qml</file>
<file alias="About.qml">content/ui/About.qml</file>
<file alias="TableResultPage.qml">content/ui/TableResultPage.qml</file>
<file alias="Console.qml">content/ui/Console.qml</file>
<file alias="Dictionary.qml">content/ui/Dictionary.qml</file>
<file alias="Plot2D.qml">content/ui/Plot2D.qml</file>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment