OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * Copyright (C) 2014 Opera Software ASA. All rights reserved. | 3 * Copyright (C) 2014 Opera Software ASA. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 // interface methods are called only if this method returns true. | 131 // interface methods are called only if this method returns true. |
132 bool supportsPaginatedPrint() const; | 132 bool supportsPaginatedPrint() const; |
133 // If the plugin content should not be scaled to the printable area of | 133 // If the plugin content should not be scaled to the printable area of |
134 // the page, then this method should return true. | 134 // the page, then this method should return true. |
135 bool isPrintScalingDisabled() const; | 135 bool isPrintScalingDisabled() const; |
136 // Returns true on success and sets the out parameter to the print preset op
tions for the document. | 136 // Returns true on success and sets the out parameter to the print preset op
tions for the document. |
137 bool getPrintPresetOptionsFromDocument(WebPrintPresetOptions*) const; | 137 bool getPrintPresetOptionsFromDocument(WebPrintPresetOptions*) const; |
138 // Sets up printing at the specified WebPrintParams. Returns the number of p
ages to be printed at these settings. | 138 // Sets up printing at the specified WebPrintParams. Returns the number of p
ages to be printed at these settings. |
139 int printBegin(const WebPrintParams&) const; | 139 int printBegin(const WebPrintParams&) const; |
140 // Prints the page specified by pageNumber (0-based index) into the supplied
canvas. | 140 // Prints the page specified by pageNumber (0-based index) into the supplied
canvas. |
141 void printPage(int pageNumber, GraphicsContext*, const IntRect& paintRect); | 141 void printPage(int pageNumber, GraphicsContext&, const IntRect& paintRect); |
142 // Ends the print operation. | 142 // Ends the print operation. |
143 void printEnd(); | 143 void printEnd(); |
144 | 144 |
145 // Copy the selected text. | 145 // Copy the selected text. |
146 void copy(); | 146 void copy(); |
147 | 147 |
148 // Pass the edit command to the plugin. | 148 // Pass the edit command to the plugin. |
149 bool executeEditCommand(const WebString& name); | 149 bool executeEditCommand(const WebString& name); |
150 bool executeEditCommand(const WebString& name, const WebString& value); | 150 bool executeEditCommand(const WebString& name, const WebString& value); |
151 | 151 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 }; | 214 }; |
215 | 215 |
216 DEFINE_TYPE_CASTS(WebPluginContainerImpl, Widget, widget, widget->isPluginContai
ner(), widget.isPluginContainer()); | 216 DEFINE_TYPE_CASTS(WebPluginContainerImpl, Widget, widget, widget->isPluginContai
ner(), widget.isPluginContainer()); |
217 // Unlike Widget, we need not worry about object type for container. | 217 // Unlike Widget, we need not worry about object type for container. |
218 // WebPluginContainerImpl is the only subclass of WebPluginContainer. | 218 // WebPluginContainerImpl is the only subclass of WebPluginContainer. |
219 DEFINE_TYPE_CASTS(WebPluginContainerImpl, WebPluginContainer, container, true, t
rue); | 219 DEFINE_TYPE_CASTS(WebPluginContainerImpl, WebPluginContainer, container, true, t
rue); |
220 | 220 |
221 } // namespace blink | 221 } // namespace blink |
222 | 222 |
223 #endif | 223 #endif |
OLD | NEW |