私はValaとWebKitGTK+で簡単なブラウザを書いています。私がする必要があることの1つは、ウィンドウのタイトルをWebページのタイトルのタイトルに設定することです。そのため、タイトルの変更を。で監視しweb_view.notify["title"].connect
ます。ただし、タイトルの値がである場合もありますがnull
、明らかにそうではないはずです。
私が覚えているいくつかの例:
- Googleで何でも検索します。次の結果ページに移動すると、タイトルがに設定され
null
ます。 - アンカーリンクをクリックします(例:http ://example.com/page.html#section )
いずれにせよ、Web Inspectorを使用すると、ページにタイトルが設定されていることがわかります。
これは私が報告すべきバグですか?それとも私は何か間違ったことをしているのでしょうか?これが私が使用しているコードです:
//valac --thread --pkg webkitgtk-3.0 --pkg gtk+-3.0 --vapidir=./ test.vala
//The vapidir folder should have webkitgtk-3.0.vapi and webkitgtk-3.0.deps
using WebKit;
using Gtk;
public class Test : Gtk.Window {
public WebView webview;
public Test () {
this.title = "Test";
this.window_position = Gtk.WindowPosition.CENTER;
this.set_default_size (800, 600);
this.hide_titlebar_when_maximized = false;
this.destroy.connect (() => {
Gtk.main_quit ();
});
var scroll = new ScrolledWindow (null, null);
this.webview = new WebView ();
this.add (scroll);
scroll.add (webview);
webview.settings.enable_developer_extras = true;
webview.notify["title"].connect ((sender, property) => {
if (webview.title != null) {
this.title = webview.title;
stdout.printf (webview.title + "\n");
} else {
stdout.printf ("(null)\n");
}
});
webview.web_inspector.inspect_web_view.connect ((p0) => {
var w = new Window ();
w.window_position = WindowPosition.CENTER;
w.title = "Inspector";
w.set_default_size (800,600);
WebView view = new WebView ();
unowned WebView view2 = view;
w.add (view2);
w.show_all ();
return view2;
});
}
public static int main (string[] args) {
Gtk.init (ref args);
Test app = new Test ();
app.webview.load_uri ("http://google.com");
app.show_all ();
Gtk.main ();
return 0;
}
}