start function for adding cell

This commit is contained in:
lordwelch 2016-01-14 22:25:53 -08:00
parent 5c48c4c60a
commit 297eef3222
3 changed files with 41 additions and 4 deletions

View File

@ -1,12 +1,18 @@
import QtQuick 2.0 import QtQuick 2.0
Rectangle { Rectangle {
property int index: 0/* enabled: true
anchors.right: parent objectName: "cellRect"
property int index: 0
width: 100
height: 100
/*anchors.right: parent
anchors.left: parent*/ anchors.left: parent*/
Text { Text {
id: cellText id: cellText
enabled: true
objectName: "celltext"
height: 75 height: 75
text: "hello this is text\nhaha\nhdsjfklfhaskjd" text: "hello this is text\nhaha\nhdsjfklfhaskjd"
textFormat: Text.AutoText textFormat: Text.AutoText
@ -21,8 +27,11 @@ Rectangle {
anchors.left: parent.left anchors.left: parent.left
anchors.leftMargin: 0 anchors.leftMargin: 0
font.pixelSize: 12 font.pixelSize: 12
MouseArea { MouseArea {
id: cellMouse id: cellMouse
enabled: true
objectName: "cellMouse"
anchors.fill: parent anchors.fill: parent
} }
} }

30
main.go
View File

@ -3,6 +3,7 @@ package main
import ( import (
"fmt" "fmt"
//"image"
"os" "os"
"path/filepath" "path/filepath"
@ -10,8 +11,18 @@ import (
"gopkg.in/qml.v1" "gopkg.in/qml.v1"
) )
type cell struct {
text string
//img image.Image
qmlcell qml.Object
index int
}
var ( var (
path string path string
cellQml qml.Object
window *qml.Window
slides []cell
) )
func main() { func main() {
@ -36,9 +47,24 @@ func run() error {
return err return err
} }
window := mainQml.CreateWindow(nil) window = mainQml.CreateWindow(nil)
window.Show() window.Show()
window.Wait() window.Wait()
return nil 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)
}

View File

@ -65,6 +65,8 @@ ApplicationWindow {
anchors.bottom: parent.bottom anchors.bottom: parent.bottom
anchors.top: parent.top anchors.top: parent.top
anchors.left: parent.left anchors.left: parent.left
//onAdded: children.width = data1.width
} }
} }