summaryrefslogtreecommitdiffstats
path: root/webkit/glue/form_field.h
blob: 88e3ed90badecb5b4a5ab239c9c317a5416789bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef WEBKIT_GLUE_FORM_FIELD_H_
#define WEBKIT_GLUE_FORM_FIELD_H_

#include "base/string16.h"
#include "third_party/WebKit/WebKit/chromium/public/WebInputElement.h"

namespace webkit_glue {

// Stores information about a field in a form.
class FormField {
 public:
  FormField();
  explicit FormField(const WebKit::WebInputElement& input_element);
  FormField(const string16& label,
            const string16& name,
            const string16& value,
            const string16& form_control_type,
            WebKit::WebInputElement::InputType input_type);

  string16 label() const { return label_; }
  string16 name() const { return name_; }
  string16 value() const { return value_; }
  string16 form_control_type() const { return form_control_type_; }
  WebKit::WebInputElement::InputType input_type() const { return input_type_; }

  void set_label(const string16& label) { label_ = label; }
  void set_name(const string16& name) { name_ = name; }
  void set_value(const string16& value) { value_ = value; }
  void set_form_control_type(const string16& form_control_type) {
    form_control_type_ = form_control_type;
  }
  void set_input_type(WebKit::WebInputElement::InputType input_type) {
    input_type_ = input_type;
  }

  bool operator!=(const FormField& field);

 private:
  string16 label_;
  string16 name_;
  string16 value_;
  string16 form_control_type_;
  WebKit::WebInputElement::InputType input_type_;
};

}  // namespace webkit_glue

#endif  // WEBKIT_GLUE_FORM_FIELD_H_