| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_POPUP_CONTENTS_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_POPUP_CONTENTS_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_POPUP_CONTENTS_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_POPUP_CONTENTS_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "chrome/browser/ui/omnibox/omnibox_popup_model.h" | 9 #include "chrome/browser/ui/omnibox/omnibox_popup_model.h" |
| 10 #include "chrome/browser/ui/omnibox/omnibox_popup_view.h" | 10 #include "chrome/browser/ui/omnibox/omnibox_popup_view.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 OmniboxView* omnibox_view, | 33 OmniboxView* omnibox_view, |
| 34 OmniboxEditModel* edit_model, | 34 OmniboxEditModel* edit_model, |
| 35 LocationBarView* location_bar_view); | 35 LocationBarView* location_bar_view); |
| 36 | 36 |
| 37 // Returns the bounds the popup should be shown at. This is the display bounds | 37 // Returns the bounds the popup should be shown at. This is the display bounds |
| 38 // and includes offsets for the dropshadow which this view's border renders. | 38 // and includes offsets for the dropshadow which this view's border renders. |
| 39 gfx::Rect GetPopupBounds() const; | 39 gfx::Rect GetPopupBounds() const; |
| 40 | 40 |
| 41 virtual void LayoutChildren(); | 41 virtual void LayoutChildren(); |
| 42 | 42 |
| 43 // Overridden from OmniboxPopupView: | 43 // OmniboxPopupView: |
| 44 bool IsOpen() const override; | 44 bool IsOpen() const override; |
| 45 void InvalidateLine(size_t line) override; | 45 void InvalidateLine(size_t line) override; |
| 46 void UpdatePopupAppearance() override; | 46 void UpdatePopupAppearance() override; |
| 47 gfx::Rect GetTargetBounds() override; | 47 gfx::Rect GetTargetBounds() override; |
| 48 void PaintUpdatesNow() override; | 48 void PaintUpdatesNow() override; |
| 49 void OnDragCanceled() override; | 49 void OnDragCanceled() override; |
| 50 | 50 |
| 51 // Overridden from gfx::AnimationDelegate: | 51 // gfx::AnimationDelegate: |
| 52 void AnimationProgressed(const gfx::Animation* animation) override; | 52 void AnimationProgressed(const gfx::Animation* animation) override; |
| 53 | 53 |
| 54 // Overridden from views::View: | 54 // views::View: |
| 55 void Layout() override; | 55 void Layout() override; |
| 56 views::View* GetTooltipHandlerForPoint(const gfx::Point& point) override; | 56 views::View* GetTooltipHandlerForPoint(const gfx::Point& point) override; |
| 57 bool OnMousePressed(const ui::MouseEvent& event) override; | 57 bool OnMousePressed(const ui::MouseEvent& event) override; |
| 58 bool OnMouseDragged(const ui::MouseEvent& event) override; | 58 bool OnMouseDragged(const ui::MouseEvent& event) override; |
| 59 void OnMouseReleased(const ui::MouseEvent& event) override; | 59 void OnMouseReleased(const ui::MouseEvent& event) override; |
| 60 void OnMouseCaptureLost() override; | 60 void OnMouseCaptureLost() override; |
| 61 void OnMouseMoved(const ui::MouseEvent& event) override; | 61 void OnMouseMoved(const ui::MouseEvent& event) override; |
| 62 void OnMouseEntered(const ui::MouseEvent& event) override; | 62 void OnMouseEntered(const ui::MouseEvent& event) override; |
| 63 void OnMouseExited(const ui::MouseEvent& event) override; | 63 void OnMouseExited(const ui::MouseEvent& event) override; |
| 64 | |
| 65 // Overridden from ui::EventHandler: | |
| 66 void OnGestureEvent(ui::GestureEvent* event) override; | 64 void OnGestureEvent(ui::GestureEvent* event) override; |
| 67 | 65 |
| 68 bool IsSelectedIndex(size_t index) const; | 66 bool IsSelectedIndex(size_t index) const; |
| 69 bool IsHoveredIndex(size_t index) const; | 67 bool IsHoveredIndex(size_t index) const; |
| 70 gfx::Image GetIconIfExtensionMatch(size_t index) const; | 68 gfx::Image GetIconIfExtensionMatch(size_t index) const; |
| 71 bool IsStarredMatch(const AutocompleteMatch& match) const; | 69 bool IsStarredMatch(const AutocompleteMatch& match) const; |
| 72 | 70 |
| 73 int max_match_contents_width() const { | 71 int max_match_contents_width() const { |
| 74 return max_match_contents_width_; | 72 return max_match_contents_width_; |
| 75 } | 73 } |
| 76 | 74 |
| 77 protected: | 75 protected: |
| 78 OmniboxPopupContentsView(const gfx::FontList& font_list, | 76 OmniboxPopupContentsView(const gfx::FontList& font_list, |
| 79 OmniboxView* omnibox_view, | 77 OmniboxView* omnibox_view, |
| 80 OmniboxEditModel* edit_model, | 78 OmniboxEditModel* edit_model, |
| 81 LocationBarView* location_bar_view); | 79 LocationBarView* location_bar_view); |
| 82 ~OmniboxPopupContentsView() override; | 80 ~OmniboxPopupContentsView() override; |
| 83 | 81 |
| 84 LocationBarView* location_bar_view() { return location_bar_view_; } | 82 LocationBarView* location_bar_view() { return location_bar_view_; } |
| 85 | 83 |
| 86 virtual void PaintResultViews(gfx::Canvas* canvas); | 84 virtual void PaintResultViews(gfx::Canvas* canvas); |
| 87 | 85 |
| 88 // Calculates the height needed to show all the results in the model. | 86 // Calculates the height needed to show all the results in the model. |
| 89 virtual int CalculatePopupHeight(); | 87 virtual int CalculatePopupHeight(); |
| 90 virtual OmniboxResultView* CreateResultView(int model_index, | 88 virtual OmniboxResultView* CreateResultView(int model_index, |
| 91 const gfx::FontList& font_list); | 89 const gfx::FontList& font_list); |
| 92 | 90 |
| 93 // Overridden from views::View: | 91 private: |
| 92 class AutocompletePopupWidget; |
| 93 |
| 94 // views::View: |
| 95 const char* GetClassName() const override; |
| 94 void OnPaint(gfx::Canvas* canvas) override; | 96 void OnPaint(gfx::Canvas* canvas) override; |
| 95 // This method should not be triggered directly as we paint our children | 97 // This method should not be triggered directly as we paint our children |
| 96 // in an un-conventional way inside OnPaint. We use a separate canvas to | 98 // in an un-conventional way inside OnPaint. We use a separate canvas to |
| 97 // paint the children. Hence we override this method to a no-op so that | 99 // paint the children. Hence we override this method to a no-op so that |
| 98 // the view hierarchy does not "accidentally" trigger this. | 100 // the view hierarchy does not "accidentally" trigger this. |
| 99 void PaintChildren(gfx::Canvas* canvas, | 101 void PaintChildren(gfx::Canvas* canvas, |
| 100 const views::CullSet& cull_set) override; | 102 const views::CullSet& cull_set) override; |
| 101 | 103 |
| 102 scoped_ptr<OmniboxPopupModel> model_; | |
| 103 | |
| 104 private: | |
| 105 class AutocompletePopupWidget; | |
| 106 | |
| 107 // views::ViewTargeterDelegate: | 104 // views::ViewTargeterDelegate: |
| 108 views::View* TargetForRect(views::View* root, const gfx::Rect& rect) override; | 105 views::View* TargetForRect(views::View* root, const gfx::Rect& rect) override; |
| 109 | 106 |
| 110 // Call immediately after construction. | 107 // Call immediately after construction. |
| 111 void Init(); | 108 void Init(); |
| 112 | 109 |
| 113 // Returns true if the model has a match at the specified index. | 110 // Returns true if the model has a match at the specified index. |
| 114 bool HasMatchAt(size_t index) const; | 111 bool HasMatchAt(size_t index) const; |
| 115 | 112 |
| 116 // Returns the match at the specified index within the popup model. | 113 // Returns the match at the specified index within the popup model. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 130 void UpdateLineEvent(const ui::LocatedEvent& event, | 127 void UpdateLineEvent(const ui::LocatedEvent& event, |
| 131 bool should_set_selected_line); | 128 bool should_set_selected_line); |
| 132 | 129 |
| 133 // Opens an entry from the list depending on the event and the selected | 130 // Opens an entry from the list depending on the event and the selected |
| 134 // disposition. | 131 // disposition. |
| 135 void OpenSelectedLine(const ui::LocatedEvent& event, | 132 void OpenSelectedLine(const ui::LocatedEvent& event, |
| 136 WindowOpenDisposition disposition); | 133 WindowOpenDisposition disposition); |
| 137 | 134 |
| 138 OmniboxResultView* result_view_at(size_t i); | 135 OmniboxResultView* result_view_at(size_t i); |
| 139 | 136 |
| 137 scoped_ptr<OmniboxPopupModel> model_; |
| 138 |
| 140 // The popup that contains this view. We create this, but it deletes itself | 139 // The popup that contains this view. We create this, but it deletes itself |
| 141 // when its window is destroyed. This is a WeakPtr because it's possible for | 140 // when its window is destroyed. This is a WeakPtr because it's possible for |
| 142 // the OS to destroy the window and thus delete this object before we're | 141 // the OS to destroy the window and thus delete this object before we're |
| 143 // deleted, or without our knowledge. | 142 // deleted, or without our knowledge. |
| 144 base::WeakPtr<AutocompletePopupWidget> popup_; | 143 base::WeakPtr<AutocompletePopupWidget> popup_; |
| 145 | 144 |
| 146 // The edit view that invokes us. | 145 // The edit view that invokes us. |
| 147 OmniboxView* omnibox_view_; | 146 OmniboxView* omnibox_view_; |
| 148 | 147 |
| 149 LocationBarView* location_bar_view_; | 148 LocationBarView* location_bar_view_; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 175 | 174 |
| 176 // When the dropdown is not wide enough while displaying postfix suggestions, | 175 // When the dropdown is not wide enough while displaying postfix suggestions, |
| 177 // we use the width of widest match contents to shift the suggestions so that | 176 // we use the width of widest match contents to shift the suggestions so that |
| 178 // the widest suggestion just reaches the end edge. | 177 // the widest suggestion just reaches the end edge. |
| 179 int max_match_contents_width_; | 178 int max_match_contents_width_; |
| 180 | 179 |
| 181 DISALLOW_COPY_AND_ASSIGN(OmniboxPopupContentsView); | 180 DISALLOW_COPY_AND_ASSIGN(OmniboxPopupContentsView); |
| 182 }; | 181 }; |
| 183 | 182 |
| 184 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_POPUP_CONTENTS_VIEW_H_ | 183 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_POPUP_CONTENTS_VIEW_H_ |
| OLD | NEW |