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

1 2 3

  /external/chromium_org/ui/views/examples/
text_example.h 16 class Checkbox;
35 Checkbox* AddCheckbox(GridLayout* layout, const char* name);
66 Checkbox* multiline_checkbox_;
69 Checkbox* break_checkbox_;
72 Checkbox* halo_checkbox_;
75 Checkbox* bold_checkbox_;
78 Checkbox* italic_checkbox_;
81 Checkbox* underline_checkbox_;
checkbox_example.h 13 class Checkbox;
17 // CheckboxExample exercises a Checkbox control.
31 Checkbox* button_;
table_example.h 25 class Checkbox;
64 Checkbox* column1_visible_checkbox_;
65 Checkbox* column2_visible_checkbox_;
66 Checkbox* column3_visible_checkbox_;
67 Checkbox* column4_visible_checkbox_;
checkbox_example.cc 9 #include "ui/views/controls/button/checkbox.h"
16 CheckboxExample::CheckboxExample() : ExampleBase("Checkbox"), count_(0) {
23 button_ = new Checkbox(ASCIIToUTF16("Checkbox"));
multiline_example.h 10 #include "ui/views/controls/button/checkbox.h"
47 // Checkbox to enable and disable text rendering in |label_|.
48 Checkbox* label_checkbox_;
table_example.cc 14 #include "ui/views/controls/button/checkbox.h"
42 column1_visible_checkbox_ = new Checkbox(
46 column2_visible_checkbox_ = new Checkbox(
50 column3_visible_checkbox_ = new Checkbox(
54 column4_visible_checkbox_ = new Checkbox(
text_example.cc 12 #include "ui/views/controls/button/checkbox.h"
70 // Toggles bit |flag| on |flags| based on state of |checkbox|.
71 void SetFlagFromCheckbox(Checkbox* checkbox, int* flags, int flag) {
72 if (checkbox->checked())
163 Checkbox* TextExample::AddCheckbox(GridLayout* layout, const char* name) {
164 Checkbox* checkbox = new Checkbox(ASCIIToUTF16(name)); local
165 checkbox->set_listener(this)
    [all...]
  /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 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...]
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);
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/chrome/browser/ui/views/
uninstall_view.h 15 class Checkbox;
52 views::Checkbox* delete_profile_;
53 views::Checkbox* change_default_browser_;
create_application_shortcut_view.h 19 class Checkbox;
67 views::Checkbox* AddCheckbox(const std::wstring& text, bool checked);
75 views::Checkbox* desktop_check_box_;
76 views::Checkbox* menu_check_box_;
77 views::Checkbox* quick_launch_check_box_;
  /external/chromium_org/chrome/browser/ui/views/
create_application_shortcut_view.h 31 class Checkbox;
66 views::Checkbox* AddCheckbox(const base::string16& text, bool checked);
74 views::Checkbox* desktop_check_box_;
75 views::Checkbox* menu_check_box_;
76 views::Checkbox* quick_launch_check_box_;
uninstall_view.h 19 class Checkbox;
61 views::Checkbox* delete_profile_;
62 views::Checkbox* change_default_browser_;
profile_reset_bubble_view.h 22 class Checkbox;
66 // Sets up the layout manager and set the report checkbox to the value passed
97 // Checkbox for the user to choose to report the settings or not.
98 views::Checkbox* report_settings_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(ASCIIToUTF16("Checkbox"))),
60 checkbox_disabled_(new views::Checkbox(
61 ASCIIToUTF16("Checkbox disabled"))),
62 checkbox_checked_(new views::Checkbox(ASCIIToUTF16("Checkbox checked")))
    [all...]
  /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/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;
157 // Enable/Disable "share this network" checkbox.
191 views::Checkbox* save_credentials_checkbox_;
192 views::Checkbox* share_network_checkbox_;
  /external/chromium_org/chrome/browser/ui/views/extensions/
media_galleries_dialog_views.h 21 class Checkbox;
67 typedef std::map<MediaGalleryPrefId, views::Checkbox*> CheckboxMap;
68 typedef std::map<views::Checkbox*, MediaGalleryPrefInfo> NewCheckboxMap;
72 // Adds a checkbox or updates an existing checkbox. Returns true if a new one
91 // A map from media gallery ID to views::Checkbox view.
  /external/chromium_org/chrome/browser/first_run/
try_chrome_dialog_view.h 22 class Checkbox;
123 views::Checkbox* make_default_;
  /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_;
  /external/chromium/chrome/browser/chromeos/options/
wifi_config_view.h 26 class Checkbox;
104 views::Checkbox* save_credentials_checkbox_;
  /external/chromium/chrome/browser/chromeos/login/
eula_view.h 20 class Checkbox;
128 views::Checkbox* usage_statistics_checkbox_;

Completed in 134 milliseconds

1 2 3