diff --git a/cell.qml b/cell.qml index 51ca029..9e80a5d 100644 --- a/cell.qml +++ b/cell.qml @@ -1,12 +1,18 @@ import QtQuick 2.0 Rectangle { - property int index: 0/* - anchors.right: parent + enabled: true + objectName: "cellRect" + property int index: 0 + width: 100 + height: 100 + /*anchors.right: parent anchors.left: parent*/ Text { id: cellText + enabled: true + objectName: "celltext" height: 75 text: "hello this is text\nhaha\nhdsjfklfhaskjd" textFormat: Text.AutoText @@ -21,8 +27,11 @@ Rectangle { anchors.left: parent.left anchors.leftMargin: 0 font.pixelSize: 12 + MouseArea { id: cellMouse + enabled: true + objectName: "cellMouse" anchors.fill: parent } } diff --git a/main.go b/main.go index 7619beb..2d3a03f 100644 --- a/main.go +++ b/main.go @@ -3,6 +3,7 @@ package main import ( "fmt" + //"image" "os" "path/filepath" @@ -10,8 +11,18 @@ import ( "gopkg.in/qml.v1" ) +type cell struct { + text string + //img image.Image + qmlcell qml.Object + index int +} + var ( - path string + path string + cellQml qml.Object + window *qml.Window + slides []cell ) func main() { @@ -36,9 +47,24 @@ func run() error { return err } - window := mainQml.CreateWindow(nil) + window = mainQml.CreateWindow(nil) window.Show() window.Wait() return nil } + +func (cl *cell) addCell() { + cl.index = len(slides) + cl.qmlcell = cellQml.Create(nil) + fmt.Println(cl.qmlcell.ObjectByName("celltext").Property("text")) + cl.text = "testing 1... 2... 3..." + fmt.Println(cl) + slides = append(slides, *cl) + slides[cl.index].qmlcell.Set("parent", window.ObjectByName("data1")) + +} + +func (cl *cell) String() string { + return fmt.Sprint("Index: %T \nText: %T", cl.index, cl.text) +} diff --git a/main.qml b/main.qml index 1600d60..5b446d2 100644 --- a/main.qml +++ b/main.qml @@ -65,6 +65,8 @@ ApplicationWindow { anchors.bottom: parent.bottom anchors.top: parent.top anchors.left: parent.left + //onAdded: children.width = data1.width + } }