dongsutao8921 2014-04-09 11:04
浏览 63
已采纳

如何使用gtk.go.Connect()设置一个带参数的插槽(事件处理程序)?

I am using GTK bindings for Go.

Trying to connect a gtk.RadioButton toggle signal to a function. This code works fine:

...

radioButton.Connect("toggled", doRadioToggle)

func doRadioToggle() {
    fmt.Println("toggled")
}

...

When radioButton is toggled, doRadioToggle is called - Good.


But I want to connect to a function that takes a parameter, for example:

func doRadioToggle(button *gtk.RadioButton) {
    fmt.Println(button.GetState())
}

The gtk.go.Connect() function has this signature:

func (v *Widget) Connect(s string, f interface{}, datas ...interface{})

Based on what I know from gtkmm, I tried code like this (the go binding has apparently greatly simplified the call to connect())

radioButton.Connect("toggled", doRadioToggle, radioButton)

The third argument passed inconnect() - radioButton - corresponding todatasin

gtk.Connect(s string, f interface{}, datas ...interface{})

which I understood to mean data arguments to be passed to the slot.

But with this code, the doRadioToggle() handler never gets called, and I immediately exit with a panic:

panic: reflect: Call using *glib.CallbackContext as type *gtk.RadioButton

My question: How do I set up slot (event handler) that takes parameters using gtk.go.Connect()?

  • 写回答

2条回答 默认 最新

  • doukan1258 2014-04-11 02:21
    关注

    Based on response from the amazing mattn on GitHub:

    https://github.com/mattn/go-gtk/blob/master/example/demo/demo.go#L58

    Adopted, tested and working:

    import(
    ... 
    "github.com/mattn/go-gtk/glib"
    )
    
    ...
    
    func ButtonHandler(ctx *glib.CallbackContext) {
        fmt.Printf("Button Handler: %v
    ", ctx.Data().(*gtk.RadioButton).GetState())
    }
    
    aRadioButton.Connect("toggled", ButtonHandler, aRadioButton)
    
    ...
    

    Thedatasarguments inconnect()must be passed using*glib.CallbackContext in the handler's signature, then, in the handler code, use type assertion to grab the actual arguments .

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵