genbindings: fix QClipboard private dtor

This commit is contained in:
mappu 2024-08-18 17:47:19 +12:00
parent e57459c5e7
commit 441d96398f
3 changed files with 26 additions and 12 deletions

View File

@ -343,7 +343,9 @@ extern "C" {
} }
// delete // delete
if AllowDelete(c) {
ret.WriteString(fmt.Sprintf("void %s_Delete(%s* self);\n", c.ClassName, c.ClassName)) ret.WriteString(fmt.Sprintf("void %s_Delete(%s* self);\n", c.ClassName, c.ClassName))
}
ret.WriteString("\n") ret.WriteString("\n")
} }
@ -495,6 +497,7 @@ func emitBindingCpp(src *CppParsedHeader, filename string) (string, error) {
} }
// Delete // Delete
if AllowDelete(c) {
ret.WriteString(fmt.Sprintf( ret.WriteString(fmt.Sprintf(
"void %s_Delete(%s* self) {\n"+ "void %s_Delete(%s* self) {\n"+
"\tdelete self;\n"+ "\tdelete self;\n"+
@ -503,6 +506,7 @@ func emitBindingCpp(src *CppParsedHeader, filename string) (string, error) {
c.ClassName, c.ClassName, c.ClassName, c.ClassName,
)) ))
} }
}
return ret.String(), nil return ret.String(), nil
} }

View File

@ -376,11 +376,13 @@ import "C"
`) `)
} }
if AllowDelete(c) {
ret.WriteString(` ret.WriteString(`
func (this *` + c.ClassName + `) Delete() { func (this *` + c.ClassName + `) Delete() {
C.` + c.ClassName + `_Delete(this.h) C.` + c.ClassName + `_Delete(this.h)
} }
`) `)
}
} }

View File

@ -1,5 +1,13 @@
package main package main
func AllowDelete(c CppClass) bool {
switch c.ClassName {
case "QClipboard":
return false // The destructor is marked private. TODO grab this from the AST
}
return true
}
func CheckComplexity(p CppParameter) error { func CheckComplexity(p CppParameter) error {
if p.QMapOf() { if p.QMapOf() {