HomeSort by relevance Sort by last modified time
    Searched refs:Combobox (Results 26 - 35 of 35) sorted by null

12

  /external/chromium_org/chrome/browser/ui/views/apps/app_info_dialog/
app_info_summary_panel.cc 29 #include "ui/views/controls/combobox/combobox.h"
36 // A model for a combobox selecting the launch options for a hosted app.
51 // A list of the launch types available in the combobox, in order.
54 // A list of the messages to display in the combobox, in order. The indexes in
63 // TODO(sashab): Use a checkbox for this choice instead of combobox.
258 new views::Combobox(launch_options_combobox_model_.get());
308 void AppInfoSummaryPanel::OnPerformAction(views::Combobox* combobox) {
309 if (combobox == launch_options_combobox_)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_views.cc 50 #include "ui/views/controls/combobox/combobox.h"
147 void SelectComboboxValueOrSetToDefault(views::Combobox* combobox,
149 if (!combobox->SelectValue(value))
150 combobox->SetSelectedIndex(combobox->model()->GetDefaultIndex());
446 // Gets either the Combobox or ExpandingTextfield that is an ancestor (including
449 if (view->GetClassName() == views::Combobox::kViewClassName)
1948 views::Combobox* combobox = new views::Combobox(input_model); local
2059 views::Combobox* combobox = combo_mapping->second; local
2217 views::Combobox* combobox = iter->second; local
2259 views::Combobox* combobox = ComboboxForType(type); local
2493 views::Combobox* combobox = combo_mapping->second; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/passwords/
manage_passwords_bubble_view.cc 24 #include "ui/views/controls/combobox/combobox.h"
25 #include "ui/views/controls/combobox/combobox_listener.h"
174 // and a rejection combobox.
187 // Handles the event when the user changes an index of a combobox.
188 virtual void OnPerformAction(views::Combobox* source) OVERRIDE;
194 // The combobox doesn't take ownership of its model. If we created a
195 // combobox we need to ensure that we delete the model here, and because the
196 // combobox uses the model in it's destructor, we need to make sure we
197 // delete the model _after_ the combobox itself is deleted
    [all...]
  /external/chromium_org/chrome/browser/ui/views/translate/
translate_bubble_view.cc 33 #include "ui/views/controls/combobox/combobox.h"
76 // is referred by Combobox's destructor. Before destroying the models,
240 void TranslateBubbleView::OnPerformAction(views::Combobox* combobox) {
241 HandleComboboxPerformAction(static_cast<ComboboxID>(combobox->id()));
445 denial_combobox_ = new views::Combobox(denial_combobox_model_.get());
448 denial_combobox_->SetStyle(views::Combobox::STYLE_ACTION);
641 new views::Combobox(source_language_combobox_model_.get());
650 new views::Combobox(target_language_combobox_model_.get())
    [all...]
  /external/chromium_org/chrome/browser/chromeos/options/
vpn_config_view.cc 29 #include "ui/views/controls/combobox/combobox.h"
342 void VPNConfigView::OnPerformAction(views::Combobox* combobox) {
511 // Textfield, combobox.
570 provider_type_combobox_ = new views::Combobox(
603 server_ca_cert_combobox_ = new views::Combobox(
620 user_cert_combobox_ = new views::Combobox(user_cert_combobox_model_.get());
    [all...]
  /external/chromium_org/ui/views/focus/
focus_traversal_unittest.cc 16 #include "ui/views/controls/combobox/combobox.h"
244 // Combobox * kComboboxID
373 Combobox* combobox = new Combobox(&combobox_model_); local
374 combobox->SetBounds(label_x + label_width + 5, y, 150, 30);
375 combobox->set_id(kComboboxID);
376 left_container_->AddChildView(combobox);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 117 self.combo = ttk.Combobox()
205 # testing creating combobox with empty string in values
206 combo2 = ttk.Combobox(values=[1, 2, ''])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 117 self.combo = ttk.Combobox()
205 # testing creating combobox with empty string in values
206 combo2 = ttk.Combobox(values=[1, 2, ''])
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
688 class Combobox(Entry):
689 """Ttk Combobox widget combines a text field with a pop-down list of
693 """Construct a Ttk Combobox widget with the parent master.
704 Entry.__init__(self, master, "ttk::combobox", **kw)
708 """If newindex is supplied, sets the combobox value to the
716 """Sets the value of the combobox to value."""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
688 class Combobox(Entry):
689 """Ttk Combobox widget combines a text field with a pop-down list of
693 """Construct a Ttk Combobox widget with the parent master.
704 Entry.__init__(self, master, "ttk::combobox", **kw)
708 """If newindex is supplied, sets the combobox value to the
716 """Sets the value of the combobox to value."""
    [all...]

Completed in 585 milliseconds

12