1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
/*
* Copyright (C) 2005 Christian Persch
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#include "mozilla-config.h"
#include "config.h"
#include "GaleonFind.h"
#include "galeon-debug.h"
#undef MOZILLA_INTERNAL_API
#include <nsEmbedString.h>
#define MOZILLA_INTERNAL_API 1
#define MOZILLA_CLIENT
#include <gtkmozembed.h>
#include <gtkmozembed_internal.h>
#undef MOZILLA_CLIENT
#include <nsCOMPtr.h>
#include <nsIServiceManager.h>
#include <nsIInterfaceRequestorUtils.h>
#include <nsIDOMWindow.h>
#include <nsIWebBrowser.h>
#include <nsIWebBrowserFocus.h>
#include <nsIDOMNode.h>
#include <nsIDOMElement.h>
#include <nsIDOMDocument.h>
#include <nsIDOMDocumentView.h>
#include <nsIDOMAbstractView.h>
#include <nsIDOMDocumentEvent.h>
#include <nsIDOMEvent.h>
#include <nsIDOMKeyEvent.h>
#include <nsIDOMEventTarget.h>
#include <nsIDOMHTMLAnchorElement.h>
#ifdef HAVE_TYPEAHEADFIND
#include <nsISimpleEnumerator.h>
#include <nsIDocShell.h>
#include <nsIDocShellTreeItem.h>
#include <nsITypeAheadFind.h>
#include <nsISelectionDisplay.h>
#include <nsISelectionController.h>
#else
#include <nsIWebBrowserFind.h>
#include <nsMemory.h>
#endif
#include <glib.h>
#ifdef HAVE_TYPEAHEADFIND
#define NS_TYPEAHEADFIND_CONTRACTID "@mozilla.org/typeaheadfind;1"
#endif /* HAVE_TYPEAHEADFIND */
static const PRUnichar kKeyEvents[] = { 'K', 'e', 'y', 'E', 'v', 'e', 'n', 't', 's', '\0' };
static const PRUnichar kKeyPress[] = { 'k', 'e', 'y', 'p', 'r', 'e', 's', 's', '\0' };
GaleonFind::GaleonFind ()
: mCurrentEmbed(nsnull)
#ifdef HAVE_TYPEAHEADFIND
, mAttention(PR_FALSE)
#endif
{
LOG ("GaleonFind ctor [%p]", this);
}
GaleonFind::~GaleonFind ()
{
LOG ("GaleonFind dtor [%p]", this);
}
nsresult
GaleonFind::SetEmbed (GaleonEmbed *aEmbed)
{
nsresult rv = NS_OK;
if (aEmbed == mCurrentEmbed) return rv;
SetSelectionAttention (PR_FALSE);
mCurrentEmbed = nsnull;
mWebBrowser = nsnull;
rv = NS_ERROR_FAILURE;
gtk_moz_embed_get_nsIWebBrowser (GTK_MOZ_EMBED (aEmbed),
getter_AddRefs (mWebBrowser));
NS_ENSURE_TRUE (mWebBrowser, rv);
#ifdef HAVE_TYPEAHEADFIND
nsCOMPtr<nsIDocShell> docShell (do_GetInterface (mWebBrowser, &rv));
NS_ENSURE_SUCCESS (rv, rv);
if (!mFinder) {
mFinder = do_CreateInstance (NS_TYPEAHEADFIND_CONTRACTID, &rv);
NS_ENSURE_SUCCESS (rv, rv);
rv = mFinder->Init (docShell);
#ifdef HAVE_NSITYPEAHEADFIND_SETSELECTIONMODEANDREPAINT
mFinder->SetSelectionModeAndRepaint (nsISelectionController::SELECTION_ON);
#else
mFinder->SetFocusLinks (PR_TRUE);
#endif
} else {
rv = mFinder->SetDocShell (docShell);
}
NS_ENSURE_SUCCESS (rv, rv);
#else
PRUnichar *string = nsnull;
if (mFinder) {
mFinder->GetSearchString (&string);
}
mFinder = do_GetInterface (mWebBrowser, &rv);
NS_ENSURE_SUCCESS (rv, rv);
mFinder->SetWrapFind (PR_TRUE);
if (string) {
mFinder->SetSearchString (string);
nsMemory::Free (string);
}
#endif /* HAVE_TYPEAHEADFIND */
mCurrentEmbed = aEmbed;
return rv;
}
void
GaleonFind::SetFindProperties (const char *aSearchString,
PRBool aCaseSensitive)
{
if (!mFinder) return;
#ifdef HAVE_TYPEAHEADFIND
mFinder->SetCaseSensitive (aCaseSensitive);
/* search string is set on ::Find */
#else
mFinder->SetMatchCase (aCaseSensitive);
nsEmbedString uSearchString;
NS_CStringToUTF16 (nsEmbedCString (aSearchString ? aSearchString : ""),
NS_CSTRING_ENCODING_UTF8, uSearchString);
mFinder->SetSearchString (uSearchString.get ());
#endif /* TYPEAHEADFIND */
}
void
GaleonFind::SetSelectionAttention (PRBool aAttention)
{
#ifdef HAVE_TYPEAHEADFIND
if (aAttention && mAttention) return;
mAttention = aAttention;
PRInt16 display;
if (aAttention) {
display = nsISelectionController::SELECTION_ATTENTION;
} else {
display = nsISelectionController::SELECTION_ON;
}
#ifdef HAVE_NSITYPEAHEADFIND_SETSELECTIONMODEANDREPAINT
if (mFinder) {
mFinder->SetSelectionModeAndRepaint (display);
}
#else
nsresult rv;
nsCOMPtr<nsIDocShell> shell (do_GetInterface (mWebBrowser, &rv));
/* It's okay for this to fail, if the tab is closing, or if
* we weren't attached to any tab yet
*/
if (NS_FAILED (rv) || !shell) return;
nsCOMPtr<nsISimpleEnumerator> enumerator;
rv = shell->GetDocShellEnumerator (nsIDocShellTreeItem::typeContent,
nsIDocShell::ENUMERATE_FORWARDS,
getter_AddRefs (enumerator));
NS_ENSURE_SUCCESS (rv, );
PRBool hasMore = PR_FALSE;
while (NS_SUCCEEDED (enumerator->HasMoreElements (&hasMore)) && hasMore) {
nsCOMPtr<nsISupports> element;
nsCOMPtr<nsISelectionDisplay> sd;
enumerator->GetNext (getter_AddRefs (element));
if (!element) continue;
sd = do_GetInterface (element);
if (!sd) continue;
nsCOMPtr<nsISelectionController> controller (do_QueryInterface (sd));
if (!controller) continue;
controller->SetDisplaySelection (display);
}
#endif
#endif
}
GaleonEmbedFindResult
GaleonFind::Find (const char *aSearchString,
PRBool aLinksOnly)
{
if (!mFinder) return GALEON_EMBED_FIND_NOTFOUND;
nsEmbedString uSearchString;
NS_CStringToUTF16 (nsEmbedCString (aSearchString ? aSearchString : ""),
NS_CSTRING_ENCODING_UTF8, uSearchString);
#ifdef HAVE_TYPEAHEADFIND
SetSelectionAttention (PR_TRUE);
nsresult rv;
PRUint16 found = nsITypeAheadFind::FIND_NOTFOUND;
#ifdef HAVE_NSITYPEAHEADFIND_SETSELECTIONMODEANDREPAINT
rv = mFinder->Find (uSearchString, aLinksOnly, PR_FALSE, &found);
#else
rv = mFinder->Find (uSearchString, aLinksOnly, &found);
#endif
return (GaleonEmbedFindResult) found;
#else
mFinder->SetSearchString (uSearchString.get ());
mFinder->SetFindBackwards (PR_FALSE);
nsresult rv;
PRBool didFind = PR_FALSE;
rv = mFinder->FindNext (&didFind);
return NS_SUCCEEDED (rv) && didFind ? GALEON_EMBED_FIND_FOUND :
GALEON_EMBED_FIND_NOTFOUND;
#endif /* HAVE_TYPEAHEADFIND */
}
GaleonEmbedFindResult
GaleonFind::FindAgain (PRBool aForward)
{
if (!mFinder) return GALEON_EMBED_FIND_NOTFOUND;
#ifdef HAVE_TYPEAHEADFIND
SetSelectionAttention (PR_TRUE);
nsresult rv;
PRUint16 found = nsITypeAheadFind::FIND_NOTFOUND;
#ifdef HAVE_NSITYPEAHEADFIND_SETSELECTIONMODEANDREPAINT
if (aForward) {
#ifdef HAVE_NSITYPEAHEADFIND_FINDAGAIN
rv = mFinder->FindAgain(PR_FALSE, PR_FALSE, &found);
#else
rv = mFinder->FindNext (PR_FALSE, &found);
#endif
} else {
#ifdef HAVE_NSITYPEAHEADFIND_FINDAGAIN
rv = mFinder->FindAgain(PR_TRUE, PR_FALSE, &found);
#else
rv = mFinder->FindPrevious (PR_FALSE, &found);
#endif
}
#else
if (aForward) {
rv = mFinder->FindNext (&found);
} else {
rv = mFinder->FindPrevious (&found);
}
#endif
return (GaleonEmbedFindResult) found;
#else
mFinder->SetFindBackwards (!aForward);
nsresult rv;
PRBool didFind = PR_FALSE;
rv = mFinder->FindNext (&didFind);
return NS_SUCCEEDED (rv) && didFind ? GALEON_EMBED_FIND_FOUND :
GALEON_EMBED_FIND_NOTFOUND;
#endif /* HAVE_TYPEAHEADFIND */
}
PRBool
GaleonFind::ActivateLink (GdkModifierType aMask)
{
nsresult rv;
nsCOMPtr<nsIDOMElement> link;
#if defined(HAVE_TYPEAHEADFIND) && defined(HAVE_NSITYPEAHEADFIND_GETFOUNDLINK)
rv = mFinder->GetFoundLink (getter_AddRefs (link));
NS_ENSURE_TRUE (NS_SUCCEEDED (rv) && link, FALSE);
#else
nsCOMPtr<nsIWebBrowserFocus> focus (do_QueryInterface (mWebBrowser));
NS_ENSURE_TRUE (focus, FALSE);
rv = focus->GetFocusedElement (getter_AddRefs (link));
NS_ENSURE_TRUE (NS_SUCCEEDED (rv) && link, FALSE);
/* ensure this is really a link so we don't accidentally submit if we're on a button or so! */
nsCOMPtr<nsIDOMHTMLAnchorElement> anchor (do_QueryInterface (link));
if (!anchor) return FALSE;
#endif /* HAVE_TYPEAHEADFIND && HAVE_GECKO_1_8 */
nsCOMPtr<nsIDOMDocument> doc;
rv = link->GetOwnerDocument (getter_AddRefs (doc));
NS_ENSURE_TRUE (doc, FALSE);
nsCOMPtr<nsIDOMDocumentView> docView (do_QueryInterface (doc));
NS_ENSURE_TRUE (docView, FALSE);
nsCOMPtr<nsIDOMAbstractView> abstractView;
docView->GetDefaultView (getter_AddRefs (abstractView));
NS_ENSURE_TRUE (abstractView, FALSE);
nsCOMPtr<nsIDOMDocumentEvent> docEvent (do_QueryInterface (doc));
NS_ENSURE_TRUE (docEvent, FALSE);
nsCOMPtr<nsIDOMEvent> event;
rv = docEvent->CreateEvent (nsEmbedString(kKeyEvents), getter_AddRefs (event));
NS_ENSURE_SUCCESS (rv, FALSE);
nsCOMPtr<nsIDOMKeyEvent> keyEvent (do_QueryInterface (event));
NS_ENSURE_TRUE (keyEvent, FALSE);
rv = keyEvent->InitKeyEvent (nsEmbedString (kKeyPress),
PR_TRUE /* bubble */,
PR_TRUE /* cancelable */,
abstractView,
(aMask & GDK_CONTROL_MASK) != 0,
(aMask & GDK_MOD1_MASK) != 0 /* Alt */,
(aMask & GDK_SHIFT_MASK) != 0,
PR_FALSE /* Meta */,
nsIDOMKeyEvent::DOM_VK_RETURN,
0);
NS_ENSURE_SUCCESS (rv, FALSE);
nsCOMPtr<nsIDOMEventTarget> target (do_QueryInterface (link));
NS_ENSURE_TRUE (target, FALSE);
PRBool defaultPrevented = PR_FALSE;
rv = target->DispatchEvent (event, &defaultPrevented);
return NS_SUCCEEDED (rv) && defaultPrevented;
}
|