| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 8 * met: | 8 * met: |
| 9 * | 9 * |
| 10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #ifndef ImageInputType_h | 33 #ifndef ImageInputType_h |
| 34 #define ImageInputType_h | 34 #define ImageInputType_h |
| 35 | 35 |
| 36 #include "core/html/forms/BaseButtonInputType.h" | 36 #include "core/html/forms/BaseButtonInputType.h" |
| 37 #include "platform/geometry/IntPoint.h" | 37 #include "platform/geometry/IntPoint.h" |
| 38 | 38 |
| 39 namespace WebCore { | 39 namespace WebCore { |
| 40 | 40 |
| 41 class ImageInputType : public BaseButtonInputType { | 41 class ImageInputType : public BaseButtonInputType { |
| 42 public: | 42 public: |
| 43 static PassRefPtr<InputType> create(HTMLInputElement*); | 43 static PassRefPtr<InputType> create(HTMLInputElement&); |
| 44 | 44 |
| 45 private: | 45 private: |
| 46 ImageInputType(HTMLInputElement*); | 46 ImageInputType(HTMLInputElement&); |
| 47 virtual const AtomicString& formControlType() const OVERRIDE; | 47 virtual const AtomicString& formControlType() const OVERRIDE; |
| 48 virtual bool isFormDataAppendable() const OVERRIDE; | 48 virtual bool isFormDataAppendable() const OVERRIDE; |
| 49 virtual bool appendFormData(FormDataList&, bool) const OVERRIDE; | 49 virtual bool appendFormData(FormDataList&, bool) const OVERRIDE; |
| 50 virtual bool supportsValidation() const OVERRIDE; | 50 virtual bool supportsValidation() const OVERRIDE; |
| 51 virtual RenderObject* createRenderer(RenderStyle*) const OVERRIDE; | 51 virtual RenderObject* createRenderer(RenderStyle*) const OVERRIDE; |
| 52 virtual void handleDOMActivateEvent(Event*) OVERRIDE; | 52 virtual void handleDOMActivateEvent(Event*) OVERRIDE; |
| 53 virtual void altAttributeChanged() OVERRIDE; | 53 virtual void altAttributeChanged() OVERRIDE; |
| 54 virtual void srcAttributeChanged() OVERRIDE; | 54 virtual void srcAttributeChanged() OVERRIDE; |
| 55 virtual void attach() OVERRIDE; | 55 virtual void attach() OVERRIDE; |
| 56 virtual bool shouldRespectAlignAttribute() OVERRIDE; | 56 virtual bool shouldRespectAlignAttribute() OVERRIDE; |
| 57 virtual bool canBeSuccessfulSubmitButton() OVERRIDE; | 57 virtual bool canBeSuccessfulSubmitButton() OVERRIDE; |
| 58 virtual bool isImageButton() const OVERRIDE; | 58 virtual bool isImageButton() const OVERRIDE; |
| 59 virtual bool isEnumeratable() OVERRIDE; | 59 virtual bool isEnumeratable() OVERRIDE; |
| 60 virtual bool shouldRespectHeightAndWidthAttributes() OVERRIDE; | 60 virtual bool shouldRespectHeightAndWidthAttributes() OVERRIDE; |
| 61 virtual unsigned height() const OVERRIDE; | 61 virtual unsigned height() const OVERRIDE; |
| 62 virtual unsigned width() const OVERRIDE; | 62 virtual unsigned width() const OVERRIDE; |
| 63 | 63 |
| 64 IntPoint m_clickLocation; // Valid only during HTMLFormElement::prepareForSu
bmission(). | 64 IntPoint m_clickLocation; // Valid only during HTMLFormElement::prepareForSu
bmission(). |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 } // namespace WebCore | 67 } // namespace WebCore |
| 68 | 68 |
| 69 #endif // ImageInputType_h | 69 #endif // ImageInputType_h |
| OLD | NEW |