| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2003, 2007, 2010 Apple Inc. All rights reserved. | |
| 3 * | |
| 4 * Redistribution and use in source and binary forms, with or without | |
| 5 * modification, are permitted provided that the following conditions | |
| 6 * are met: | |
| 7 * | |
| 8 * 1. Redistributions of source code must retain the above copyright | |
| 9 * notice, this list of conditions and the following disclaimer. | |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | |
| 11 * notice, this list of conditions and the following disclaimer in the | |
| 12 * documentation and/or other materials provided with the distribution. | |
| 13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of | |
| 14 * its contributors may be used to endorse or promote products derived | |
| 15 * from this software without specific prior written permission. | |
| 16 * | |
| 17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY | |
| 18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | |
| 19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
| 20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | |
| 21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | |
| 22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
| 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | |
| 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 27 */ | |
| 28 | |
| 29 #ifndef WindowFeatures_h | |
| 30 #define WindowFeatures_h | |
| 31 | |
| 32 #include "core/CoreExport.h" | |
| 33 #include "platform/wtf/Allocator.h" | |
| 34 #include "platform/wtf/HashMap.h" | |
| 35 #include "platform/wtf/text/WTFString.h" | |
| 36 | |
| 37 namespace blink { | |
| 38 | |
| 39 class IntRect; | |
| 40 | |
| 41 struct CORE_EXPORT WindowFeatures { | |
| 42 DISALLOW_NEW(); | |
| 43 WindowFeatures() | |
| 44 : x(0), | |
| 45 x_set(false), | |
| 46 y(0), | |
| 47 y_set(false), | |
| 48 width(0), | |
| 49 width_set(false), | |
| 50 height(0), | |
| 51 height_set(false), | |
| 52 menu_bar_visible(true), | |
| 53 status_bar_visible(true), | |
| 54 tool_bar_visible(true), | |
| 55 location_bar_visible(true), | |
| 56 scrollbars_visible(true), | |
| 57 resizable(true), | |
| 58 fullscreen(false), | |
| 59 dialog(false), | |
| 60 noopener(false) {} | |
| 61 explicit WindowFeatures(const String& window_features_string); | |
| 62 WindowFeatures(const String& dialog_features_string, | |
| 63 const IntRect& screen_available_rect); | |
| 64 | |
| 65 int x; | |
| 66 bool x_set; | |
| 67 int y; | |
| 68 bool y_set; | |
| 69 int width; | |
| 70 bool width_set; | |
| 71 int height; | |
| 72 bool height_set; | |
| 73 | |
| 74 bool menu_bar_visible; | |
| 75 bool status_bar_visible; | |
| 76 bool tool_bar_visible; | |
| 77 bool location_bar_visible; | |
| 78 bool scrollbars_visible; | |
| 79 bool resizable; | |
| 80 | |
| 81 bool fullscreen; | |
| 82 bool dialog; | |
| 83 | |
| 84 bool noopener; | |
| 85 | |
| 86 Vector<String> additional_features; | |
| 87 | |
| 88 private: | |
| 89 using DialogFeaturesMap = HashMap<String, String>; | |
| 90 static void ParseDialogFeatures(const String&, HashMap<String, String>&); | |
| 91 static bool BoolFeature(const DialogFeaturesMap&, | |
| 92 const char* key, | |
| 93 bool default_value = false); | |
| 94 static int IntFeature(const DialogFeaturesMap&, | |
| 95 const char* key, | |
| 96 int min, | |
| 97 int max, | |
| 98 int default_value); | |
| 99 void SetWindowFeature(const String& key_string, const String& value_string); | |
| 100 }; | |
| 101 | |
| 102 } // namespace blink | |
| 103 | |
| 104 #endif // WindowFeatures_h | |
| OLD | NEW |