1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef PDF_PDFIUM_PDFIUM_ENGINE_H_
6 #define PDF_PDFIUM_PDFIUM_ENGINE_H_
13 #include "base/memory/scoped_ptr.h"
14 #include "base/time/time.h"
15 #include "pdf/document_loader.h"
16 #include "pdf/pdf_engine.h"
17 #include "pdf/pdfium/pdfium_page.h"
18 #include "pdf/pdfium/pdfium_range.h"
19 #include "ppapi/cpp/completion_callback.h"
20 #include "ppapi/cpp/dev/buffer_dev.h"
21 #include "ppapi/cpp/image_data.h"
22 #include "ppapi/cpp/point.h"
23 #include "ppapi/cpp/var_array.h"
24 #include "third_party/pdfium/public/fpdf_dataavail.h"
25 #include "third_party/pdfium/public/fpdf_formfill.h"
26 #include "third_party/pdfium/public/fpdf_progressive.h"
27 #include "third_party/pdfium/public/fpdfview.h"
30 class KeyboardInputEvent
;
31 class MouseInputEvent
;
35 namespace chrome_pdf
{
39 class PDFiumEngine
: public PDFEngine
,
40 public DocumentLoader::Client
,
41 public FPDF_FORMFILLINFO
,
42 public IPDF_JSPLATFORM
,
45 explicit PDFiumEngine(PDFEngine::Client
* client
);
46 virtual ~PDFiumEngine();
48 // PDFEngine implementation.
49 virtual bool New(const char* url
, const char* headers
);
50 virtual void PageOffsetUpdated(const pp::Point
& page_offset
);
51 virtual void PluginSizeUpdated(const pp::Size
& size
);
52 virtual void ScrolledToXPosition(int position
);
53 virtual void ScrolledToYPosition(int position
);
54 virtual void PrePaint();
55 virtual void Paint(const pp::Rect
& rect
,
56 pp::ImageData
* image_data
,
57 std::vector
<pp::Rect
>* ready
,
58 std::vector
<pp::Rect
>* pending
);
59 virtual void PostPaint();
60 virtual bool HandleDocumentLoad(const pp::URLLoader
& loader
);
61 virtual bool HandleEvent(const pp::InputEvent
& event
);
62 virtual uint32_t QuerySupportedPrintOutputFormats();
63 virtual void PrintBegin();
64 virtual pp::Resource
PrintPages(
65 const PP_PrintPageNumberRange_Dev
* page_ranges
,
66 uint32_t page_range_count
,
67 const PP_PrintSettings_Dev
& print_settings
);
68 virtual void PrintEnd();
69 virtual void StartFind(const char* text
, bool case_sensitive
);
70 virtual bool SelectFindResult(bool forward
);
71 virtual void StopFind();
72 virtual void ZoomUpdated(double new_zoom_level
);
73 virtual void RotateClockwise();
74 virtual void RotateCounterclockwise();
75 virtual std::string
GetSelectedText();
76 virtual std::string
GetLinkAtPosition(const pp::Point
& point
);
77 virtual bool IsSelecting();
78 virtual bool HasPermission(DocumentPermission permission
) const;
79 virtual void SelectAll();
80 virtual int GetNumberOfPages();
81 virtual pp::VarArray
GetBookmarks();
82 virtual int GetNamedDestinationPage(const std::string
& destination
);
83 virtual int GetFirstVisiblePage();
84 virtual int GetMostVisiblePage();
85 virtual pp::Rect
GetPageRect(int index
);
86 virtual pp::Rect
GetPageContentsRect(int index
);
87 virtual pp::Rect
GetPageScreenRect(int page_index
) const;
88 virtual int GetVerticalScrollbarYPosition() { return position_
.y(); }
89 virtual void PaintThumbnail(pp::ImageData
* image_data
, int index
);
90 virtual void SetGrayscale(bool grayscale
);
91 virtual void OnCallback(int id
);
92 virtual std::string
GetPageAsJSON(int index
);
93 virtual bool GetPrintScaling();
94 virtual int GetCopiesToPrint();
95 virtual int GetDuplexType();
96 virtual bool GetPageSizeAndUniformity(pp::Size
* size
);
97 virtual void AppendBlankPages(int num_pages
);
98 virtual void AppendPage(PDFEngine
* engine
, int index
);
99 virtual pp::Point
GetScrollPosition();
100 virtual void SetScrollPosition(const pp::Point
& position
);
101 virtual bool IsProgressiveLoad();
102 virtual std::string
GetMetadata(const std::string
& key
);
104 // DocumentLoader::Client implementation.
105 virtual pp::Instance
* GetPluginInstance();
106 virtual pp::URLLoader
CreateURLLoader();
107 virtual void OnPartialDocumentLoaded();
108 virtual void OnPendingRequestComplete();
109 virtual void OnNewDataAvailable();
110 virtual void OnDocumentComplete();
112 void UnsupportedFeature(int type
);
114 std::string
current_find_text() const { return current_find_text_
; }
116 FPDF_DOCUMENT
doc() { return doc_
; }
117 FPDF_FORMHANDLE
form() { return form_
; }
120 // This helper class is used to detect the difference in selection between
121 // construction and destruction. At destruction, it invalidates all the
122 // parts that are newly selected, along with all the parts that used to be
123 // selected but are not anymore.
124 class SelectionChangeInvalidator
{
126 explicit SelectionChangeInvalidator(PDFiumEngine
* engine
);
127 ~SelectionChangeInvalidator();
129 // Sets the given container to the all the currently visible selection
130 // rectangles, in screen coordinates.
131 void GetVisibleSelectionsScreenRects(std::vector
<pp::Rect
>* rects
);
133 PDFiumEngine
* engine_
;
134 // Screen rectangles that were selected on construction.
135 std::vector
<pp::Rect
> old_selections_
;
136 // The origin at the time this object was constructed.
137 pp::Point previous_origin_
;
140 // Used to store mouse down state to handle it in other mouse event handlers.
141 class MouseDownState
{
143 MouseDownState(const PDFiumPage::Area
& area
,
144 const PDFiumPage::LinkTarget
& target
);
147 void Set(const PDFiumPage::Area
& area
,
148 const PDFiumPage::LinkTarget
& target
);
150 bool Matches(const PDFiumPage::Area
& area
,
151 const PDFiumPage::LinkTarget
& target
) const;
154 PDFiumPage::Area area_
;
155 PDFiumPage::LinkTarget target_
;
157 DISALLOW_COPY_AND_ASSIGN(MouseDownState
);
160 // Used to store the state of a text search.
161 class FindTextIndex
{
166 bool valid() const { return valid_
; }
169 size_t GetIndex() const;
170 void SetIndex(size_t index
);
171 size_t IncrementIndex();
174 bool valid_
; // Whether |index_| is valid or not.
175 size_t index_
; // The current search result, 0-based.
177 DISALLOW_COPY_AND_ASSIGN(FindTextIndex
);
180 friend class SelectionChangeInvalidator
;
182 struct FileAvail
: public FX_FILEAVAIL
{
183 DocumentLoader
* loader
;
186 struct DownloadHints
: public FX_DOWNLOADHINTS
{
187 DocumentLoader
* loader
;
190 // PDFium interface to get block of data.
191 static int GetBlock(void* param
, unsigned long position
,
192 unsigned char* buffer
, unsigned long size
);
194 // PDFium interface to check is block of data is available.
195 static FPDF_BOOL
IsDataAvail(FX_FILEAVAIL
* param
,
196 size_t offset
, size_t size
);
198 // PDFium interface to request download of the block of data.
199 static void AddSegment(FX_DOWNLOADHINTS
* param
,
200 size_t offset
, size_t size
);
202 // We finished getting the pdf file, so load it. This will complete
203 // asynchronously (due to password fetching) and may be run multiple times.
206 // Try loading the document. Returns true if the document is successfully
207 // loaded or is already loaded otherwise it will return false. If
208 // |with_password| is set to true, the document will be loaded with
209 // |password|. If the document could not be loaded and needs a password,
210 // |needs_password| will be set to true.
211 bool TryLoadingDoc(bool with_password
,
212 const std::string
& password
,
213 bool* needs_password
);
215 // Ask the user for the document password and then continue loading the
217 void GetPasswordAndLoad();
219 // Called when the password has been retrieved.
220 void OnGetPasswordComplete(int32_t result
,
221 const pp::Var
& password
);
223 // Continues loading the document when the password has been retrieved, or if
224 // there is no password.
225 void ContinueLoadingDocument(bool has_password
,
226 const std::string
& password
);
228 // Finish loading the document and notify the client that the document has
229 // been loaded. This should only be run after |doc_| has been loaded and the
230 // document is fully downloaded. If this has been run once, it will result in
232 void FinishLoadingDocument();
234 // Loads information about the pages in the document and calculate the
236 void LoadPageInfo(bool reload
);
238 // Calculate which pages should be displayed right now.
239 void CalculateVisiblePages();
241 // Returns true iff the given page index is visible. CalculateVisiblePages
242 // must have been called first.
243 bool IsPageVisible(int index
) const;
245 // Checks if a page is now available, and if so marks it as such and returns
246 // true. Otherwise, it will return false and will add the index to the given
247 // array if it's not already there.
248 bool CheckPageAvailable(int index
, std::vector
<int>* pending
);
250 // Helper function to get a given page's size in pixels. This is not part of
251 // PDFiumPage because we might not have that structure when we need this.
252 pp::Size
GetPageSize(int index
);
254 void GetAllScreenRectsUnion(std::vector
<PDFiumRange
>* rect_range
,
255 const pp::Point
& offset_point
,
256 std::vector
<pp::Rect
>* rect_vector
);
258 void UpdateTickMarks();
260 // Called to continue searching so we don't block the main thread.
261 void ContinueFind(int32_t result
);
263 // Inserts a find result into find_results_, which is sorted.
264 void AddFindResult(const PDFiumRange
& result
);
266 // Search a page using PDFium's methods. Doesn't work with unicode. This
267 // function is just kept arount in case PDFium code is fixed.
268 void SearchUsingPDFium(const base::string16
& term
,
271 int character_to_start_searching_from
,
274 // Search a page ourself using ICU.
275 void SearchUsingICU(const base::string16
& term
,
278 int character_to_start_searching_from
,
281 // Input event handlers.
282 bool OnMouseDown(const pp::MouseInputEvent
& event
);
283 bool OnMouseUp(const pp::MouseInputEvent
& event
);
284 bool OnMouseMove(const pp::MouseInputEvent
& event
);
285 bool OnKeyDown(const pp::KeyboardInputEvent
& event
);
286 bool OnKeyUp(const pp::KeyboardInputEvent
& event
);
287 bool OnChar(const pp::KeyboardInputEvent
& event
);
289 FPDF_DOCUMENT
CreateSinglePageRasterPdf(
290 double source_page_width
,
291 double source_page_height
,
292 const PP_PrintSettings_Dev
& print_settings
,
293 PDFiumPage
* page_to_print
);
295 pp::Buffer_Dev
PrintPagesAsRasterPDF(
296 const PP_PrintPageNumberRange_Dev
* page_ranges
,
297 uint32_t page_range_count
,
298 const PP_PrintSettings_Dev
& print_settings
);
300 pp::Buffer_Dev
PrintPagesAsPDF(const PP_PrintPageNumberRange_Dev
* page_ranges
,
301 uint32_t page_range_count
,
302 const PP_PrintSettings_Dev
& print_settings
);
304 pp::Buffer_Dev
GetFlattenedPrintData(const FPDF_DOCUMENT
& doc
);
305 void FitContentsToPrintableAreaIfRequired(
306 const FPDF_DOCUMENT
& doc
,
307 const PP_PrintSettings_Dev
& print_settings
);
308 void SaveSelectedFormForPrint();
310 // Given a mouse event, returns which page and character location it's closest
312 PDFiumPage::Area
GetCharIndex(const pp::MouseInputEvent
& event
,
316 PDFiumPage::LinkTarget
* target
);
317 PDFiumPage::Area
GetCharIndex(const pp::Point
& point
,
321 PDFiumPage::LinkTarget
* target
);
323 void OnSingleClick(int page_index
, int char_index
);
324 void OnMultipleClick(int click_count
, int page_index
, int char_index
);
326 // Starts a progressive paint operation given a rectangle in screen
327 // coordinates. Returns the index in progressive_rects_.
328 int StartPaint(int page_index
, const pp::Rect
& dirty
);
330 // Continues a paint operation that was started earlier. Returns true if the
331 // paint is done, or false if it needs to be continued.
332 bool ContinuePaint(int progressive_index
, pp::ImageData
* image_data
);
334 // Called once PDFium is finished rendering a page so that we draw our
335 // borders, highlighting etc.
336 void FinishPaint(int progressive_index
, pp::ImageData
* image_data
);
338 // Stops any paints that are in progress.
341 // Invalidates all pages. Use this when some global parameter, such as page
342 // orientation, has changed.
343 void InvalidateAllPages();
345 // If the page is narrower than the document size, paint the extra space
346 // with the page background.
347 void FillPageSides(int progressive_index
);
349 void PaintPageShadow(int progressive_index
, pp::ImageData
* image_data
);
351 // Highlight visible find results and selections.
352 void DrawSelections(int progressive_index
, pp::ImageData
* image_data
);
354 // Paints an page that hasn't finished downloading.
355 void PaintUnavailablePage(int page_index
,
356 const pp::Rect
& dirty
,
357 pp::ImageData
* image_data
);
359 // Given a page index, returns the corresponding index in progressive_rects_,
360 // or -1 if it doesn't exist.
361 int GetProgressiveIndex(int page_index
) const;
363 // Creates a FPDF_BITMAP from a rectangle in screen coordinates.
364 FPDF_BITMAP
CreateBitmap(const pp::Rect
& rect
,
365 pp::ImageData
* image_data
) const;
367 // Given a rectangle in screen coordinates, returns the coordinates in the
368 // units that PDFium rendering functions expect.
369 void GetPDFiumRect(int page_index
, const pp::Rect
& rect
, int* start_x
,
370 int* start_y
, int* size_x
, int* size_y
) const;
372 // Returns the rendering flags to pass to PDFium.
373 int GetRenderingFlags() const;
375 // Returns the currently visible rectangle in document coordinates.
376 pp::Rect
GetVisibleRect() const;
378 // Given a rectangle in document coordinates, returns the rectange into screen
379 // coordinates (i.e. 0,0 is top left corner of plugin area). If it's not
380 // visible, an empty rectangle is returned.
381 pp::Rect
GetScreenRect(const pp::Rect
& rect
) const;
383 // Highlights the given rectangle.
384 void Highlight(void* buffer
,
386 const pp::Rect
& rect
,
387 std::vector
<pp::Rect
>* highlighted_rects
);
389 // Helper function to convert a device to page coordinates. If the page is
390 // not yet loaded, page_x and page_y will be set to 0.
391 void DeviceToPage(int page_index
,
397 // Helper function to get the index of a given FPDF_PAGE. Returns -1 if not
399 int GetVisiblePageIndex(FPDF_PAGE page
);
401 // Helper function to change the current page, running page open/close
402 // triggers as necessary.
403 void SetCurrentPage(int index
);
405 // Transform |page| contents to fit in the selected printer paper size.
406 void TransformPDFPageForPrinting(FPDF_PAGE page
,
407 const PP_PrintSettings_Dev
& print_settings
);
409 void DrawPageShadow(const pp::Rect
& page_rect
,
410 const pp::Rect
& shadow_rect
,
411 const pp::Rect
& clip_rect
,
412 pp::ImageData
* image_data
);
414 void GetRegion(const pp::Point
& location
,
415 pp::ImageData
* image_data
,
419 // Called when the selection changes.
420 void OnSelectionChanged();
422 // Common code shared by RotateClockwise() and RotateCounterclockwise().
423 void RotateInternal();
425 // Setting selection status of document.
426 void SetSelecting(bool selecting
);
428 // FPDF_FORMFILLINFO callbacks.
429 static void Form_Invalidate(FPDF_FORMFILLINFO
* param
,
435 static void Form_OutputSelectedRect(FPDF_FORMFILLINFO
* param
,
441 static void Form_SetCursor(FPDF_FORMFILLINFO
* param
, int cursor_type
);
442 static int Form_SetTimer(FPDF_FORMFILLINFO
* param
,
444 TimerCallback timer_func
);
445 static void Form_KillTimer(FPDF_FORMFILLINFO
* param
, int timer_id
);
446 static FPDF_SYSTEMTIME
Form_GetLocalTime(FPDF_FORMFILLINFO
* param
);
447 static void Form_OnChange(FPDF_FORMFILLINFO
* param
);
448 static FPDF_PAGE
Form_GetPage(FPDF_FORMFILLINFO
* param
,
449 FPDF_DOCUMENT document
,
451 static FPDF_PAGE
Form_GetCurrentPage(FPDF_FORMFILLINFO
* param
,
452 FPDF_DOCUMENT document
);
453 static int Form_GetRotation(FPDF_FORMFILLINFO
* param
, FPDF_PAGE page
);
454 static void Form_ExecuteNamedAction(FPDF_FORMFILLINFO
* param
,
455 FPDF_BYTESTRING named_action
);
456 static void Form_SetTextFieldFocus(FPDF_FORMFILLINFO
* param
,
457 FPDF_WIDESTRING value
,
460 static void Form_DoURIAction(FPDF_FORMFILLINFO
* param
, FPDF_BYTESTRING uri
);
461 static void Form_DoGoToAction(FPDF_FORMFILLINFO
* param
,
464 float* position_array
,
467 // IPDF_JSPLATFORM callbacks.
468 static int Form_Alert(IPDF_JSPLATFORM
* param
,
469 FPDF_WIDESTRING message
,
470 FPDF_WIDESTRING title
,
473 static void Form_Beep(IPDF_JSPLATFORM
* param
, int type
);
474 static int Form_Response(IPDF_JSPLATFORM
* param
,
475 FPDF_WIDESTRING question
,
476 FPDF_WIDESTRING title
,
477 FPDF_WIDESTRING default_response
,
478 FPDF_WIDESTRING label
,
482 static int Form_GetFilePath(IPDF_JSPLATFORM
* param
,
485 static void Form_Mail(IPDF_JSPLATFORM
* param
,
490 FPDF_WIDESTRING subject
,
493 FPDF_WIDESTRING message
);
494 static void Form_Print(IPDF_JSPLATFORM
* param
,
499 FPDF_BOOL shrink_to_fit
,
500 FPDF_BOOL print_as_image
,
502 FPDF_BOOL annotations
);
503 static void Form_SubmitForm(IPDF_JSPLATFORM
* param
,
506 FPDF_WIDESTRING url
);
507 static void Form_GotoPage(IPDF_JSPLATFORM
* param
, int page_number
);
508 static int Form_Browse(IPDF_JSPLATFORM
* param
, void* file_path
, int length
);
511 static void Form_EmailTo(FPDF_FORMFILLINFO
* param
,
512 FPDF_FILEHANDLER
* file_handler
,
514 FPDF_WIDESTRING subject
,
517 FPDF_WIDESTRING message
);
518 static void Form_DisplayCaret(FPDF_FORMFILLINFO
* param
,
525 static void Form_SetCurrentPage(FPDF_FORMFILLINFO
* param
,
526 FPDF_DOCUMENT document
,
528 static int Form_GetCurrentPageIndex(FPDF_FORMFILLINFO
* param
,
529 FPDF_DOCUMENT document
);
530 static void Form_GetPageViewRect(FPDF_FORMFILLINFO
* param
,
536 static int Form_GetPlatform(FPDF_FORMFILLINFO
* param
,
539 static FPDF_BOOL
Form_PopupMenu(FPDF_FORMFILLINFO
* param
,
545 static FPDF_BOOL
Form_PostRequestURL(FPDF_FORMFILLINFO
* param
,
547 FPDF_WIDESTRING data
,
548 FPDF_WIDESTRING content_type
,
549 FPDF_WIDESTRING encode
,
550 FPDF_WIDESTRING header
,
551 FPDF_BSTR
* response
);
552 static FPDF_BOOL
Form_PutRequestURL(FPDF_FORMFILLINFO
* param
,
554 FPDF_WIDESTRING data
,
555 FPDF_WIDESTRING encode
);
556 static void Form_UploadTo(FPDF_FORMFILLINFO
* param
,
557 FPDF_FILEHANDLER
* file_handler
,
559 FPDF_WIDESTRING dest
);
560 static FPDF_LPFILEHANDLER
Form_DownloadFromURL(FPDF_FORMFILLINFO
* param
,
561 FPDF_WIDESTRING url
);
562 static FPDF_FILEHANDLER
* Form_OpenFile(FPDF_FORMFILLINFO
* param
,
566 static void Form_GotoURL(FPDF_FORMFILLINFO
* param
,
567 FPDF_DOCUMENT document
,
568 FPDF_WIDESTRING url
);
569 static int Form_GetLanguage(FPDF_FORMFILLINFO
* param
,
572 #endif // PDF_USE_XFA
574 // IFSDK_PAUSE callbacks
575 static FPDF_BOOL
Pause_NeedToPauseNow(IFSDK_PAUSE
* param
);
577 PDFEngine::Client
* client_
;
578 pp::Size document_size_
; // Size of document in pixels.
580 // The scroll position in screen coordinates.
582 // The offset of the page into the viewport.
583 pp::Point page_offset_
;
584 // The plugin size in screen coordinates.
585 pp::Size plugin_size_
;
586 double current_zoom_
;
587 unsigned int current_rotation_
;
589 DocumentLoader doc_loader_
; // Main document's loader.
591 std::string headers_
;
592 pp::CompletionCallbackFactory
<PDFiumEngine
> find_factory_
;
594 pp::CompletionCallbackFactory
<PDFiumEngine
> password_factory_
;
595 int32_t password_tries_remaining_
;
597 // The current text used for searching.
598 std::string current_find_text_
;
600 // The PDFium wrapper object for the document.
603 // The PDFium wrapper for form data. Used even if there are no form controls
605 FPDF_FORMHANDLE form_
;
607 // The page(s) of the document. Store a vector of pointers so that when the
608 // vector is resized we don't close the pages that are used in pending
610 std::vector
<PDFiumPage
*> pages_
;
612 // The indexes of the pages currently visible.
613 std::vector
<int> visible_pages_
;
615 // The indexes of the pages pending download.
616 std::vector
<int> pending_pages_
;
618 // During handling of input events we don't want to unload any pages in
619 // callbacks to us from PDFium, since the current page can change while PDFium
620 // code still has a pointer to it.
621 bool defer_page_unload_
;
622 std::vector
<int> deferred_page_unloads_
;
624 // Used for selection. There could be more than one range if selection spans
625 // more than one page.
626 std::vector
<PDFiumRange
> selection_
;
627 // True if we're in the middle of selection.
630 MouseDownState mouse_down_state_
;
632 // Used for searching.
633 typedef std::vector
<PDFiumRange
> FindResults
;
634 FindResults find_results_
;
635 // Which page to search next.
636 int next_page_to_search_
;
637 // Where to stop searching.
638 int last_page_to_search_
;
639 int last_character_index_to_search_
; // -1 if search until end of page.
640 // Which result the user has currently selected.
641 FindTextIndex current_find_index_
;
642 // Where to resume searching.
643 FindTextIndex resume_find_index_
;
645 // Permissions bitfield.
646 unsigned long permissions_
;
648 // Permissions security handler revision number. -1 for unknown.
649 int permissions_handler_revision_
;
651 // Interface structure to provide access to document stream.
652 FPDF_FILEACCESS file_access_
;
653 // Interface structure to check data availability in the document stream.
654 FileAvail file_availability_
;
655 // Interface structure to request data chunks from the document stream.
656 DownloadHints download_hints_
;
657 // Pointer to the document availability interface.
658 FPDF_AVAIL fpdf_availability_
;
660 pp::Size default_page_size_
;
662 // Used to manage timers that form fill API needs. The pair holds the timer
663 // period, in ms, and the callback function.
664 std::map
<int, std::pair
<int, TimerCallback
> > timers_
;
667 // Holds the page index of the last page that the mouse clicked on.
668 int last_page_mouse_down_
;
670 // Holds the page index of the first visible page; refreshed by calling
671 // CalculateVisiblePages()
672 int first_visible_page_
;
674 // Holds the page index of the most visible page; refreshed by calling
675 // CalculateVisiblePages()
676 int most_visible_page_
;
678 // Set to true after FORM_DoDocumentJSAction/FORM_DoDocumentOpenAction have
679 // been called. Only after that can we call FORM_DoPageAAction.
680 bool called_do_document_action_
;
682 // Records parts of form fields that need to be highlighted at next paint, in
683 // screen coordinates.
684 std::vector
<pp::Rect
> form_highlights_
;
686 // Whether to render in grayscale or in color.
687 bool render_grayscale_
;
689 // The link currently under the cursor.
690 std::string link_under_cursor_
;
692 // Pending progressive paints.
693 struct ProgressivePaint
{
694 pp::Rect rect
; // In screen coordinates.
697 // Temporary used to figure out if in a series of Paint() calls whether this
698 // pending paint was updated or not.
701 std::vector
<ProgressivePaint
> progressive_paints_
;
703 // Keeps track of when we started the last progressive paint, so that in our
704 // callback we can determine if we need to pause.
705 base::Time last_progressive_start_time_
;
707 // The timeout to use for the current progressive paint.
708 int progressive_paint_timeout_
;
710 // Shadow matrix for generating the page shadow bitmap.
711 scoped_ptr
<ShadowMatrix
> page_shadow_
;
713 // Set to true if the user is being prompted for their password. Will be set
714 // to false after the user finishes getting their password.
715 bool getting_password_
;
717 DISALLOW_COPY_AND_ASSIGN(PDFiumEngine
);
720 // Create a local variable of this when calling PDFium functions which can call
721 // our global callback when an unsupported feature is reached.
722 class ScopedUnsupportedFeature
{
724 explicit ScopedUnsupportedFeature(PDFiumEngine
* engine
);
725 ~ScopedUnsupportedFeature();
727 PDFiumEngine
* engine_
;
728 PDFiumEngine
* old_engine_
;
731 class PDFiumEngineExports
: public PDFEngineExports
{
733 PDFiumEngineExports() {}
735 // See the definition of RenderPDFPageToDC in pdf.cc for details.
736 virtual bool RenderPDFPageToDC(const void* pdf_buffer
,
739 const RenderingSettings
& settings
,
742 virtual bool RenderPDFPageToBitmap(const void* pdf_buffer
,
745 const RenderingSettings
& settings
,
746 void* bitmap_buffer
);
748 virtual bool GetPDFDocInfo(const void* pdf_buffer
,
751 double* max_page_width
);
753 // See the definition of GetPDFPageSizeByIndex in pdf.cc for details.
754 virtual bool GetPDFPageSizeByIndex(const void* pdf_buffer
,
755 int pdf_buffer_size
, int page_number
,
756 double* width
, double* height
);
759 } // namespace chrome_pdf
761 #endif // PDF_PDFIUM_PDFIUM_ENGINE_H_