我正在写一个小的http客户端来测试api调用。这是学习vala和使用gtk3的时机。
我创建了一个类来处理gtk接口和http请求。
using GLib;
using Gtk;
public class RequestHandler : Object
{
public string uri { get; private set; default = ""; }
// Constructor
public RequestHandler ()
{
}
[CCode (instance_pos = -1)]
public void on_url_changed (Entry entry, Button button)
{
stderr.printf ("this#%p\n", this);
if (entry.get_text_length () == 0)
{
button.set_sensitive (false);
this.uri = "";
}
else
{
button.set_sensitive (true);
this.uri = entry.get_text();
}
}
[CCode (instance_pos = -1)]
public void on_send_clicked (Button button)
{
assert (this.uri != null );
stderr.printf ("Send request to : %s\n", this.uri);
}
}
该行
stderr.printf ("this#%p\n", this);
// => fprintf (_tmp0_, "this#%p\n", self); in the C file
每次显示“此#0x1”并且程序在行
处出现分段错误时失败this.uri = entry.get_text();
// _g_free0 (self->priv->_uri); in the C file
使用
构建UIvar builder = new Builder ();
builder.add_from_file (UI_FILE);
var signals_handler = new RequestHandler ();
builder.connect_signals (signals_handler);
我真的是vala的新手,我没有看到我的错误。
[编辑]
...
<object class="GtkEntry" id="entry2">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="hexpand">True</property>
<property name="invisible_char">●</property>
<property name="input_purpose">url</property>
<signal name="changed" handler="request_handler_on_url_changed" object="button1" swapped="no"/>
</object>
...
ui完全由林间空地生成。
答案 0 :(得分:1)
on_url_changed方法有一个额外的参数。 Gtk.Editable.changed信号应该有一个参数:Gtk.Editable发生了变化。由于自动连接信号没有类型安全性,public void on_changed (Gtk.Entry entry);
应该有效。
您在上面发布的代码发生的事情是生成这样的内容:
void request_handler_on_changed (GtkEntry* entry, GtkButton* button, RequestHandler* self) {
fprintf (stderr, "this#%p\n", self);
}
并且gtk +正在调用它
request_handler_on_changed (editable, request_handler);
因此,当您的Vala代码获取信息时,它在按钮参数中具有RequestHandler,而self(这是“this”变量的生成方式)是垃圾。
在自动连接信号时你必须非常小心,因为你基本上绕过Vala并直接挂钩生成的C.Vala无法提供类型安全。