コード例 #1
0
        public void OnHistoryNewEntry(nsIURI aNewURI)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            //if (b != null)
            //    b.OnHistoryNewEntry(aNewURI);
            throw new NotImplementedException();
        }
コード例 #2
0
        public void OnHistoryNewEntry(nsIURI aNewURI)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                b.OnHistoryNewEntry(aNewURI);
            }
        }
コード例 #3
0
        public bool OnHistoryPurge(int aNumEntries)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                return(b.OnHistoryPurge(aNumEntries));
            }
            else
            {
                return(false);
            }
        }
コード例 #4
0
        public bool OnHistoryGotoIndex(int aIndex, nsIURI aGotoURI)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                return(b.OnHistoryGotoIndex(aIndex, aGotoURI));
            }
            else
            {
                return(false);
            }
        }
コード例 #5
0
        public bool OnHistoryReload(nsIURI aReloadURI, uint aReloadFlags)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                return(b.OnHistoryReload(aReloadURI, aReloadFlags));
            }
            else
            {
                return(false);
            }
        }
コード例 #6
0
        public bool OnHistoryGoForward(nsIURI aForwardURI)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                return(b.OnHistoryGoForward(aForwardURI));
            }
            else
            {
                return(false);
            }
        }
コード例 #7
0
        public bool OnHistoryGoBack(nsIURI aBackURI)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                return(b.OnHistoryGoBack(aBackURI));
            }
            else
            {
                return(false);
            }
        }
コード例 #8
0
 public GeckoSHistoryListener(nsISHistoryListener p_broowser)
 {
     _weakBrowser = new System.WeakReference(p_broowser);
 }
コード例 #9
0
 public GeckoSHistoryListener(nsISHistoryListener p_broowser)
 {
     _weakBrowser = new System.WeakReference(p_broowser);
 }
コード例 #10
0
        public static nsISHistoryListener GetProxy(Mono.WebBrowser.IWebBrowser control, nsISHistoryListener obj)
        {
            object o = Base.GetProxyForObject(control, typeof(nsISHistoryListener).GUID, obj);

            return(o as nsISHistoryListener);
        }
コード例 #11
0
ファイル: nsISHistoryListener.cs プロジェクト: nlhepler/mono
		public static nsISHistoryListener GetProxy (Mono.WebBrowser.IWebBrowser control, nsISHistoryListener obj)
		{
			object o = Base.GetProxyForObject (control, typeof(nsISHistoryListener).GUID, obj);
			return o as nsISHistoryListener;
		}