OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. |
6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 | 353 |
354 virtual bool isOptionalFormControl() const OVERRIDE FINAL { return !isRequir
edFormControl(); } | 354 virtual bool isOptionalFormControl() const OVERRIDE FINAL { return !isRequir
edFormControl(); } |
355 virtual bool isRequiredFormControl() const OVERRIDE FINAL; | 355 virtual bool isRequiredFormControl() const OVERRIDE FINAL; |
356 virtual bool recalcWillValidate() const OVERRIDE FINAL; | 356 virtual bool recalcWillValidate() const OVERRIDE FINAL; |
357 virtual void requiredAttributeChanged() OVERRIDE FINAL; | 357 virtual void requiredAttributeChanged() OVERRIDE FINAL; |
358 | 358 |
359 void updateType(); | 359 void updateType(); |
360 | 360 |
361 virtual void subtreeHasChanged() OVERRIDE FINAL; | 361 virtual void subtreeHasChanged() OVERRIDE FINAL; |
362 | 362 |
| 363 void setListAttributeTargetObserver(PassOwnPtr<ListAttributeTargetObserver>)
; |
363 void resetListAttributeTargetObserver(); | 364 void resetListAttributeTargetObserver(); |
364 void parseMaxLengthAttribute(const AtomicString&); | 365 void parseMaxLengthAttribute(const AtomicString&); |
365 void updateValueIfNeeded(); | 366 void updateValueIfNeeded(); |
366 | 367 |
367 // Returns null if this isn't associated with any radio button group. | 368 // Returns null if this isn't associated with any radio button group. |
368 RadioButtonGroupScope* radioButtonGroupScope() const; | 369 RadioButtonGroupScope* radioButtonGroupScope() const; |
369 void addToRadioButtonGroup(); | 370 void addToRadioButtonGroup(); |
370 void removeFromRadioButtonGroup(); | 371 void removeFromRadioButtonGroup(); |
371 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 372 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
372 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE; | 373 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE; |
(...skipping 22 matching lines...) Expand all Loading... |
395 RefPtr<InputTypeView> m_inputTypeView; | 396 RefPtr<InputTypeView> m_inputTypeView; |
396 // The ImageLoader must be owned by this element because the loader code ass
umes | 397 // The ImageLoader must be owned by this element because the loader code ass
umes |
397 // that it lives as long as its owning element lives. If we move the loader
into | 398 // that it lives as long as its owning element lives. If we move the loader
into |
398 // the ImageInput object we may delete the loader while this element lives o
n. | 399 // the ImageInput object we may delete the loader while this element lives o
n. |
399 OwnPtr<HTMLImageLoader> m_imageLoader; | 400 OwnPtr<HTMLImageLoader> m_imageLoader; |
400 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 401 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
401 }; | 402 }; |
402 | 403 |
403 } //namespace | 404 } //namespace |
404 #endif | 405 #endif |
OLD | NEW |