Home
last modified time | relevance | path

Searched refs:views (Results 1 – 25 of 1832) sorted by relevance

12345678910>>...74

/external/chromium_org/third_party/skia/gyp/
Dviews.gyp10 'target_name': 'views',
19 '../include/views',
20 '../include/views/unix',
23 '../include/views/SkApplication.h',
24 '../include/views/SkBGViewArtist.h',
25 '../include/views/SkEvent.h',
26 '../include/views/SkEventSink.h',
27 '../include/views/SkKey.h',
28 '../include/views/SkOSMenu.h',
29 '../include/views/SkOSWindow_Mac.h',
[all …]
/external/skia/gyp/
Dviews.gyp10 'target_name': 'views',
19 '../include/views',
20 '../include/views/unix',
23 '../include/views/SkApplication.h',
24 '../include/views/SkBGViewArtist.h',
25 '../include/views/SkEvent.h',
26 '../include/views/SkEventSink.h',
27 '../include/views/SkKey.h',
28 '../include/views/SkOSMenu.h',
29 '../include/views/SkOSWindow_Mac.h',
[all …]
/external/chromium_org/chrome/browser/ui/views/website_settings/
Dwebsite_settings_popup_view.cc122 class PopupHeaderView : public views::View {
124 explicit PopupHeaderView(views::ButtonListener* close_button_listener);
136 views::Label* name_;
138 views::Label* status_;
146 class InternalPageInfoPopupView : public views::BubbleDelegateView {
148 explicit InternalPageInfoPopupView(views::View* anchor_view);
152 virtual void OnWidgetDestroying(views::Widget* widget) OVERRIDE;
162 PopupHeaderView::PopupHeaderView(views::ButtonListener* close_button_listener) in PopupHeaderView()
164 views::GridLayout* layout = new views::GridLayout(this); in PopupHeaderView()
168 views::ColumnSet* column_set = layout->AddColumnSet(label_column); in PopupHeaderView()
[all …]
Dpermissions_bubble_view.cc55 class PermissionCombobox : public views::MenuButton,
56 public views::MenuButtonListener {
85 scoped_ptr<views::MenuRunner> menu_runner_;
114 new views::MenuRunner(model_.get(), views::MenuRunner::HAS_MNEMONICS)); in OnMenuButtonClicked()
121 views::MENU_ANCHOR_TOPLEFT, in OnMenuButtonClicked()
123 views::MenuRunner::MENU_DELETED) { in OnMenuButtonClicked()
171 class PermissionsBubbleDelegateView : public views::BubbleDelegateView,
172 public views::ButtonListener,
173 public views::ComboboxListener,
177 views::View* anchor,
[all …]
Dwebsite_settings_popup_view.h33 namespace views {
43 public views::BubbleDelegateView,
44 public views::ButtonListener,
45 public views::LinkListener,
46 public views::TabbedPaneListener,
51 static void ShowPopup(views::View* anchor_view,
61 WebsiteSettingsPopupView(views::View* anchor_view,
73 virtual void OnWidgetDestroying(views::Widget* widget) OVERRIDE;
76 virtual void ButtonPressed(views::Button* button,
80 virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE;
[all …]
/external/chromium_org/chrome/browser/ui/views/profiles/
Dprofile_chooser_view.h30 namespace views {
41 class ProfileChooserView : public views::BubbleDelegateView,
42 public views::ButtonListener,
43 public views::LinkListener,
44 public views::StyledLabelListener,
45 public views::TextfieldController,
58 views::View* anchor_view,
59 views::BubbleBorder::Arrow arrow,
60 views::BubbleBorder::BubbleAlignment border_alignment,
77 typedef std::map<views::Button*, int> ButtonIndexes;
[all …]
Dprofile_chooser_view.cc83 views::GridLayout* CreateSingleColumnLayout(views::View* view, int width) { in CreateSingleColumnLayout()
84 views::GridLayout* layout = new views::GridLayout(view); in CreateSingleColumnLayout()
87 views::ColumnSet* columns = layout->AddColumnSet(0); in CreateSingleColumnLayout()
88 columns->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL, 0, in CreateSingleColumnLayout()
89 views::GridLayout::FIXED, width, width); in CreateSingleColumnLayout()
93 views::Link* CreateLink(const base::string16& link_text, in CreateLink()
94 views::LinkListener* listener) { in CreateLink()
95 views::Link* link_button = new views::Link(link_text); in CreateLink()
136 class BackgroundColorHoverButton : public views::LabelButton {
138 BackgroundColorHoverButton(views::ButtonListener* listener, in BackgroundColorHoverButton()
[all …]
/external/chromium_org/ui/app_list/
DBUILD.gn82 "views/apps_container_view.cc",
83 "views/apps_container_view.h",
84 "views/app_list_background.cc",
85 "views/app_list_background.h",
86 "views/app_list_drag_and_drop_host.h",
87 "views/app_list_folder_view.cc",
88 "views/app_list_folder_view.h",
89 "views/app_list_item_view.cc",
90 "views/app_list_item_view.h",
91 "views/app_list_main_view.cc",
[all …]
Dapp_list.gyp99 'views/apps_container_view.cc',
100 'views/apps_container_view.h',
101 'views/app_list_background.cc',
102 'views/app_list_background.h',
103 'views/app_list_drag_and_drop_host.h',
104 'views/app_list_folder_view.cc',
105 'views/app_list_folder_view.h',
106 'views/app_list_item_view.cc',
107 'views/app_list_item_view.h',
108 'views/app_list_main_view.cc',
[all …]
/external/chromium_org/chrome/browser/first_run/
Dtry_chrome_dialog_view.cc83 views::ImageView* icon = new views::ImageView(); in ShowModal()
88 views::Widget::InitParams params(views::Widget::InitParams::TYPE_POPUP); in ShowModal()
89 params.activatable = views::Widget::InitParams::ACTIVATABLE_YES; in ShowModal()
91 popup_ = new views::Widget; in ShowModal()
94 views::View* root_view = popup_->GetRootView(); in ShowModal()
97 views::Background::CreateSolidBackground(0xfc, 0xfc, 0xfc)); in ShowModal()
99 views::GridLayout* layout = views::GridLayout::CreatePanel(root_view); in ShowModal()
101 views::ColumnSet* columns; in ShowModal()
105 columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::LEADING, 0, in ShowModal()
106 views::GridLayout::FIXED, icon_size.width(), in ShowModal()
[all …]
/external/chromium_org/chrome/browser/ui/views/passwords/
Dmanage_password_item_view.cc29 void BuildColumnSet(views::GridLayout* layout, int column_set_id) { in BuildColumnSet()
30 views::ColumnSet* column_set = layout->AddColumnSet(column_set_id); in BuildColumnSet()
33 column_set->AddPaddingColumn(0, views::kItemLabelSpacing); in BuildColumnSet()
34 column_set->AddColumn(views::GridLayout::FILL, in BuildColumnSet()
35 views::GridLayout::FILL, in BuildColumnSet()
37 views::GridLayout::USE_PREF, in BuildColumnSet()
42 column_set->AddPaddingColumn(0, views::kItemLabelSpacing); in BuildColumnSet()
43 column_set->AddColumn(views::GridLayout::FILL, in BuildColumnSet()
44 views::GridLayout::FILL, in BuildColumnSet()
46 views::GridLayout::USE_PREF, in BuildColumnSet()
[all …]
Dmanage_passwords_bubble_view.cc65 void BuildColumnSet(views::GridLayout* layout, ColumnSetType type) { in BuildColumnSet()
66 views::ColumnSet* column_set = layout->AddColumnSet(type); in BuildColumnSet()
67 column_set->AddPaddingColumn(0, views::kPanelHorizMargin); in BuildColumnSet()
68 int full_width = kDesiredBubbleWidth - (2 * views::kPanelHorizMargin); in BuildColumnSet()
71 column_set->AddColumn(views::GridLayout::FILL, in BuildColumnSet()
72 views::GridLayout::FILL, in BuildColumnSet()
74 views::GridLayout::FIXED, in BuildColumnSet()
80 column_set->AddColumn(views::GridLayout::TRAILING, in BuildColumnSet()
81 views::GridLayout::CENTER, in BuildColumnSet()
83 views::GridLayout::USE_PREF, in BuildColumnSet()
[all …]
/external/chromium_org/ui/views/corewm/
DDEPS4 "-ui/views",
5 "+ui/views/corewm",
6 "+ui/views/views_export.h",
12 "+ui/views/widget/tooltip_manager.h",
16 "+ui/views/background.h",
17 "+ui/views/border.h",
18 "+ui/views/widget/widget.h",
22 "+ui/views/test/views_test_base.h",
23 "+ui/views/view.h",
24 "+ui/views/widget/desktop_aura/desktop_native_widget_aura.h",
[all …]
/external/chromium_org/chrome/browser/ui/views/autofill/
Dautofill_dialog_views.h35 namespace views {
65 public views::DialogDelegateView,
66 public views::WidgetObserver,
67 public views::TextfieldController,
68 public views::FocusChangeListener,
69 public views::ComboboxListener,
70 public views::StyledLabelListener,
71 public views::MenuButtonListener {
112 virtual views::View* CreateOverlayView() OVERRIDE;
119 virtual views::View* GetInitiallyFocusedView() OVERRIDE;
[all …]
/external/chromium_org/chrome/browser/ui/views/extensions/
Dextension_install_dialog_view.cc102 views::View* parent = static_cast<views::View*>(data); in AddResourceIcon()
103 views::ImageView* image_view = new views::ImageView(); in AddResourceIcon()
119 BulletedView::BulletedView(views::View* view) { in BulletedView()
120 views::GridLayout* layout = new views::GridLayout(this); in BulletedView()
122 views::ColumnSet* column_set = layout->AddColumnSet(0); in BulletedView()
123 column_set->AddColumn(views::GridLayout::CENTER, in BulletedView()
124 views::GridLayout::LEADING, in BulletedView()
126 views::GridLayout::FIXED, in BulletedView()
129 column_set->AddColumn(views::GridLayout::LEADING, in BulletedView()
130 views::GridLayout::LEADING, in BulletedView()
[all …]
Dmedia_galleries_dialog_views.cc36 class ScrollableView : public views::View {
57 views::View::Layout(); in Layout()
65 contents_(new views::View()), in MediaGalleriesDialogViews()
93 int dialog_content_width = views::Widget::GetLocalizedContentsWidth( in InitChildViews()
95 views::GridLayout* layout = views::GridLayout::CreatePanel(contents_); in InitChildViews()
99 views::ColumnSet* columns = layout->AddColumnSet(column_set_id); in InitChildViews()
100 columns->AddColumn(views::GridLayout::LEADING, in InitChildViews()
101 views::GridLayout::LEADING, in InitChildViews()
103 views::GridLayout::FIXED, in InitChildViews()
108 views::Label* subtext = new views::Label(controller_->GetSubtext()); in InitChildViews()
[all …]
/external/chromium_org/chrome/browser/ui/views/
Dglobal_error_bubble_view.cc47 views::View* wrench_button = browser_view->toolbar()->app_menu(); in ShowStandardBubbleView()
50 views::BubbleBorder::TOP_RIGHT, in ShowStandardBubbleView()
53 views::BubbleDelegateView::CreateBubble(bubble_view); in ShowStandardBubbleView()
61 views::View* anchor_view, in GlobalErrorBubbleView()
62 views::BubbleBorder::Arrow arrow, in GlobalErrorBubbleView()
75 scoped_ptr<views::ImageView> image_view(new views::ImageView()); in GlobalErrorBubbleView()
79 scoped_ptr<views::Label> title_label(new views::Label(title_string)); in GlobalErrorBubbleView()
85 std::vector<views::Label*> message_labels; in GlobalErrorBubbleView()
87 views::Label* message_label = new views::Label(message_strings[i]); in GlobalErrorBubbleView()
95 scoped_ptr<views::LabelButton> accept_button( in GlobalErrorBubbleView()
[all …]
Doutdated_upgrade_bubble_view.cc43 const int kButtonPadding = views::kRelatedButtonHSpacing - 2;
63 void OutdatedUpgradeBubbleView::ShowBubble(views::View* anchor_view, in ShowBubble()
70 views::BubbleDelegateView::CreateBubble(upgrade_bubble_)->Show(); in ShowBubble()
94 views::View* OutdatedUpgradeBubbleView::GetInitiallyFocusedView() { in GetInitiallyFocusedView()
108 accept_button_ = new views::LabelButton( in Init()
111 accept_button_->SetStyle(views::Button::STYLE_BUTTON); in Init()
116 later_button_ = new views::LabelButton( in Init()
118 later_button_->SetStyle(views::Button::STYLE_BUTTON); in Init()
120 views::Label* title_label = new views::Label( in Init()
125 views::Label* text_label = new views::Label(l10n_util::GetStringUTF16( in Init()
[all …]
/external/chromium_org/chrome/browser/ui/views/sync/
Done_click_signin_bubble_view.cc58 views::View* anchor_view, in ShowBubble()
81 views::BubbleDelegateView::CreateBubble(bubble_view_)->Show(); in ShowBubble()
99 views::View* anchor_view, in OneClickSigninBubbleView()
102 : BubbleDelegateView(anchor_view, views::BubbleBorder::TOP_RIGHT), in OneClickSigninBubbleView()
116 set_arrow(views::BubbleBorder::NONE); in OneClickSigninBubbleView()
120 int margin = is_sync_dialog_ ? kDialogMargin : views::kButtonVEdgeMarginNew; in OneClickSigninBubbleView()
132 views::GridLayout* layout = new views::GridLayout(this); in Init()
135 SetBorder(views::Border::CreateEmptyBorder(8, 8, 8, 8)); in Init()
138 views::ColumnSet* cs = layout->AddColumnSet(COLUMN_SET_FILL_ALIGN); in Init()
139 cs->AddColumn(views::GridLayout::FILL, views::GridLayout::CENTER, 1, in Init()
[all …]
/external/chromium_org/chrome/browser/ui/views/frame/
Dopaque_browser_frame_view_layout.h17 namespace views {
26 class OpaqueBrowserFrameViewLayout : public views::LayoutManager {
40 const std::vector<views::FrameButton>& leading_buttons,
41 const std::vector<views::FrameButton>& trailing_buttons);
119 void LayoutWindowControls(views::View* host);
120 void LayoutTitleBar(views::View* host);
121 void LayoutAvatar(views::View* host);
122 void LayoutNewStyleAvatar(views::View* host);
124 void ConfigureButton(views::View* host,
125 views::FrameButton button_id,
[all …]
/external/chromium_org/ash/shell/
Dwindow_type_launcher.h13 namespace views {
23 class WindowTypeLauncher : public views::WidgetDelegateView,
24 public views::ButtonListener,
25 public views::MenuDelegate,
26 public views::ContextMenuController {
44 virtual views::View* GetContentsView() OVERRIDE;
51 virtual void ButtonPressed(views::Button* sender,
58 virtual void ShowContextMenuForView(views::View* source,
62 views::LabelButton* create_button_;
63 views::LabelButton* create_persistant_button_;
[all …]
Dwindow_type_launcher.cc38 using views::MenuItemView;
39 using views::MenuRunner;
52 class ModalWindow : public views::WidgetDelegateView,
53 public views::ButtonListener {
58 open_button_(new views::LabelButton(this, in ModalWindow()
61 open_button_->SetStyle(views::Button::STYLE_BUTTON); in ModalWindow()
68 views::Widget* widget = in OpenModalWindow()
69 views::Widget::CreateWindowWithParent(new ModalWindow(modal_type), in OpenModalWindow()
91 virtual views::View* GetContentsView() OVERRIDE { in GetContentsView()
105 virtual void ButtonPressed(views::Button* sender, in ButtonPressed()
[all …]
/external/chromium_org/chrome/browser/ui/views/apps/app_info_dialog/
Dapp_info_panel.cc25 views::Label* AppInfoPanel::CreateHeading(const base::string16& text) const { in CreateHeading()
26 views::Label* label = new views::Label(text); in CreateHeading()
33 views::View* AppInfoPanel::CreateVerticalStack(int child_spacing) const { in CreateVerticalStack()
34 views::View* vertically_stacked_view = new views::View(); in CreateVerticalStack()
36 new views::BoxLayout(views::BoxLayout::kVertical, 0, 0, child_spacing)); in CreateVerticalStack()
40 views::View* AppInfoPanel::CreateVerticalStack() const { in CreateVerticalStack()
41 return CreateVerticalStack(views::kRelatedControlVerticalSpacing); in CreateVerticalStack()
44 views::View* AppInfoPanel::CreateHorizontalStack(int child_spacing) const { in CreateHorizontalStack()
45 views::View* vertically_stacked_view = new views::View(); in CreateHorizontalStack()
47 new views::BoxLayout(views::BoxLayout::kHorizontal, 0, 0, child_spacing)); in CreateHorizontalStack()
[all …]
/external/chromium_org/chrome/browser/ui/views/accessibility/
Daccessibility_event_router_views_unittest.cc44 class AccessibilityViewsDelegate : public views::TestViewsDelegate {
51 views::View* view, ui::AXEvent event_type) OVERRIDE { in NotifyAccessibilityEvent()
60 class AccessibilityWindowDelegate : public views::WidgetDelegate {
62 explicit AccessibilityWindowDelegate(views::View* contents) in AccessibilityWindowDelegate()
67 virtual views::View* GetContentsView() OVERRIDE { return contents_; } in GetContentsView()
68 virtual const views::Widget* GetWidget() const OVERRIDE { in GetWidget()
71 virtual views::Widget* GetWidget() OVERRIDE { return contents_->GetWidget(); } in GetWidget()
74 views::View* contents_;
79 class ViewWithNameAndRole : public views::View {
88 views::View::GetAccessibleState(state); in GetAccessibleState()
[all …]
/external/chromium_org/chrome/browser/ui/views/translate/
Dtranslate_bubble_view.cc49 views::LabelButton* CreateLabelButton(views::ButtonListener* listener, in CreateLabelButton()
52 views::LabelButton* button = new views::LabelButton(listener, label); in CreateLabelButton()
54 button->SetStyle(views::Button::STYLE_BUTTON); in CreateLabelButton()
58 views::Link* CreateLink(views::LinkListener* listener, in CreateLink()
61 views::Link* link = new views::Link( in CreateLink()
83 views::View* anchor_view, in ShowBubble()
129 views::BubbleDelegateView::CreateBubble(view)->Show(); in ShowBubble()
131 views::BubbleDelegateView::CreateBubble(view)->ShowInactive(); in ShowBubble()
153 SetLayoutManager(new views::BoxLayout(views::BoxLayout::kVertical, in Init()
176 void TranslateBubbleView::ButtonPressed(views::Button* sender, in ButtonPressed()
[all …]

12345678910>>...74