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 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。
  • ¥20 CST怎么把天线放在座椅环境中并仿真
  • ¥15 任务A:大数据平台搭建(容器环境)怎么做呢?
  • ¥15 YOLOv8obb获取边框坐标时报错AttributeError: 'NoneType' object has no attribute 'xywhr'