| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 class ExceptionState; | 39 class ExceptionState; |
| 40 | 40 |
| 41 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 41 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 42 typedef BaseMultipleFieldsDateAndTimeInputType BaseDateTimeLocalInputType; | 42 typedef BaseMultipleFieldsDateAndTimeInputType BaseDateTimeLocalInputType; |
| 43 #else | 43 #else |
| 44 typedef BaseChooserOnlyDateAndTimeInputType BaseDateTimeLocalInputType; | 44 typedef BaseChooserOnlyDateAndTimeInputType BaseDateTimeLocalInputType; |
| 45 #endif | 45 #endif |
| 46 | 46 |
| 47 class DateTimeLocalInputType : public BaseDateTimeLocalInputType { | 47 class DateTimeLocalInputType : public BaseDateTimeLocalInputType { |
| 48 public: | 48 public: |
| 49 static PassRefPtr<InputType> create(HTMLInputElement*); | 49 static PassRefPtr<InputType> create(HTMLInputElement&); |
| 50 | 50 |
| 51 private: | 51 private: |
| 52 DateTimeLocalInputType(HTMLInputElement* element) : BaseDateTimeLocalInputTy
pe(element) { } | 52 DateTimeLocalInputType(HTMLInputElement& element) : BaseDateTimeLocalInputTy
pe(element) { } |
| 53 virtual void countUsage() OVERRIDE; | 53 virtual void countUsage() OVERRIDE; |
| 54 virtual const AtomicString& formControlType() const OVERRIDE; | 54 virtual const AtomicString& formControlType() const OVERRIDE; |
| 55 virtual DateComponents::Type dateType() const OVERRIDE; | 55 virtual DateComponents::Type dateType() const OVERRIDE; |
| 56 virtual double valueAsDate() const OVERRIDE; | 56 virtual double valueAsDate() const OVERRIDE; |
| 57 virtual void setValueAsDate(double, ExceptionState&) const OVERRIDE; | 57 virtual void setValueAsDate(double, ExceptionState&) const OVERRIDE; |
| 58 virtual StepRange createStepRange(AnyStepHandling) const; | 58 virtual StepRange createStepRange(AnyStepHandling) const; |
| 59 virtual bool parseToDateComponentsInternal(const String&, DateComponents*) c
onst OVERRIDE; | 59 virtual bool parseToDateComponentsInternal(const String&, DateComponents*) c
onst OVERRIDE; |
| 60 virtual bool setMillisecondToDateComponents(double, DateComponents*) const O
VERRIDE; | 60 virtual bool setMillisecondToDateComponents(double, DateComponents*) const O
VERRIDE; |
| 61 virtual bool isDateTimeLocalField() const OVERRIDE; | 61 virtual bool isDateTimeLocalField() const OVERRIDE; |
| 62 | 62 |
| 63 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 63 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 64 // BaseMultipleFieldsDateAndTimeInputType functions | 64 // BaseMultipleFieldsDateAndTimeInputType functions |
| 65 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const O
VERRIDE FINAL; | 65 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const O
VERRIDE FINAL; |
| 66 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c
onst DateComponents&) const OVERRIDE FINAL; | 66 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c
onst DateComponents&) const OVERRIDE FINAL; |
| 67 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h
asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const; | 67 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h
asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const; |
| 68 #endif | 68 #endif |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace WebCore | 71 } // namespace WebCore |
| 72 | 72 |
| 73 #endif // DateTimeLocalInputType_h | 73 #endif // DateTimeLocalInputType_h |
| OLD | NEW |