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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 | 357 |
358 virtual bool isOptionalFormControl() const OVERRIDE FINAL { return !isRequir
edFormControl(); } | 358 virtual bool isOptionalFormControl() const OVERRIDE FINAL { return !isRequir
edFormControl(); } |
359 virtual bool isRequiredFormControl() const OVERRIDE FINAL; | 359 virtual bool isRequiredFormControl() const OVERRIDE FINAL; |
360 virtual bool recalcWillValidate() const OVERRIDE FINAL; | 360 virtual bool recalcWillValidate() const OVERRIDE FINAL; |
361 virtual void requiredAttributeChanged() OVERRIDE FINAL; | 361 virtual void requiredAttributeChanged() OVERRIDE FINAL; |
362 | 362 |
363 void updateType(); | 363 void updateType(); |
364 | 364 |
365 virtual void subtreeHasChanged() OVERRIDE FINAL; | 365 virtual void subtreeHasChanged() OVERRIDE FINAL; |
366 | 366 |
| 367 void setListAttributeTargetObserver(PassOwnPtr<ListAttributeTargetObserver>)
; |
367 void resetListAttributeTargetObserver(); | 368 void resetListAttributeTargetObserver(); |
368 void parseMaxLengthAttribute(const AtomicString&); | 369 void parseMaxLengthAttribute(const AtomicString&); |
369 void updateValueIfNeeded(); | 370 void updateValueIfNeeded(); |
370 | 371 |
371 // Returns null if this isn't associated with any radio button group. | 372 // Returns null if this isn't associated with any radio button group. |
372 RadioButtonGroupScope* radioButtonGroupScope() const; | 373 RadioButtonGroupScope* radioButtonGroupScope() const; |
373 void addToRadioButtonGroup(); | 374 void addToRadioButtonGroup(); |
374 void removeFromRadioButtonGroup(); | 375 void removeFromRadioButtonGroup(); |
375 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 376 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
376 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE; | 377 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE; |
(...skipping 22 matching lines...) Expand all Loading... |
399 RefPtr<InputTypeView> m_inputTypeView; | 400 RefPtr<InputTypeView> m_inputTypeView; |
400 // The ImageLoader must be owned by this element because the loader code ass
umes | 401 // The ImageLoader must be owned by this element because the loader code ass
umes |
401 // that it lives as long as its owning element lives. If we move the loader
into | 402 // that it lives as long as its owning element lives. If we move the loader
into |
402 // the ImageInput object we may delete the loader while this element lives o
n. | 403 // the ImageInput object we may delete the loader while this element lives o
n. |
403 OwnPtr<HTMLImageLoader> m_imageLoader; | 404 OwnPtr<HTMLImageLoader> m_imageLoader; |
404 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 405 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
405 }; | 406 }; |
406 | 407 |
407 } //namespace | 408 } //namespace |
408 #endif | 409 #endif |
OLD | NEW |