~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/html/HTMLOptGroupElement.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#define HTMLOptGroupElement_h
26
26
 
27
27
#include "HTMLFormControlElement.h"
 
28
#include "OptionGroupElement.h"
28
29
 
29
30
namespace WebCore {
30
31
    
31
32
class HTMLSelectElement;
32
33
 
33
 
class HTMLOptGroupElement : public HTMLFormControlElement {
 
34
class HTMLOptGroupElement : public HTMLFormControlElement, public OptionGroupElement {
34
35
public:
35
36
    HTMLOptGroupElement(const QualifiedName&, Document*, HTMLFormElement* = 0);
36
37
 
37
38
    virtual bool checkDTD(const Node*);
38
 
    virtual const AtomicString& type() const;
 
39
    virtual const AtomicString& formControlType() const;
 
40
    virtual bool supportsFocus() const;
39
41
    virtual bool isFocusable() const;
40
42
    virtual void parseMappedAttribute(MappedAttribute*);
41
43
    virtual bool rendererIsNeeded(RenderStyle*) { return false; }
53
55
    String label() const;
54
56
    void setLabel(const String&);
55
57
    
56
 
    String groupLabelText() const;
 
58
    virtual String groupLabelText() const;
57
59
    HTMLSelectElement* ownerSelectElement() const;
58
60
    virtual void accessKeyAction(bool sendToAnyElement);
59
61