3 using bytex64.WebThing;
5 public class FFNav : WebThingPlugin {
8 public void Init(WebThing wt) {
10 wt.WebView.KeyPressEvent += WebView_KeyPress;
13 private void WebView_KeyPress(object o, KeyPressEventArgs e) {
14 if ((e.Event.State & Gdk.ModifierType.Mod1Mask) != 0) {
20 wt.WebView.GoForward();
25 case Gdk.Key.BackSpace: