X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=WebThing.cs;h=c1e180687d7e038427c2307ec4b1822f2334f749;hb=6c50b11e5b8e72781db4195d8472bb7d542c1d3c;hp=04ede6747e97ec6ebee7bc7eca0c3ad77565137d;hpb=126f2111e41f6b2595ffde1de6828ef12246e545;p=WebThing.git diff --git a/WebThing.cs b/WebThing.cs index 04ede67..c1e1806 100644 --- a/WebThing.cs +++ b/WebThing.cs @@ -1,125 +1,172 @@ using System; using System.Collections.Generic; -using System.Reflection; using System.IO; +using System.Text.RegularExpressions; +using System.Runtime.InteropServices; using Gtk; using GtkSharp; using WebKit; namespace bytex64.WebThing { - public enum CompassDirection { - N, NE, E, SE, S, SW, W, NW, - Interior - } - - public class WebThing { - public Gtk.Window Window { - get { return _Window; } - } - - public Gtk.Window w { - get { return _Window; } - } - - public Gtk.ScrolledWindow ScrolledWindow { - get { return _ScrolledWindow; } - } - - public Gtk.ScrolledWindow sw { - get { return _ScrolledWindow; } - } - - public WebKit.WebView WebView { - get { return _WebView; } - } - - public WebKit.WebView wv { - get { return _WebView; } - } - - private Gtk.Window _Window; - private ScrolledWindow _ScrolledWindow; - private WebKit.WebView _WebView; - private Gtk.Table WidgetGrid; - private Gtk.Alignment InteriorOverlay; - - public Dictionary Plugins; - - public void Run() { - Application.Init(); - _Window = new Gtk.Window("WebThing"); - _Window.Destroyed += delegate { Application.Quit(); }; - - WidgetGrid = new Gtk.Table(3, 3, false); - _Window.Add(WidgetGrid); - - _ScrolledWindow = new Gtk.ScrolledWindow(); - WidgetGrid.Attach(_ScrolledWindow, 1, 2, 1, 2); - - InteriorOverlay = new Gtk.Alignment(1, 0, 0, 0); - WidgetGrid.Attach(InteriorOverlay, 1, 2, 1, 2); - - _WebView = new WebKit.WebView(); - _WebView.TitleChanged += delegate(object o, TitleChangedArgs e) { - _Window.Title = e.Title + " - WebThing"; - }; - _ScrolledWindow.Add(_WebView); - - _Window.ShowAll(); - - Plugins = new Dictionary(); - // TODO: Conf.Get("plugins") instead of hard-coded path? - using (TextReader f = new StreamReader("plugins.conf")) { - string line; - while ((line = f.ReadLine()) != null) { - line = line.Trim(); - LoadPlugin(line); - } - } - - Application.Run(); - } - - public void LoadPlugin(string assemblyname) { - Assembly a = Assembly.LoadFile("plugins/" + assemblyname + ".dll"); - object obj = a.CreateInstance("Plugin", false, BindingFlags.ExactBinding, null, new object[] { this }, null, null); - Plugins[assemblyname] = obj; - } - - public void AttachWidget(Gtk.Widget widget, CompassDirection direction, AttachOptions xoptions, AttachOptions yoptions) { - switch(direction) { - case CompassDirection.N: - WidgetGrid.Attach(widget, 1, 2, 0, 1, xoptions, yoptions, 0, 0); - break; - case CompassDirection.NE: - WidgetGrid.Attach(widget, 2, 3, 0, 1, xoptions, yoptions, 0, 0); - break; - case CompassDirection.E: - WidgetGrid.Attach(widget, 2, 3, 1, 2, xoptions, yoptions, 0, 0); - break; - case CompassDirection.SE: - WidgetGrid.Attach(widget, 2, 3, 2, 3, xoptions, yoptions, 0, 0); - break; - case CompassDirection.S: - WidgetGrid.Attach(widget, 1, 2, 2, 3, xoptions, yoptions, 0, 0); - break; - case CompassDirection.SW: - WidgetGrid.Attach(widget, 0, 1, 2, 3, xoptions, yoptions, 0, 0); - break; - case CompassDirection.W: - WidgetGrid.Attach(widget, 0, 1, 1, 2, xoptions, yoptions, 0, 0); - break; - case CompassDirection.NW: - WidgetGrid.Attach(widget, 0, 1, 0, 1, xoptions, yoptions, 0, 0); - break; - case CompassDirection.Interior: - InteriorOverlay.Add(widget); - break; - } - } - - public void AttachWidget(Gtk.Widget widget, CompassDirection direction) { - AttachWidget(widget, direction, 0, 0); - } - } + public enum AttachPoint { + N, E, S, W, Interior + } + + public class WebThing { + private Gtk.Window _Window; + public Gtk.Window Window { + get { return _Window; } + } + public Gtk.Window w { + get { return _Window; } + } + + public ScrolledWindow ScrolledWindow { + get { return Tabs.CurrentPageWidget as ScrolledWindow; } + } + public ScrolledWindow sw { + get { return ScrolledWindow; } + } + + public WebView WebView { + get { return (Tabs.CurrentPageWidget as WebThingView).WebView; } + } + public WebView wv { + get { return WebView; } + } + + private Gtk.Notebook _Tabs; + public Gtk.Notebook Tabs { + get { return _Tabs; } + } + + private Gtk.Table WidgetGrid; + private Gtk.Alignment InteriorOverlay; + + public PluginManager Plugins; + + [DllImport ("SoupSettings.dll")] + private static extern void soup_settings(); + + public void Run() { + Application.Init(); + + Config.ParseCommandLine(); + Config.Load(); + //Config.DumpOptions(); + + soup_settings(); + + _Window = new Gtk.Window("WebThing"); + _Window.SetWmclass("webthing", "WebThing"); + _Window.Role = "browser"; + _Window.Destroyed += delegate { Quit(); }; + + WidgetGrid = new Gtk.Table(3, 3, false); + _Window.Add(WidgetGrid); + + _Tabs = new Gtk.Notebook(); + _Tabs.ShowBorder = false; + _Tabs.Scrollable = true; + _Tabs.SwitchPage += Tabs_SwitchPage; + WidgetGrid.Attach(_Tabs, 1, 2, 1, 2); + + InteriorOverlay = new Gtk.Alignment(1, 0, 0, 0); + WidgetGrid.Attach(InteriorOverlay, 1, 2, 1, 2); + + _Window.ShowAll(); + + WebThingView newview = NewWebThingView(); + + Plugins = new PluginManager(this); + Plugins.Load(); + Plugins.WebViewSetup(newview.WebView); + newview.WebView.GrabFocus(); + + Application.Run(); + } + + public void AttachWidget(Gtk.Widget widget, AttachPoint direction, AttachOptions xoptions, AttachOptions yoptions) { + switch(direction) { + case AttachPoint.N: + WidgetGrid.Attach(widget, 0, 3, 0, 1, xoptions, yoptions, 0, 0); + break; + case AttachPoint.E: + WidgetGrid.Attach(widget, 2, 3, 1, 2, xoptions, yoptions, 0, 0); + break; + case AttachPoint.S: + WidgetGrid.Attach(widget, 0, 3, 2, 3, xoptions, yoptions, 0, 0); + break; + case AttachPoint.W: + WidgetGrid.Attach(widget, 0, 1, 1, 2, xoptions, yoptions, 0, 0); + break; + case AttachPoint.Interior: + InteriorOverlay.Add(widget); + break; + } + } + + public void AttachWidget(Gtk.Widget widget, AttachPoint direction) { + AttachWidget(widget, direction, 0, 0); + } + + public WebView NewTab() { + WebThingView newview = NewWebThingView(); + Plugins.WebViewSetup(newview.WebView); + return newview.WebView; + } + + private WebThingView NewWebThingView() { + WebThingView newview = new WebThingView(); + Tabs.AppendPage(newview, new Label("Blank")); + newview.WebView.TitleChanged += delegate(object o, TitleChangedArgs e) { + Tabs.SetTabLabelText((Gtk.Widget) newview, e.Title); + if (newview == Tabs.CurrentPageWidget) + _Window.Title = e.Title + " - WebThing"; + }; + newview.Show(); + return newview; + } + + public void CloseTab() { + CloseTab(_Tabs.Page); + } + + public void CloseTab(int tab) { + if (_Tabs.NPages > 1) { + try { + WebThingView view = _Tabs.GetNthPage(tab) as WebThingView; + _Tabs.RemovePage(tab); + view.Dispose(); + } catch (ArgumentOutOfRangeException) { + } + } + } + + public string FixUri(string Uri) { + if (!Regex.IsMatch(Uri, @"://")) { + return String.Format("http://{0}", Uri); + } + return Uri; + } + + public void OpenUri(string Uri) { + wv.Open(FixUri(Uri)); + } + + public void OpenUriTab(string Uri) { + WebView view = NewTab(); + view.Open(FixUri(Uri)); + } + + public void Quit() { + // TODO: Create a way of shutting down plugins + Application.Quit(); + } + + private void Tabs_SwitchPage(object o, SwitchPageArgs e) { + Gtk.Widget page = _Tabs.GetNthPage((int)e.PageNum); + _Window.Title = _Tabs.GetTabLabelText(page) + " - WebThing"; + } + } }