OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 cr.define('print_preview', function() { | 5 cr.define('print_preview', function() { |
6 'use strict'; | 6 'use strict'; |
7 | 7 |
8 /** | 8 /** |
9 * An interface to the native Chromium printing system layer. | 9 * An interface to the native Chromium printing system layer. |
10 * @constructor | 10 * @constructor |
11 * @extends {cr.EventTarget} | 11 * @extends {cr.EventTarget} |
12 */ | 12 */ |
13 function NativeLayer() { | 13 function NativeLayer() { |
14 cr.EventTarget.call(this); | 14 cr.EventTarget.call(this); |
15 | 15 |
16 // Bind global handlers | 16 // Bind global handlers |
17 global['setInitialSettings'] = this.onSetInitialSettings_.bind(this); | 17 global.setInitialSettings = this.onSetInitialSettings_.bind(this); |
18 global['setUseCloudPrint'] = this.onSetUseCloudPrint_.bind(this); | 18 global.setUseCloudPrint = this.onSetUseCloudPrint_.bind(this); |
19 global['setPrinters'] = this.onSetPrinters_.bind(this); | 19 global.setPrinters = this.onSetPrinters_.bind(this); |
20 global['updateWithPrinterCapabilities'] = | 20 global.updateWithPrinterCapabilities = |
21 this.onUpdateWithPrinterCapabilities_.bind(this); | 21 this.onUpdateWithPrinterCapabilities_.bind(this); |
22 global['failedToGetPrinterCapabilities'] = | 22 global.failedToGetPrinterCapabilities = |
23 this.onFailedToGetPrinterCapabilities_.bind(this); | 23 this.onFailedToGetPrinterCapabilities_.bind(this); |
24 global['failedToGetPrivetPrinterCapabilities'] = | 24 global.failedToGetPrivetPrinterCapabilities = |
25 this.onFailedToGetPrivetPrinterCapabilities_.bind(this); | 25 this.onFailedToGetPrivetPrinterCapabilities_.bind(this); |
26 global['reloadPrintersList'] = this.onReloadPrintersList_.bind(this); | 26 global.reloadPrintersList = this.onReloadPrintersList_.bind(this); |
27 global['printToCloud'] = this.onPrintToCloud_.bind(this); | 27 global.printToCloud = this.onPrintToCloud_.bind(this); |
28 global['fileSelectionCancelled'] = | 28 global.fileSelectionCancelled = |
29 this.onFileSelectionCancelled_.bind(this); | 29 this.onFileSelectionCancelled_.bind(this); |
30 global['fileSelectionCompleted'] = | 30 global.fileSelectionCompleted = |
31 this.onFileSelectionCompleted_.bind(this); | 31 this.onFileSelectionCompleted_.bind(this); |
32 global['printPreviewFailed'] = this.onPrintPreviewFailed_.bind(this); | 32 global.printPreviewFailed = this.onPrintPreviewFailed_.bind(this); |
33 global['invalidPrinterSettings'] = | 33 global.invalidPrinterSettings = |
34 this.onInvalidPrinterSettings_.bind(this); | 34 this.onInvalidPrinterSettings_.bind(this); |
35 global['onDidGetDefaultPageLayout'] = | 35 global.onDidGetDefaultPageLayout = |
36 this.onDidGetDefaultPageLayout_.bind(this); | 36 this.onDidGetDefaultPageLayout_.bind(this); |
37 global['onDidGetPreviewPageCount'] = | 37 global.onDidGetPreviewPageCount = |
38 this.onDidGetPreviewPageCount_.bind(this); | 38 this.onDidGetPreviewPageCount_.bind(this); |
39 global['onDidPreviewPage'] = this.onDidPreviewPage_.bind(this); | 39 global.onDidPreviewPage = this.onDidPreviewPage_.bind(this); |
40 global['updatePrintPreview'] = this.onUpdatePrintPreview_.bind(this); | 40 global.updatePrintPreview = this.onUpdatePrintPreview_.bind(this); |
41 global['printScalingDisabledForSourcePDF'] = | 41 global.printScalingDisabledForSourcePDF = |
42 this.onPrintScalingDisabledForSourcePDF_.bind(this); | 42 this.onPrintScalingDisabledForSourcePDF_.bind(this); |
43 global['onDidGetAccessToken'] = this.onDidGetAccessToken_.bind(this); | 43 global.onDidGetAccessToken = this.onDidGetAccessToken_.bind(this); |
44 global['autoCancelForTesting'] = this.autoCancelForTesting_.bind(this); | 44 global.autoCancelForTesting = this.autoCancelForTesting_.bind(this); |
45 global['onPrivetPrinterChanged'] = this.onPrivetPrinterChanged_.bind(this); | 45 global.onPrivetPrinterChanged = this.onPrivetPrinterChanged_.bind(this); |
46 global['onPrivetCapabilitiesSet'] = | 46 global.onPrivetCapabilitiesSet = |
47 this.onPrivetCapabilitiesSet_.bind(this); | 47 this.onPrivetCapabilitiesSet_.bind(this); |
48 global['onPrivetPrintFailed'] = this.onPrivetPrintFailed_.bind(this); | 48 global.onPrivetPrintFailed = this.onPrivetPrintFailed_.bind(this); |
| 49 global.onEnableManipulateSettingsForTest = |
| 50 this.onEnableManipulateSettingsForTest_.bind(this); |
49 }; | 51 }; |
50 | 52 |
51 /** | 53 /** |
52 * Event types dispatched from the Chromium native layer. | 54 * Event types dispatched from the Chromium native layer. |
53 * @enum {string} | 55 * @enum {string} |
54 * @const | 56 * @const |
55 */ | 57 */ |
56 NativeLayer.EventType = { | 58 NativeLayer.EventType = { |
57 ACCESS_TOKEN_READY: 'print_preview.NativeLayer.ACCESS_TOKEN_READY', | 59 ACCESS_TOKEN_READY: 'print_preview.NativeLayer.ACCESS_TOKEN_READY', |
58 CAPABILITIES_SET: 'print_preview.NativeLayer.CAPABILITIES_SET', | 60 CAPABILITIES_SET: 'print_preview.NativeLayer.CAPABILITIES_SET', |
59 CLOUD_PRINT_ENABLE: 'print_preview.NativeLayer.CLOUD_PRINT_ENABLE', | 61 CLOUD_PRINT_ENABLE: 'print_preview.NativeLayer.CLOUD_PRINT_ENABLE', |
60 DESTINATIONS_RELOAD: 'print_preview.NativeLayer.DESTINATIONS_RELOAD', | 62 DESTINATIONS_RELOAD: 'print_preview.NativeLayer.DESTINATIONS_RELOAD', |
61 DISABLE_SCALING: 'print_preview.NativeLayer.DISABLE_SCALING', | 63 DISABLE_SCALING: 'print_preview.NativeLayer.DISABLE_SCALING', |
62 FILE_SELECTION_CANCEL: 'print_preview.NativeLayer.FILE_SELECTION_CANCEL', | 64 FILE_SELECTION_CANCEL: 'print_preview.NativeLayer.FILE_SELECTION_CANCEL', |
63 FILE_SELECTION_COMPLETE: | 65 FILE_SELECTION_COMPLETE: |
64 'print_preview.NativeLayer.FILE_SELECTION_COMPLETE', | 66 'print_preview.NativeLayer.FILE_SELECTION_COMPLETE', |
65 GET_CAPABILITIES_FAIL: 'print_preview.NativeLayer.GET_CAPABILITIES_FAIL', | 67 GET_CAPABILITIES_FAIL: 'print_preview.NativeLayer.GET_CAPABILITIES_FAIL', |
66 INITIAL_SETTINGS_SET: 'print_preview.NativeLayer.INITIAL_SETTINGS_SET', | 68 INITIAL_SETTINGS_SET: 'print_preview.NativeLayer.INITIAL_SETTINGS_SET', |
67 LOCAL_DESTINATIONS_SET: 'print_preview.NativeLayer.LOCAL_DESTINATIONS_SET', | 69 LOCAL_DESTINATIONS_SET: 'print_preview.NativeLayer.LOCAL_DESTINATIONS_SET', |
| 70 MANIPULATE_SETTINGS_FOR_TEST: |
| 71 'print_preview.NativeLayer.MANIPULATE_SETTINGS_FOR_TEST', |
68 PAGE_COUNT_READY: 'print_preview.NativeLayer.PAGE_COUNT_READY', | 72 PAGE_COUNT_READY: 'print_preview.NativeLayer.PAGE_COUNT_READY', |
69 PAGE_LAYOUT_READY: 'print_preview.NativeLayer.PAGE_LAYOUT_READY', | 73 PAGE_LAYOUT_READY: 'print_preview.NativeLayer.PAGE_LAYOUT_READY', |
70 PAGE_PREVIEW_READY: 'print_preview.NativeLayer.PAGE_PREVIEW_READY', | 74 PAGE_PREVIEW_READY: 'print_preview.NativeLayer.PAGE_PREVIEW_READY', |
71 PREVIEW_GENERATION_DONE: | 75 PREVIEW_GENERATION_DONE: |
72 'print_preview.NativeLayer.PREVIEW_GENERATION_DONE', | 76 'print_preview.NativeLayer.PREVIEW_GENERATION_DONE', |
73 PREVIEW_GENERATION_FAIL: | 77 PREVIEW_GENERATION_FAIL: |
74 'print_preview.NativeLayer.PREVIEW_GENERATION_FAIL', | 78 'print_preview.NativeLayer.PREVIEW_GENERATION_FAIL', |
75 PRINT_TO_CLOUD: 'print_preview.NativeLayer.PRINT_TO_CLOUD', | 79 PRINT_TO_CLOUD: 'print_preview.NativeLayer.PRINT_TO_CLOUD', |
76 SETTINGS_INVALID: 'print_preview.NativeLayer.SETTINGS_INVALID', | 80 SETTINGS_INVALID: 'print_preview.NativeLayer.SETTINGS_INVALID', |
77 PRIVET_PRINTER_CHANGED: 'print_preview.NativeLayer.PRIVET_PRINTER_CHANGED', | 81 PRIVET_PRINTER_CHANGED: 'print_preview.NativeLayer.PRIVET_PRINTER_CHANGED', |
78 PRIVET_CAPABILITIES_SET: | 82 PRIVET_CAPABILITIES_SET: |
79 'print_preview.NativeLayer.PRIVET_CAPABILITIES_SET', | 83 'print_preview.NativeLayer.PRIVET_CAPABILITIES_SET', |
80 PRIVET_PRINT_FAILED: 'print_preview.NativeLayer.PRIVET_PRINT_FAILED' | 84 PRIVET_PRINT_FAILED: 'print_preview.NativeLayer.PRIVET_PRINT_FAILED', |
81 }; | 85 }; |
82 | 86 |
83 /** | 87 /** |
84 * Constant values matching printing::DuplexMode enum. | 88 * Constant values matching printing::DuplexMode enum. |
85 * @enum {number} | 89 * @enum {number} |
86 */ | 90 */ |
87 NativeLayer.DuplexMode = { | 91 NativeLayer.DuplexMode = { |
88 SIMPLEX: 0, | 92 SIMPLEX: 0, |
89 LONG_EDGE: 1, | 93 LONG_EDGE: 1, |
90 UNKNOWN_DUPLEX_MODE: -1 | 94 UNKNOWN_DUPLEX_MODE: -1 |
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
681 /** | 685 /** |
682 * @param {string} http_error The HTTP response code or -1 if not an HTTP | 686 * @param {string} http_error The HTTP response code or -1 if not an HTTP |
683 * error. | 687 * error. |
684 * @private | 688 * @private |
685 */ | 689 */ |
686 onPrivetPrintFailed_: function(http_error) { | 690 onPrivetPrintFailed_: function(http_error) { |
687 var privetPrintFailedEvent = | 691 var privetPrintFailedEvent = |
688 new Event(NativeLayer.EventType.PRIVET_PRINT_FAILED); | 692 new Event(NativeLayer.EventType.PRIVET_PRINT_FAILED); |
689 privetPrintFailedEvent.httpError = http_error; | 693 privetPrintFailedEvent.httpError = http_error; |
690 this.dispatchEvent(privetPrintFailedEvent); | 694 this.dispatchEvent(privetPrintFailedEvent); |
| 695 }, |
| 696 |
| 697 /** |
| 698 * Allows for onManipulateSettings to be called |
| 699 * from the native layer. |
| 700 * @private |
| 701 */ |
| 702 onEnableManipulateSettingsForTest_: function() { |
| 703 global.onManipulateSettingsForTest = |
| 704 this.onManipulateSettingsForTest_.bind(this); |
| 705 }, |
| 706 |
| 707 /** |
| 708 * Dispatches an event to print_preview.js to change |
| 709 * a particular setting for print preview. |
| 710 * @param {!Object} settings Object containing the value to be |
| 711 * changed and that value should be set to. |
| 712 * @private |
| 713 */ |
| 714 onManipulateSettingsForTest_: function(settings) { |
| 715 var manipulateSettingsEvent = |
| 716 new Event(NativeLayer.EventType.MANIPULATE_SETTINGS_FOR_TEST); |
| 717 manipulateSettingsEvent.settings = settings; |
| 718 this.dispatchEvent(manipulateSettingsEvent); |
| 719 }, |
| 720 |
| 721 /** |
| 722 * Sends a message to the test, letting it know that an |
| 723 * option has been set to a particular value and that the change has |
| 724 * finished modifying the preview area. |
| 725 */ |
| 726 previewReadyForTest: function() { |
| 727 if (global.onManipulateSettingsForTest) |
| 728 chrome.send('UILoadedForTest'); |
| 729 }, |
| 730 |
| 731 /** |
| 732 * Notifies the test that the option it tried to change |
| 733 * had not been changed successfully. |
| 734 */ |
| 735 previewFailedForTest: function() { |
| 736 if (global.onManipulateSettingsForTest) |
| 737 chrome.send('UIFailedLoadingForTest'); |
691 } | 738 } |
692 }; | 739 }; |
693 | 740 |
694 /** | 741 /** |
695 * Initial settings retrieved from the native layer. | 742 * Initial settings retrieved from the native layer. |
696 * @param {boolean} isInKioskAutoPrintMode Whether the print preview should be | 743 * @param {boolean} isInKioskAutoPrintMode Whether the print preview should be |
697 * in auto-print mode. | 744 * in auto-print mode. |
698 * @param {string} thousandsDelimeter Character delimeter of thousands digits. | 745 * @param {string} thousandsDelimeter Character delimeter of thousands digits. |
699 * @param {string} decimalDelimeter Character delimeter of the decimal point. | 746 * @param {string} decimalDelimeter Character delimeter of the decimal point. |
700 * @param {!print_preview.MeasurementSystem.UnitType} unitType Unit type of | 747 * @param {!print_preview.MeasurementSystem.UnitType} unitType Unit type of |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
866 return this.serializedAppStateStr_; | 913 return this.serializedAppStateStr_; |
867 } | 914 } |
868 }; | 915 }; |
869 | 916 |
870 // Export | 917 // Export |
871 return { | 918 return { |
872 NativeInitialSettings: NativeInitialSettings, | 919 NativeInitialSettings: NativeInitialSettings, |
873 NativeLayer: NativeLayer | 920 NativeLayer: NativeLayer |
874 }; | 921 }; |
875 }); | 922 }); |
OLD | NEW |