blob: 6dd39303ea28973c16eb5b63ff0a87128d552fa6 (
plain)
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
|
// Copyright (c) 2010 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 PRINTING_PRINT_SETTINGS_INITIALIZER_GTK_H_
#define PRINTING_PRINT_SETTINGS_INITIALIZER_GTK_H_
#include "base/logging.h"
#include "printing/page_range.h"
typedef struct _GtkPrintSettings GtkPrintSettings;
typedef struct _GtkPageSetup GtkPageSetup;
namespace printing {
class PrintSettings;
// Initializes a PrintSettings object from the provided Gtk printer objects.
class PrintSettingsInitializerGtk {
public:
static void InitPrintSettings(GtkPrintSettings* settings,
GtkPageSetup* page_setup,
const PageRanges& new_ranges,
bool print_selection_only,
PrintSettings* print_settings);
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(PrintSettingsInitializerGtk);
};
} // namespace printing
#endif // PRINTING_PRINT_SETTINGS_INITIALIZER_GTK_H_
|