HomeSort by relevance Sort by last modified time
    Searched refs:Checkbox (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/chromium_org/ui/views/examples/
text_example.h 15 class Checkbox;
34 Checkbox* AddCheckbox(GridLayout* layout, const char* name);
65 Checkbox* multiline_checkbox_;
68 Checkbox* break_checkbox_;
71 Checkbox* halo_checkbox_;
74 Checkbox* bold_checkbox_;
77 Checkbox* italic_checkbox_;
80 Checkbox* underline_checkbox_;
checkbox_example.h 13 class Checkbox;
17 // CheckboxExample exercises a Checkbox control.
32 Checkbox* button_;
table_example.h 24 class Checkbox;
63 Checkbox* column1_visible_checkbox_;
64 Checkbox* column2_visible_checkbox_;
65 Checkbox* column3_visible_checkbox_;
66 Checkbox* column4_visible_checkbox_;
multiline_example.h 15 class Checkbox;
47 // Checkbox to enable and disable text rendering in |label_|.
48 Checkbox* label_checkbox_;
checkbox_example.cc 9 #include "ui/views/controls/button/checkbox.h"
16 CheckboxExample::CheckboxExample() : ExampleBase("Checkbox"), count_(0) {
23 button_ = new Checkbox(base::ASCIIToUTF16("Checkbox"));
table_example.cc 14 #include "ui/views/controls/button/checkbox.h"
44 column1_visible_checkbox_ = new Checkbox(
48 column2_visible_checkbox_ = new Checkbox(
52 column3_visible_checkbox_ = new Checkbox(
56 column4_visible_checkbox_ = new Checkbox(
text_example.cc 12 #include "ui/views/controls/button/checkbox.h"
53 // Toggles bit |flag| on |flags| based on state of |checkbox|.
54 void SetFlagFromCheckbox(Checkbox* checkbox, int* flags, int flag) {
55 if (checkbox->checked())
122 Checkbox* TextExample::AddCheckbox(GridLayout* layout, const char* name) {
123 Checkbox* checkbox = new Checkbox(base::ASCIIToUTF16(name)); local
124 checkbox->set_listener(this)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/extensions/
media_gallery_checkbox_view.h 17 class Checkbox;
23 // A view composed of a checkbox, optional folder icon button, and secondary
38 views::Checkbox* checkbox() { return checkbox_; } function in class:MediaGalleryCheckboxView
44 views::Checkbox* checkbox_;
bookmark_app_bubble_view.h 26 class Checkbox;
98 // Checkbox to launch as a tab.
99 views::Checkbox* open_as_tab_checkbox_;
  /external/chromium_org/chrome/browser/ui/views/
first_run_dialog.h 15 class Checkbox;
43 views::Checkbox* make_default_;
44 views::Checkbox* report_crashes_;
create_application_shortcut_view.h 31 class Checkbox;
76 views::Checkbox* AddCheckbox(const base::string16& text, bool checked);
85 views::Checkbox* desktop_check_box_;
86 views::Checkbox* menu_check_box_;
87 views::Checkbox* quick_launch_check_box_;
uninstall_view.h 19 class Checkbox;
61 views::Checkbox* delete_profile_;
62 views::Checkbox* change_default_browser_;
session_crashed_bubble_view.h 18 class Checkbox;
55 // indicating whether the UMA opt-in checkbox should be shown. Called
124 // Checkbox for the user to opt-in to UMA reporting.
125 views::Checkbox* uma_option_;
first_run_dialog.cc 22 #include "ui/views/controls/button/checkbox.h"
93 make_default_ = new views::Checkbox(l10n_util::GetStringUTF16(
99 report_crashes_ = new views::Checkbox(l10n_util::GetStringUTF16(
  /external/chromium_org/ui/views/controls/button/
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...]
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);
radio_button.cc 19 : Checkbox(label) {
90 Checkbox::SetChecked(checked);
98 Checkbox::GetAccessibleState(state);
124 Checkbox::OnFocus();
132 // be toggled on and off like a checkbox.
radio_button.h 9 #include "ui/views/controls/button/checkbox.h"
15 class VIEWS_EXPORT RadioButton : public Checkbox {
36 // Overridden from Checkbox:
  /external/chromium_org/ash/shell/
widgets.cc 10 #include "ui/views/controls/button/checkbox.h"
45 views::Checkbox* checkbox_;
46 views::Checkbox* checkbox_disabled_;
47 views::Checkbox* checkbox_checked_;
48 views::Checkbox* checkbox_checked_disabled_;
59 checkbox_(new views::Checkbox(base::ASCIIToUTF16("Checkbox"))),
60 checkbox_disabled_(new views::Checkbox(
61 base::ASCIIToUTF16("Checkbox disabled"))),
62 checkbox_checked_(new views::Checkbox(
    [all...]
  /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/chrome/browser/chromeos/options/
wimax_config_view.h 21 class Checkbox;
82 views::Checkbox* save_credentials_checkbox_;
83 views::Checkbox* share_network_checkbox_;
wifi_config_view.h 27 class Checkbox;
161 // Enable/Disable "share this network" checkbox.
199 views::Checkbox* save_credentials_checkbox_;
200 views::Checkbox* share_network_checkbox_;
  /external/chromium_org/chrome/browser/first_run/
try_chrome_dialog_view.h 22 class Checkbox;
123 views::Checkbox* make_default_;
  /external/chromium_org/chrome/browser/ui/views/profiles/
profile_reset_bubble_view.h 23 class Checkbox;
68 // Sets up the layout manager and set the report checkbox to the value passed
102 // Checkbox for the user to choose to report the settings or not.
103 views::Checkbox* report_settings_checkbox;
  /external/chromium_org/ui/views/controls/
message_box_view.h 19 class Checkbox;
65 // Returns true if a checkbox is selected, false otherwise. (And false if
66 // the message box has no checkbox.)
73 // Adds a checkbox with the specified label to the message box if this is the
74 // first call. Otherwise, it changes the label of the current checkbox. To
75 // start, the message box has no checkbox until this function is called.
113 // Checkbox for the message box.
114 Checkbox* checkbox_;

Completed in 620 milliseconds

1 2 3 4