// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ #define CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ #pragma once #include "base/ref_counted.h" #include "base/string16.h" #include "chrome/browser/renderer_host/render_view_host_delegate.h" #include "chrome/common/notification_observer.h" #include "chrome/common/notification_registrar.h" #include "printing/printed_pages_source.h" class RenderViewHost; class TabContents; struct ViewHostMsg_DidPrintPage_Params; namespace printing { class JobEventDetails; class PrintJob; class PrintJobWorkerOwner; // Manages the print commands in relation to a TabContents. TabContents // delegates a few printing related commands to this instance. class PrintViewManager : public NotificationObserver, public PrintedPagesSource, public RenderViewHostDelegate::Printing { public: explicit PrintViewManager(TabContents& owner); virtual ~PrintViewManager(); // Cancels the print job. void Stop(); // Terminates or cancels the print job if one was pending, depending on the // current state. Returns false if the renderer was not valuable. bool OnRenderViewGone(RenderViewHost* render_view_host); // PrintedPagesSource implementation. virtual string16 RenderSourceName(); virtual GURL RenderSourceUrl(); // RenderViewHostDelegate::Printing implementation. virtual void DidGetPrintedPagesCount(int cookie, int number_pages); virtual void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); // NotificationObserver implementation. virtual void Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details); private: // Processes a NOTIFY_PRINT_JOB_EVENT notification. void OnNotifyPrintJobEvent(const JobEventDetails& event_details); // Requests the RenderView to render all the missing pages for the print job. // Noop if no print job is pending. Returns true if at least one page has been // requested to the renderer. bool RenderAllMissingPagesNow(); // Quits the current message loop if these conditions hold true: a document is // loaded and is complete and waiting_for_pages_to_be_rendered_ is true. This // function is called in DidPrintPage() or on ALL_PAGES_REQUESTED // notification. The inner message loop is created was created by // RenderAllMissingPagesNow(). void ShouldQuitFromInnerMessageLoop(); // Creates a new empty print job. It has no settings loaded. If there is // currently a print job, safely disconnect from it. Returns false if it is // impossible to safely disconnect from the current print job or it is // impossible to create a new print job. bool CreateNewPrintJob(PrintJobWorkerOwner* job); // Makes sure the current print_job_ has all its data before continuing, and // disconnect from it. void DisconnectFromCurrentPrintJob(); // Notify that the printing is done. void PrintingDone(bool success); // Terminates the print job. Noop if no print job has been created. If // |cancel| is true, cancel it instead of waiting for the job to finish. Will // call ReleasePrintJob(). void TerminatePrintJob(bool cancel); // Releases print_job_. Correctly deregisters from notifications. Noop if // no print job has been created. void ReleasePrintJob(); // Runs an inner message loop. It will set inside_inner_message_loop_ to true // while the blocking inner message loop is running. This is useful in cases // where the RenderView is about to be destroyed while a printing job isn't // finished. bool RunInnerMessageLoop(); // In the case of Scripted Printing, where the renderer is controlling the // control flow, print_job_ is initialized whenever possible. No-op is // print_job_ is initialized. bool OpportunisticallyCreatePrintJob(int cookie); NotificationRegistrar registrar_; // Manages the low-level talk to the printer. scoped_refptr print_job_; // Waiting for print_job_ initialization to be completed to start printing. // Specifically the DEFAULT_INIT_DONE notification. Set when PrintNow() is // called. bool waiting_to_print_; // Indication of success of the print job. bool printing_succeeded_; // Running an inner message loop inside RenderAllMissingPagesNow(). This means // we are _blocking_ until all the necessary pages have been rendered or the // print settings are being loaded. bool inside_inner_message_loop_; // PrintViewManager is created as an extension of WebContent specialized for // printing-related behavior. Still, access to the renderer is needed so a // back reference is kept the the "parent object". TabContents& owner_; DISALLOW_COPY_AND_ASSIGN(PrintViewManager); }; } // namespace printing #endif // CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_