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

  /external/chromium/chrome/browser/ui/gtk/infobars/
before_translate_infobar_gtk.cc 34 GtkWidget* combobox = local
37 g_signal_connect(combobox, "changed",
39 gtk_box_pack_start(GTK_BOX(hbox), combobox, FALSE, FALSE, 0); local
translate_infobar_base_gtk.cc 162 GtkWidget* combobox = gtk_combo_box_new_with_model(GTK_TREE_MODEL(model)); local
164 gtk_combo_box_set_active_iter(GTK_COMBO_BOX(combobox), &selected_iter);
167 gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(combobox), renderer, TRUE);
168 gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(combobox), renderer,
171 return combobox;
  /external/chromium_org/chrome/browser/ui/gtk/infobars/
before_translate_infobar_gtk.cc 40 GtkWidget* combobox = CreateLanguageCombobox( local
44 signals()->Connect(combobox, "changed",
46 gtk_box_pack_start(GTK_BOX(new_hbox), combobox, FALSE, FALSE, 0); local
translate_infobar_base_gtk.cc 170 GtkWidget* combobox = gtk_combo_box_new_with_model(GTK_TREE_MODEL(model)); local
172 gtk_combo_box_set_active_iter(GTK_COMBO_BOX(combobox), &selected_iter);
175 gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(combobox), renderer, TRUE);
176 gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(combobox), renderer,
179 return combobox;
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_cookie_view.cc 56 GtkWidget** combobox,
61 *combobox = gtk_combo_box_new_with_model(GTK_TREE_MODEL(*store));
65 gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(*combobox), cell, TRUE);
66 gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(*combobox), cell,
70 gtk_box_pack_start(GTK_BOX(hbox), *combobox, FALSE, FALSE, 0); local
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_chrome_cookie_view.cc 60 GtkWidget** combobox,
65 *combobox = gtk_combo_box_new_with_model(GTK_TREE_MODEL(*store));
69 gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(*combobox), cell, TRUE);
70 gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(*combobox), cell,
74 gtk_box_pack_start(GTK_BOX(hbox), *combobox, FALSE, FALSE, 0); local
  /external/chromium_org/ui/views/examples/
text_example.cc 11 #include "ui/views/controls/combobox/combobox.h"
180 Combobox* TextExample::AddCombobox(GridLayout* layout,
189 Combobox* combobox = new Combobox(combobox_model); local
190 combobox->SetSelectedIndex(0);
191 combobox->set_listener(this);
192 layout->AddView(combobox, kNumColumns - 1, 1);
193 return combobox;
    [all...]
  /external/chromium_org/ui/views/focus/
focus_traversal_unittest.cc 14 #include "ui/views/controls/combobox/combobox.h"
245 // Combobox * kComboboxID
374 Combobox* combobox = new Combobox(&combobox_model_); local
375 combobox->SetBounds(label_x + label_width + 5, y, 150, 30);
376 combobox->set_id(kComboboxID);
377 left_container_->AddChildView(combobox);
  /external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_views.cc 44 #include "ui/views/controls/combobox/combobox.h"
1446 views::Combobox* combobox = ComboboxForInput(input); local
1928 views::Combobox* combobox = new views::Combobox(input_model); local
2018 views::Combobox* combobox = combo_mapping->second; local
2171 views::Combobox* combobox = iter->second; local
    [all...]

Completed in 924 milliseconds