aboutsummaryrefslogtreecommitdiff
path: root/main_view.qml
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2015-05-18 18:33:50 -0300
committerSamuel Fadel <samuelfadel@gmail.com>2015-05-21 18:09:02 -0300
commita96f9f1a2688c215c478cfbee5748b4bb2043a43 (patch)
tree0f46c89bc7eaa08994faa1095b480baaa1f64c72 /main_view.qml
parent54571b4a4dcc076923325ee09ad348f389fc25a5 (diff)
Updated UI.
- Removed unnecessary UI elements from QML file; - Added the ColorScale class and implemented glyph color mapping from class labels; - Mark geometry nodes of individual glyphs as dirty when updating the scene graph.
Diffstat (limited to 'main_view.qml')
-rw-r--r--main_view.qml27
1 files changed, 0 insertions, 27 deletions
diff --git a/main_view.qml b/main_view.qml
index bf143fc..a9ff37e 100644
--- a/main_view.qml
+++ b/main_view.qml
@@ -10,31 +10,4 @@ Item {
objectName: "plot"
anchors.fill: parent
}
-
- Item {
- id: messageBox
- anchors.right: parent.right
- anchors.left: parent.left
- anchors.bottom: parent.bottom
-
- Rectangle {
- color: Qt.rgba(1, 1, 1, 0.7)
- radius: 5
- border.width: 1
- border.color: "white"
- anchors.fill: messageLabel
- anchors.margins: -10
- }
-
- Text {
- id: messageLabel
- color: "black"
- wrapMode: Text.WordWrap
- text: "The background here is a squircle rendered with raw OpenGL using the 'beforeRender()' signal in QQuickWindow. This text label and its border is rendered using QML"
- anchors.right: parent.right
- anchors.left: parent.left
- anchors.bottom: parent.bottom
- anchors.margins: 20
- }
- }
}