1// Copyright 2014 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.
4
5#ifndef PRINTING_BITMAP_TRANSFORM_SETTINGS_H_
6#define PRINTING_BITMAP_TRANSFORM_SETTINGS_H_
7
8#include "base/tuple.h"
9#include "ipc/ipc_param_traits.h"
10#include "printing/printing_export.h"
11#include "ui/gfx/rect.h"
12
13namespace printing {
14
15enum PwgRasterTransformType {
16  TRANSFORM_NORMAL,
17  TRANSFORM_ROTATE_180,
18  TRANSFORM_FLIP_HORIZONTAL,
19  TRANSFORM_FLIP_VERTICAL
20};
21
22struct PwgRasterSettings {
23  // How to transform odd-numbered pages.
24  PwgRasterTransformType odd_page_transform;
25  // Rotate all pages (on top of odd-numbered page transform).
26  bool rotate_all_pages;
27  // Rasterize pages in reverse order.
28  bool reverse_page_order;
29};
30
31}  // namespace printing
32
33#endif  // PRINTING_BITMAP_TRANSFORM_SETTINGS_H_
34