1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
23 * David Epstein <depstein@netscape.com>
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
42 #include "BrowserImpl.h"
43 #include "IBrowserFrameGlue.h"
45 #include "TestEmbed.h"
46 #include "BrowserView.h"
47 #include "BrowserFrm.h"
51 //*****************************************************************************
52 // CBrowserImpl::nsIHistoryListener Implementation
53 //*****************************************************************************
55 // - Implements browser history listener methods. Activated through various events
56 // (i.e. forward, back, reload)
58 // - Calls methods via the IBrowserFrameGlue interace
59 // (available thru' the m_pBrowserFrameGlue member var)
60 // to do the actual statusbar/progress bar updates.
66 //*****************************************************************************
67 // CBrowserImpl::nsISHistoryListener methods
68 //*****************************************************************************
70 NS_IMETHODIMP
CBrowserImpl::OnHistoryNewEntry(nsIURI
*theURI
)
72 QAOutput("nsIHistoryListener::OnHistoryNewEntry()", 2);
78 NS_IMETHODIMP
CBrowserImpl::OnHistoryGoBack(nsIURI
*theURI
, PRBool
*notify
)
80 QAOutput("nsIHistoryListener::OnHistoryGoBack()", 2);
84 FormatAndPrintOutput("OnHistoryGoBack() notification = ", *notify
, 1);
89 NS_IMETHODIMP
CBrowserImpl::OnHistoryGoForward(nsIURI
*theURI
, PRBool
*notify
)
91 QAOutput("nsIHistoryListener::OnHistoryGoForward()", 2);
95 FormatAndPrintOutput("OnHistoryGoForward() notification = ", *notify
, 1);
100 NS_IMETHODIMP
CBrowserImpl::OnHistoryReload(nsIURI
*theURI
, PRUint32 reloadFlags
, PRBool
*notify
)
102 char flagString
[200];
104 QAOutput("nsIHistoryListener::OnHistoryReload()", 2);
106 GetTheURI(theURI
, 1);
108 FormatAndPrintOutput("OnHistoryReload() notification = ", *notify
, 1);
110 if (reloadFlags
== 0x0000)
111 strcpy(flagString
, "LOAD_FLAGS_NONE");
112 else if (reloadFlags
== 0x0010)
113 strcpy(flagString
, "LOAD_FLAGS_IS_REFRESH");
114 else if (reloadFlags
== 0x0020)
115 strcpy(flagString
, "LOAD_FLAGS_IS_LINK");
116 else if (reloadFlags
== 0x0040)
117 strcpy(flagString
, "LOAD_FLAGS_BYPASS_HISTORY");
118 else if (reloadFlags
== 0x0080)
119 strcpy(flagString
, "LOAD_FLAGS_REPLACE_HISTORY");
120 else if (reloadFlags
== 0x0100)
121 strcpy(flagString
, "LOAD_FLAGS_BYPASS_CACHE");
122 else if (reloadFlags
== 0x0200)
123 strcpy(flagString
, "LOAD_FLAGS_BYPASS_PROXY");
124 else if (reloadFlags
== 0x0400)
125 strcpy(flagString
, "LOAD_FLAGS_CHARSET_CHANGE");
126 else if (reloadFlags
== (0x0100 | 0x0200))
127 strcpy(flagString
, "LOAD_FLAGS_BYPASS_CACHE | LOAD_FLAGS_BYPASS_PROXY");
129 FormatAndPrintOutput("OnHistoryReload() flag value = ", reloadFlags
, 1);
130 FormatAndPrintOutput("OnHistoryReload() flag string = ", flagString
, 2);
135 NS_IMETHODIMP
CBrowserImpl::OnHistoryGotoIndex(PRInt32 theIndex
, nsIURI
*theURI
, PRBool
*notify
)
137 QAOutput("nsIHistoryListener::OnHistoryGotoIndex()", 2);
139 GetTheURI(theURI
, 1);
141 FormatAndPrintOutput("OnHistoryGotoIndex() notification = ", *notify
, 1);
143 FormatAndPrintOutput("OnHistoryGotoIndex() index = ", theIndex
, 2);
148 NS_IMETHODIMP
CBrowserImpl::OnHistoryPurge(PRInt32 theNumEntries
, PRBool
*notify
)
150 QAOutput("nsIHistoryListener::OnHistoryPurge()", 2);
153 FormatAndPrintOutput("OnHistoryPurge() notification = ", *notify
, 1);
155 FormatAndPrintOutput("OnHistoryPurge() theNumEntries = ", theNumEntries
, 2);