OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Checkbox
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Checkbox.js
30
WebInspector.
Checkbox
= function(label, className, tooltip)
34
this._inputElement.type = "
checkbox
";
43
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 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 string16& label)
67
// Limit the
checkbox
height to match the legacy appearance.
72
Checkbox
::~
Checkbox
() {
75
void
Checkbox
::SetChecked(bool checked) {
80
void
Checkbox
::Layout()
[
all
...]
Completed in 61 milliseconds