HomeSort by relevance Sort by last modified time
    Searched defs:Checkbox (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Checkbox.js 32 WebInspector.Checkbox = function(label, className, tooltip)
36 this._inputElement.type = "checkbox";
45 WebInspector.Checkbox.prototype = {
  /external/chromium_org/ui/views/controls/button/
checkbox.h 16 // A native themed class representing a checkbox. This class does not use
18 class VIEWS_EXPORT Checkbox : public LabelButton {
22 explicit Checkbox(const base::string16& label);
23 virtual ~Checkbox();
25 // Sets a listener for this checkbox. Checkboxes aren't required to have them
29 // Sets/Gets whether or not the checkbox is checked.
57 // True if the checkbox is checked.
63 DISALLOW_COPY_AND_ASSIGN(Checkbox);
checkbox.cc 5 #include "ui/views/controls/button/checkbox.h"
16 const char Checkbox::kViewClassName[] = "Checkbox";
18 Checkbox::Checkbox(const base::string16& label)
68 // Limit the checkbox height to match the legacy appearance.
73 Checkbox::~Checkbox() {
76 void Checkbox::SetChecked(bool checked) {
81 void Checkbox::Layout()
    [all...]

Completed in 221 milliseconds