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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
|
/*
* Copyright (C) 2009, 2010, 2011, 2012 Research In Motion Limited. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef WebPage_h
#define WebPage_h
#include "BlackBerryGlobal.h"
#include "JavaScriptVariant.h"
#include <BlackBerryPlatformGuardedPointer.h>
#include <BlackBerryPlatformInputEvents.h>
#include <BlackBerryPlatformString.h>
#include <BlackBerryPlatformWebContext.h>
#include <JavaScriptCore/JSBase.h>
#include <imf/input_data.h>
#include <network/NetworkRequest.h>
#include <string>
#include <vector>
namespace WebCore {
class ChromeClientBlackBerry;
class Frame;
class FrameLoaderClientBlackBerry;
}
class WebDOMDocument;
class WebDOMNode;
template<typename T> class SharedArray;
namespace BlackBerry {
namespace Platform {
class FloatPoint;
class IntPoint;
class IntRect;
class IntSize;
class KeyboardEvent;
class MouseEvent;
class TouchEvent;
class TouchPoint;
class ViewportAccessor;
}
namespace WebKit {
class BackingStore;
class BackingStoreClient;
class BackingStorePrivate;
class InRegionScroller;
class PagePopup;
class RenderQueue;
class WebCookieJar;
class WebOverlay;
class WebPageClient;
class WebPageCompositor;
class WebPageGroupLoadDeferrer;
class WebPagePrivate;
class WebSettings;
class WebTapHighlight;
class WebViewportArguments;
enum JavaScriptDataType { JSUndefined = 0, JSNull, JSBoolean, JSNumber, JSString, JSObject, JSException, JSDataTypeMax };
enum SelectionExpansionType { Word = 0, Sentence, Paragraph, NextParagraph };
enum ActivationStateType { ActivationActive, ActivationInactive, ActivationStandby };
enum TargetDetectionStrategy {PointBased, RectBased, FocusBased};
class BLACKBERRY_EXPORT WebPage : public Platform::GuardedPointerBase {
public:
WebPage(WebPageClient*, const BlackBerry::Platform::String& pageGroupName, const Platform::IntRect&);
void destroy();
WebPageClient* client() const;
void loadFile(const BlackBerry::Platform::String& path, const BlackBerry::Platform::String& overrideContentType = BlackBerry::Platform::String::emptyString());
void loadString(const BlackBerry::Platform::String&, const BlackBerry::Platform::String& baseURL, const BlackBerry::Platform::String& contentType = BlackBerry::Platform::String::fromAscii("text/html"), const BlackBerry::Platform::String& failingURL = BlackBerry::Platform::String::emptyString());
void load(const Platform::NetworkRequest&, bool needReferer = false);
bool executeJavaScript(const BlackBerry::Platform::String& script, JavaScriptDataType& returnType, BlackBerry::Platform::String& returnValue);
// This will execute the script even if in-page JavaScript is disabled.
bool executeJavaScriptInIsolatedWorld(const BlackBerry::Platform::String& script, JavaScriptDataType& returnType, BlackBerry::Platform::String& returnValue);
// Takes a UTF16 encoded script that is used explicitly by the pattern matching code
bool executeJavaScriptInIsolatedWorld(const std::wstring& script, JavaScriptDataType& returnType, BlackBerry::Platform::String& returnValue);
void executeJavaScriptFunction(const std::vector<BlackBerry::Platform::String> &function, const std::vector<JavaScriptVariant> &args, JavaScriptVariant& returnValue);
void initializeIconDataBase();
void stopLoading();
bool dispatchBeforeUnloadEvent();
// This will force any unload handlers to run.
void prepareToDestroy();
void enableCrossSiteXHR();
void addOriginAccessWhitelistEntry(const BlackBerry::Platform::String& sourceOrigin, const BlackBerry::Platform::String& destinationOrigin, bool allowDestinationSubdomains);
void removeOriginAccessWhitelistEntry(const BlackBerry::Platform::String& sourceOrigin, const BlackBerry::Platform::String& destinationOrigin, bool allowDestinationSubdomains);
void reload();
void reloadFromCache();
WebSettings* settings() const;
WebCookieJar* cookieJar() const;
bool isLoading() const;
void setVisible(bool);
bool isVisible() const;
void setScreenOrientation(int);
void applyPendingOrientationIfNeeded();
Platform::ViewportAccessor* webkitThreadViewportAccessor() const;
// Returns the size of the visual viewport.
Platform::IntSize viewportSize() const;
// Sets the sizes of the visual viewport and the layout viewport.
void setViewportSize(const Platform::IntSize& viewportSize, const Platform::IntSize& defaultLayoutSize, bool ensureFocusElementVisible = true);
void resetVirtualViewportOnCommitted(bool reset);
void setVirtualViewportSize(const Platform::IntSize&);
// Returns the size of the layout viewport.
Platform::IntSize defaultLayoutSize() const;
// Set the size of the layout viewport, in document coordinates, independently of the visual viewport.
void setDefaultLayoutSize(const Platform::IntSize&);
bool mouseEvent(const Platform::MouseEvent&, bool* wheelDeltaAccepted = 0);
// Handles native javascript touch events.
bool touchEvent(const Platform::TouchEvent&);
// For conversion to mouse events.
void touchEventCancel();
void touchPointAsMouseEvent(const Platform::TouchPoint&, unsigned modifiers = 0);
void playSoundIfAnchorIsTarget() const;
// Returns true if the key stroke was handled by WebKit.
bool keyEvent(const Platform::KeyboardEvent&);
BlackBerry::Platform::String title() const;
BlackBerry::Platform::String selectedText() const;
BlackBerry::Platform::String cutSelectedText();
void insertText(const BlackBerry::Platform::String&);
void clearCurrentInputField();
void cut();
void copy();
void paste();
void selectAll();
// Text encoding.
BlackBerry::Platform::String textEncoding();
BlackBerry::Platform::String forcedTextEncoding();
void setForcedTextEncoding(const BlackBerry::Platform::String&);
// Scroll position provided should be in document coordinates.
// Use webkitThreadViewportAccessor() to retrieve the scroll position.
void setDocumentScrollPosition(const Platform::IntPoint&);
void notifyInRegionScrollStopped();
void setDocumentScrollOriginPoint(const Platform::IntPoint&);
BackingStore* backingStore() const;
InRegionScroller* inRegionScroller() const;
bool blockZoom(const Platform::IntPoint& documentTargetPoint);
void zoomAnimationFinished(double finalScale, const Platform::FloatPoint& finalDocumentScrollPosition, bool shouldConstrainScrollingToContentEdge);
void resetBlockZoom();
bool isAtInitialZoom() const;
bool isMaxZoomed() const;
bool isMinZoomed() const;
bool pinchZoomAboutPoint(double scale, const Platform::FloatPoint& documentFocalPoint);
bool isUserScalable() const;
void setUserScalable(bool);
double currentScale() const;
double initialScale() const;
double zoomToFitScale() const;
void setInitialScale(double);
double minimumScale() const;
void setMinimumScale(double);
double maximumScale() const;
void setMaximumScale(double);
void assignFocus(Platform::FocusDirection);
void setFocused(bool);
void focusNextField();
void focusPreviousField();
void submitForm();
void clearBrowsingData();
void clearHistory();
void clearCookies();
void clearCache();
void clearLocalStorage();
void clearCredentials();
void clearAutofillData();
void clearNeverRememberSites();
void clearWebFileSystem();
void runLayoutTests();
// Find the next utf8 string in the given direction.
// Case sensitivity, wrapping, and highlighting all matches are also toggleable.
bool findNextString(const char*, bool forward, bool caseSensitive, bool wrap, bool highlightAllMatches, bool selectActiveMatchOnClear);
JSGlobalContextRef globalContext() const;
unsigned timeoutForJavaScriptExecution() const;
void setTimeoutForJavaScriptExecution(unsigned ms);
void setCaretHighlightStyle(Platform::CaretHighlightStyle);
// IMF functions.
bool setBatchEditingActive(bool);
bool setInputSelection(unsigned start, unsigned end);
int inputCaretPosition() const;
bool deleteTextRelativeToCursor(unsigned leftOffset, unsigned rightOffset);
spannable_string_t* selectedText(int32_t flags);
spannable_string_t* textBeforeCursor(int32_t length, int32_t flags);
spannable_string_t* textAfterCursor(int32_t length, int32_t flags);
extracted_text_t* extractedTextRequest(extracted_text_request_t*, int32_t flags);
int32_t setComposingRegion(int32_t start, int32_t end);
int32_t finishComposition();
int32_t setComposingText(spannable_string_t*, int32_t relativeCursorPosition);
int32_t commitText(spannable_string_t*, int32_t relativeCursorPosition);
void setSpellCheckingEnabled(bool);
void spellCheckingRequestProcessed(int32_t transactionId, spannable_string_t*);
bool isInputMode() const;
void setDocumentSelection(const Platform::IntPoint& documentStartPoint, const Platform::IntPoint& documentEndPoint);
void setDocumentCaretPosition(const Platform::IntPoint&);
void selectAtDocumentPoint(const Platform::IntPoint&, SelectionExpansionType = Word);
void expandSelection(bool isScrollStarted);
void setOverlayExpansionPixelHeight(int);
void setParagraphExpansionPixelScrollMargin(const Platform::IntSize&);
void setSelectionDocumentViewportSize(const Platform::IntSize&);
void selectionCancelled();
bool selectionContainsDocumentPoint(const Platform::IntPoint&);
void popupListClosed(int size, const bool* selecteds);
void popupListClosed(int index);
void setDateTimeInput(const BlackBerry::Platform::String& value);
void setColorInput(const BlackBerry::Platform::String& value);
static void onNetworkAvailabilityChanged(bool available);
static void onCertificateStoreLocationSet(const BlackBerry::Platform::String& caPath);
BlackBerry::Platform::String textHasAttribute(const BlackBerry::Platform::String& query) const;
Platform::WebContext webContext(TargetDetectionStrategy) const;
typedef intptr_t BackForwardId;
struct BackForwardEntry {
BlackBerry::Platform::String url;
BlackBerry::Platform::String originalUrl;
BlackBerry::Platform::String title;
BlackBerry::Platform::String networkToken;
BackForwardId id;
bool lastVisitWasHTTPNonGet;
};
bool canGoBackOrForward(int delta) const;
// Returns false if there is no page for the given delta (eg.
// attempt to go back with -1 when on the first page).
bool goBackOrForward(int delta);
void goToBackForwardEntry(BackForwardId);
int backForwardListLength() const;
void getBackForwardList(SharedArray<BackForwardEntry>& result) const;
void releaseBackForwardEntry(BackForwardId) const;
void clearBackForwardList(bool keepCurrentPage) const;
void addVisitedLink(const unsigned short* url, unsigned length);
bool defersLoading() const;
bool isEnableLocalAccessToAllCookies() const;
void setEnableLocalAccessToAllCookies(bool);
void enableDNSPrefetch();
void disableDNSPrefetch();
bool isDNSPrefetchEnabled() const;
void enableWebInspector();
void disableWebInspector();
bool isWebInspectorEnabled();
void enablePasswordEcho();
void disablePasswordEcho();
void dispatchInspectorMessage(const BlackBerry::Platform::String& message);
void inspectCurrentContextElement();
Platform::IntPoint adjustDocumentScrollPosition(const Platform::IntPoint& documentScrollPosition, const Platform::IntRect& documentPaddingRect);
Platform::IntSize fixedElementSizeDelta();
// FIXME: Needs API review on this header. See PR #120402.
void notifyPagePause();
void notifyPageResume();
void notifyPageBackground();
void notifyPageForeground();
void notifyPageFullScreenAllowed();
void notifyPageFullScreenExit();
void notifyDeviceIdleStateChange(bool enterIdle);
void notifyAppActivationStateChange(ActivationStateType);
void notifySwipeEvent();
void notifyScreenPowerStateChanged(bool powered);
void notifyFullScreenVideoExited(bool done);
void clearPluginSiteData();
void setExtraPluginDirectory(const BlackBerry::Platform::String& path);
void updateDisabledPluginFiles(const BlackBerry::Platform::String& fileName, bool disabled);
void setJavaScriptCanAccessClipboard(bool);
bool isWebGLEnabled() const;
void setWebGLEnabled(bool);
void destroyWebPageCompositor();
void setUserViewportArguments(const WebViewportArguments&);
void resetUserViewportArguments();
WebTapHighlight* tapHighlight() const;
WebTapHighlight* selectionHighlight() const;
// Adds an overlay that can be modified on the WebKit thread, and
// whose attributes can be overridden on the compositing thread.
void addOverlay(WebOverlay*);
void removeOverlay(WebOverlay*);
// Adds an overlay that can only be modified on the compositing thread.
void addCompositingThreadOverlay(WebOverlay*);
void removeCompositingThreadOverlay(WebOverlay*);
// Popup client
void initPopupWebView(BlackBerry::WebKit::WebPage*);
void autofillTextField(const BlackBerry::Platform::String&);
BlackBerry::Platform::String renderTreeAsText();
void updateNotificationPermission(const BlackBerry::Platform::String& requestId, bool allowed);
void notificationClicked(const BlackBerry::Platform::String& notificationId);
void notificationClosed(const BlackBerry::Platform::String& notificationId);
void notificationError(const BlackBerry::Platform::String& notificationId);
void notificationShown(const BlackBerry::Platform::String& notificationId);
void animateToScaleAndDocumentScrollPosition(double destinationZoomScale, const BlackBerry::Platform::FloatPoint& destinationScrollPosition, bool shouldConstrainScrollingToContentEdge = true);
bool isProcessingUserGesture() const;
void setShowDebugBorders(bool);
private:
virtual ~WebPage();
friend class WebKit::BackingStore;
friend class WebKit::BackingStoreClient;
friend class WebKit::BackingStorePrivate;
friend class WebKit::PagePopup;
friend class WebKit::RenderQueue;
friend class WebKit::WebPageCompositor;
friend class WebKit::WebPageGroupLoadDeferrer;
friend class WebKit::WebPagePrivate;
friend class WebCore::ChromeClientBlackBerry;
friend class WebCore::FrameLoaderClientBlackBerry;
WebPagePrivate* d;
};
}
}
#endif // WebPage_h
|