blob: 4dd49556a1c4e2fb8d49271e3f129c885e0ab31e (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// Copyright (c) 2012 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.
cr.define('print_preview', function() {
'use strict';
/**
* Object describing the printable area of a page in the document.
* @param {!print_preview.Coordinate2d} origin Top left corner of the
* printable area of the document.
* @param {!print_preview.Size} size Size of the printable area of the
* document.
* @constructor
*/
function PrintableArea(origin, size) {
/**
* Top left corner of the printable area of the document.
* @type {!print_preview.Coordinate2d}
* @private
*/
this.origin_ = origin;
/**
* Size of the printable area of the document.
* @type {!print_preview.Size}
* @private
*/
this.size_ = size;
};
PrintableArea.prototype = {
/**
* @return {!print_preview.Coordinate2d} Top left corner of the printable
* area of the document.
*/
get origin() {
return this.origin_;
},
/**
* @return {!print_preview.Size} Size of the printable area of the document.
*/
get size() {
return this.size_;
},
/**
* @param {print_preview.PrintableArea} other Other printable area to check
* for equality.
* @return {boolean} Whether another printable area is equal to this one.
*/
equals: function(other) {
return other != null &&
this.origin_.equals(other.origin_) &&
this.size_.equals(other.size_);
}
};
// Export
return {
PrintableArea: PrintableArea
};
});
|