fixed cellqml and add a textbox for editing slide text
This commit is contained in:
parent
a8aca389b4
commit
e53b352a63
7
cell.qml
7
cell.qml
@ -6,13 +6,14 @@ Rectangle {
|
|||||||
property int index: 0
|
property int index: 0
|
||||||
width: 100
|
width: 100
|
||||||
height: 100
|
height: 100
|
||||||
/*anchors.right: parent
|
color: "#00000000"
|
||||||
anchors.left: parent*/
|
anchors.right: parent.right
|
||||||
|
anchors.left: parent.left
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
id: cellText
|
id: cellText
|
||||||
enabled: true
|
enabled: true
|
||||||
objectName: "celltext"
|
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
|
||||||
|
52
main.go
52
main.go
@ -24,6 +24,7 @@ var (
|
|||||||
cellQml qml.Object
|
cellQml qml.Object
|
||||||
window *qml.Window
|
window *qml.Window
|
||||||
slides slide
|
slides slide
|
||||||
|
err error
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
@ -35,7 +36,7 @@ func main() {
|
|||||||
|
|
||||||
func run() error {
|
func run() error {
|
||||||
engine := qml.NewEngine()
|
engine := qml.NewEngine()
|
||||||
path, err := osext.ExecutableFolder()
|
path, err = osext.ExecutableFolder()
|
||||||
path = filepath.Clean(path + "/../src/github.com/lordwelch/PresentationApp/")
|
path = filepath.Clean(path + "/../src/github.com/lordwelch/PresentationApp/")
|
||||||
fmt.Println(path)
|
fmt.Println(path)
|
||||||
mainQml, err := engine.LoadFile(path + "/main.qml")
|
mainQml, err := engine.LoadFile(path + "/main.qml")
|
||||||
@ -43,34 +44,59 @@ func run() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
cellQml, err := engine.LoadFile(path + "/cell.qml")
|
cellQml, err = engine.LoadFile(path + "/cell.qml")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
fmt.Println("ignore", cellQml)
|
|
||||||
qml.RunMain(slides.addCell())
|
|
||||||
|
|
||||||
window = mainQml.CreateWindow(nil)
|
window = mainQml.CreateWindow(nil)
|
||||||
|
slides.addCell()
|
||||||
|
|
||||||
window.Show()
|
window.Show()
|
||||||
window.Wait()
|
window.Wait()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (cl *cell) setSignals() {
|
||||||
|
cl.qmlcell.ObjectByName("cellMouse").On("doubleClicked", func() {
|
||||||
|
cellText := cl.qmlcell.ObjectByName("cellText")
|
||||||
|
textEdit := window.ObjectByName("textEdit")
|
||||||
|
textEdit.Set("x", cellText.Int("x")+4)
|
||||||
|
textEdit.Set("y", cellText.Int("y")+4)
|
||||||
|
textEdit.Set("width", cellText.Int("width"))
|
||||||
|
textEdit.Set("height", cellText.Int("height"))
|
||||||
|
textEdit.Set("opacity", 100)
|
||||||
|
textEdit.Set("visible", true)
|
||||||
|
textEdit.Set("focus", true)
|
||||||
|
textEdit.Set("enabled", true) /*
|
||||||
|
fmt.Println(textEdit.Int("x"))
|
||||||
|
fmt.Println(textEdit.Int("y"))
|
||||||
|
fmt.Println(textEdit.Int("width"))
|
||||||
|
fmt.Println(textEdit.Int("height"))*/
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func (sl *slide) addCell( /*cl *cell*/ ) {
|
func (sl *slide) addCell( /*cl *cell*/ ) {
|
||||||
var cl cell
|
var cl cell
|
||||||
cl.index = len(*sl)
|
|
||||||
fmt.Println("index: ", cl.index)
|
|
||||||
cl.qmlcell = cellQml.Create(nil)
|
cl.qmlcell = cellQml.Create(nil)
|
||||||
fmt.Println("index: ", cl.index)
|
cl.qmlcell.Set("objectName", fmt.Sprintf("cellRect&d", cl.index))
|
||||||
fmt.Println(cl.qmlcell.ObjectByName("celltext").Property("text"))
|
cl.qmlcell.Set("parent", window.ObjectByName("data1"))
|
||||||
|
|
||||||
|
cl.index = len(*sl)
|
||||||
cl.text = "testing 1... 2... 3..."
|
cl.text = "testing 1... 2... 3..."
|
||||||
fmt.Println(cl)
|
cl.qmlcell.ObjectByName("cellText").Set("text", cl.text)
|
||||||
//*sl = append(*sl, *cl)
|
*sl = append(*sl, cl)
|
||||||
//*sl[0] //.qmlcell.Set("parent", window.ObjectByName("data1"))
|
|
||||||
|
|
||||||
|
cl.setSignals()
|
||||||
|
|
||||||
|
fmt.Print((*sl)[len(*sl)-1])
|
||||||
}
|
}
|
||||||
|
|
||||||
func (cl *cell) String() string {
|
func (cl cell) String() string {
|
||||||
return fmt.Sprint("Index: %T \nText: %T", cl.index, cl.text)
|
return fmt.Sprintf("Index: %T \nText: %T\n", cl.index, cl.text)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (cl cell) GoString() string {
|
||||||
|
return cl.String()
|
||||||
}
|
}
|
||||||
|
65
main.qml
65
main.qml
@ -8,9 +8,40 @@ ApplicationWindow {
|
|||||||
objectName: "applicationWindow1"
|
objectName: "applicationWindow1"
|
||||||
minimumWidth: 500
|
minimumWidth: 500
|
||||||
minimumHeight: 500
|
minimumHeight: 500
|
||||||
property int globalForJs: 10
|
|
||||||
width: 1000
|
width: 1000
|
||||||
height: 600
|
height: 600
|
||||||
|
|
||||||
|
menuBar: MenuBar {
|
||||||
|
Menu {
|
||||||
|
title: "&File"
|
||||||
|
MenuItem {
|
||||||
|
|
||||||
|
}
|
||||||
|
MenuItem {
|
||||||
|
text: "Close"
|
||||||
|
shortcut: StandardKey.Quit
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Menu {
|
||||||
|
title: "&Edit"
|
||||||
|
MenuItem {
|
||||||
|
//action: cutAction
|
||||||
|
}
|
||||||
|
MenuItem {
|
||||||
|
//action: copyAction
|
||||||
|
}
|
||||||
|
MenuItem {
|
||||||
|
//action: pasteAction
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Menu {
|
||||||
|
title: "&Help"
|
||||||
|
MenuItem {
|
||||||
|
//action: aboutAction
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
id: mainSlider
|
id: mainSlider
|
||||||
objectName: "mainSlider"
|
objectName: "mainSlider"
|
||||||
@ -66,7 +97,6 @@ ApplicationWindow {
|
|||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
//onAdded: children.width = data1.width
|
//onAdded: children.width = data1.width
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -99,4 +129,35 @@ ApplicationWindow {
|
|||||||
visible: true
|
visible: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: textEdit
|
||||||
|
x: 448
|
||||||
|
y: 151
|
||||||
|
objectName: "textEdit"
|
||||||
|
width: 200
|
||||||
|
height: 200
|
||||||
|
color: "#ffffff"
|
||||||
|
visible: false
|
||||||
|
Keys.onEscapePressed: {
|
||||||
|
x = -100
|
||||||
|
y = -100
|
||||||
|
visible = false
|
||||||
|
focus = false
|
||||||
|
enabled = false
|
||||||
|
opacity = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
TextArea {
|
||||||
|
id: textEdit1
|
||||||
|
objectName: "textEdit1"
|
||||||
|
text: qsTr("Text Edit")
|
||||||
|
anchors.fill: parent
|
||||||
|
clip: true
|
||||||
|
textFormat: Text.AutoText
|
||||||
|
visible: true
|
||||||
|
font.pixelSize: 12
|
||||||
|
z: 99
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user