start function for adding cell
This commit is contained in:
parent
5c48c4c60a
commit
297eef3222
13
cell.qml
13
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
|
||||
}
|
||||
}
|
||||
|
30
main.go
30
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)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user