| 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 UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ | 5 #ifndef UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ |
| 6 #define UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ | 6 #define UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "ui/app_list/app_list_export.h" | 9 #include "ui/app_list/app_list_export.h" |
| 10 #include "ui/app_list/signin_delegate_observer.h" | 10 #include "ui/app_list/signin_delegate_observer.h" |
| 11 #include "ui/views/bubble/bubble_delegate.h" | 11 #include "ui/views/bubble/bubble_delegate.h" |
| 12 | 12 |
| 13 namespace views { | 13 namespace views { |
| 14 class Widget; | 14 class Widget; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace app_list { | 17 namespace app_list { |
| 18 | 18 class ApplicationDragAndDropHost; |
| 19 class AppListMainView; | 19 class AppListMainView; |
| 20 class AppListModel; | 20 class AppListModel; |
| 21 class AppListViewDelegate; | 21 class AppListViewDelegate; |
| 22 class PaginationModel; | 22 class PaginationModel; |
| 23 class SigninDelegate; | 23 class SigninDelegate; |
| 24 class SigninView; | 24 class SigninView; |
| 25 | 25 |
| 26 // AppListView is the top-level view and controller of app list UI. It creates | 26 // AppListView is the top-level view and controller of app list UI. It creates |
| 27 // and hosts a AppsGridView and passes AppListModel to it for display. | 27 // and hosts a AppsGridView and passes AppListModel to it for display. |
| 28 class APP_LIST_EXPORT AppListView : public views::BubbleDelegateView, | 28 class APP_LIST_EXPORT AppListView : public views::BubbleDelegateView, |
| 29 public SigninDelegateObserver { | 29 public SigninDelegateObserver { |
| 30 public: | 30 public: |
| 31 // Takes ownership of |delegate|. | 31 // Takes ownership of |delegate|. |
| 32 explicit AppListView(AppListViewDelegate* delegate); | 32 explicit AppListView(AppListViewDelegate* delegate); |
| 33 virtual ~AppListView(); | 33 virtual ~AppListView(); |
| 34 | 34 |
| 35 // Initializes the widget. | 35 // Initializes the widget. |
| 36 void InitAsBubble(gfx::NativeView parent, | 36 void InitAsBubble(gfx::NativeView parent, |
| 37 PaginationModel* pagination_model, | 37 PaginationModel* pagination_model, |
| 38 views::View* anchor, | 38 views::View* anchor, |
| 39 const gfx::Point& anchor_point, | 39 const gfx::Point& anchor_point, |
| 40 views::BubbleBorder::Arrow arrow, | 40 views::BubbleBorder::Arrow arrow, |
| 41 bool border_accepts_events); | 41 bool border_accepts_events); |
| 42 | 42 |
| 43 void SetBubbleArrow(views::BubbleBorder::Arrow arrow); | 43 void SetBubbleArrow(views::BubbleBorder::Arrow arrow); |
| 44 | 44 |
| 45 void SetAnchorPoint(const gfx::Point& anchor_point); | 45 void SetAnchorPoint(const gfx::Point& anchor_point); |
| 46 | 46 |
| 47 // If |drag_and_drop_host| is not NULL it will be called upon drag and drop |
| 48 // operations outside the application list. This has to be called after |
| 49 // InitAsBubble was called since the app list object needs to exist so that |
| 50 // it can set the host. |
| 51 void SetDragAndDropHostOfCurrentAppList( |
| 52 app_list::ApplicationDragAndDropHost* drag_and_drop_host); |
| 53 |
| 47 // Shows the UI when there are no pending icon loads. Otherwise, starts a | 54 // Shows the UI when there are no pending icon loads. Otherwise, starts a |
| 48 // timer to show the UI when a maximum allowed wait time has expired. | 55 // timer to show the UI when a maximum allowed wait time has expired. |
| 49 void ShowWhenReady(); | 56 void ShowWhenReady(); |
| 50 | 57 |
| 51 void Close(); | 58 void Close(); |
| 52 | 59 |
| 53 void UpdateBounds(); | 60 void UpdateBounds(); |
| 54 | 61 |
| 55 // Overridden from views::View: | 62 // Overridden from views::View: |
| 56 virtual gfx::Size GetPreferredSize() OVERRIDE; | 63 virtual gfx::Size GetPreferredSize() OVERRIDE; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 98 |
| 92 AppListMainView* app_list_main_view_; | 99 AppListMainView* app_list_main_view_; |
| 93 SigninView* signin_view_; | 100 SigninView* signin_view_; |
| 94 | 101 |
| 95 DISALLOW_COPY_AND_ASSIGN(AppListView); | 102 DISALLOW_COPY_AND_ASSIGN(AppListView); |
| 96 }; | 103 }; |
| 97 | 104 |
| 98 } // namespace app_list | 105 } // namespace app_list |
| 99 | 106 |
| 100 #endif // UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ | 107 #endif // UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ |
| OLD | NEW |