OLD | NEW |
(Empty) | |
| 1 #!/usr/bin/env python |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 5 |
| 6 import in_generator |
| 7 from name_utilities import lower_first |
| 8 |
| 9 |
| 10 class CSSProperties(in_generator.Writer): |
| 11 defaults = { |
| 12 'longhands': '', |
| 13 'font': False, |
| 14 'svg': False, |
| 15 'name_for_methods': None, |
| 16 'use_handlers_for': None, |
| 17 'getter': None, |
| 18 'setter': None, |
| 19 'initial': None, |
| 20 'type_name': None, |
| 21 'converter': None, |
| 22 'custom_all': False, |
| 23 'custom_initial': False, |
| 24 'custom_inherit': False, |
| 25 'custom_value': False, |
| 26 'builder_skip': False, |
| 27 'direction_aware': False, |
| 28 } |
| 29 |
| 30 valid_values = { |
| 31 'font': (True, False), |
| 32 'svg': (True, False), |
| 33 'custom_all': (True, False), |
| 34 'custom_initial': (True, False), |
| 35 'custom_inherit': (True, False), |
| 36 'custom_value': (True, False), |
| 37 'builder_skip': (True, False), |
| 38 'direction_aware': (True, False), |
| 39 } |
| 40 |
| 41 def __init__(self, file_paths): |
| 42 in_generator.Writer.__init__(self, file_paths) |
| 43 |
| 44 properties = self.in_file.name_dictionaries |
| 45 |
| 46 for property in properties: |
| 47 property['property_id'] = css_name_to_enum(property['name']) |
| 48 property['upper_camel_name'] = camelcase_css_name(property['name']) |
| 49 property['lower_camel_name'] = lower_first(property['upper_camel_nam
e']) |
| 50 |
| 51 self._properties_list = properties |
| 52 self._properties = {property['property_id']: property for property in pr
operties} |
| 53 |
| 54 |
| 55 def camelcase_css_name(css_name): |
| 56 """Convert hyphen-separated-name to UpperCamelCase. |
| 57 |
| 58 E.g., '-foo-bar' becomes 'FooBar'. |
| 59 """ |
| 60 return ''.join(word.capitalize() for word in css_name.split('-')) |
| 61 |
| 62 |
| 63 def css_name_to_enum(css_name): |
| 64 return 'CSSProperty' + camelcase_css_name(css_name) |
OLD | NEW |