ae14df6577
Also renamed win_printing_context to printing_context_win (correct naming convention) and added stub implementations for _linux and mac. Now all but one file is compiling on all platforms. TEST=none (no functional change). BUG=none Review URL: http://codereview.chromium.org/149212 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20086 0039d316-1c4b-4281-b951-d872f2087c98
118 linhas
2.0 KiB
C++
118 linhas
2.0 KiB
C++
// Copyright (c) 2009 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.
|
|
|
|
#include "printing/printing_context.h"
|
|
|
|
#include "base/logging.h"
|
|
|
|
namespace printing {
|
|
|
|
PrintingContext::PrintingContext()
|
|
:
|
|
#ifndef NDEBUG
|
|
page_number_(-1),
|
|
#endif
|
|
dialog_box_dismissed_(false),
|
|
in_print_job_(false),
|
|
abort_printing_(false) {
|
|
}
|
|
|
|
PrintingContext::~PrintingContext() {
|
|
ResetSettings();
|
|
}
|
|
|
|
|
|
PrintingContext::Result PrintingContext::UseDefaultSettings() {
|
|
DCHECK(!in_print_job_);
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return FAILED;
|
|
}
|
|
|
|
PrintingContext::Result PrintingContext::InitWithSettings(
|
|
const PrintSettings& settings) {
|
|
DCHECK(!in_print_job_);
|
|
settings_ = settings;
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return FAILED;
|
|
}
|
|
|
|
void PrintingContext::ResetSettings() {
|
|
#ifndef NDEBUG
|
|
page_number_ = -1;
|
|
#endif
|
|
dialog_box_dismissed_ = false;
|
|
abort_printing_ = false;
|
|
in_print_job_ = false;
|
|
}
|
|
|
|
PrintingContext::Result PrintingContext::NewDocument(
|
|
const std::wstring& document_name) {
|
|
DCHECK(!in_print_job_);
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
#ifndef NDEBUG
|
|
page_number_ = 0;
|
|
#endif
|
|
|
|
return FAILED;
|
|
}
|
|
|
|
PrintingContext::Result PrintingContext::NewPage() {
|
|
if (abort_printing_)
|
|
return CANCEL;
|
|
DCHECK(in_print_job_);
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
#ifndef NDEBUG
|
|
++page_number_;
|
|
#endif
|
|
|
|
return FAILED;
|
|
}
|
|
|
|
PrintingContext::Result PrintingContext::PageDone() {
|
|
if (abort_printing_)
|
|
return CANCEL;
|
|
DCHECK(in_print_job_);
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return FAILED;
|
|
}
|
|
|
|
PrintingContext::Result PrintingContext::DocumentDone() {
|
|
if (abort_printing_)
|
|
return CANCEL;
|
|
DCHECK(in_print_job_);
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
ResetSettings();
|
|
return FAILED;
|
|
}
|
|
|
|
void PrintingContext::Cancel() {
|
|
abort_printing_ = true;
|
|
in_print_job_ = false;
|
|
|
|
NOTIMPLEMENTED();
|
|
}
|
|
|
|
void PrintingContext::DismissDialog() {
|
|
NOTIMPLEMENTED();
|
|
}
|
|
|
|
PrintingContext::Result PrintingContext::OnError() {
|
|
ResetSettings();
|
|
return abort_printing_ ? CANCEL : FAILED;
|
|
}
|
|
|
|
} // namespace printing
|