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
|
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
30
main.go
@ -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)
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user