1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_APP_LIST_COCOA_APPS_GRID_CONTROLLER_H_
6 #define UI_APP_LIST_COCOA_APPS_GRID_CONTROLLER_H_
8 #import <Cocoa/Cocoa.h>
10 #include "base/mac/scoped_nsobject.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "ui/app_list/app_list_export.h"
13 #import "ui/app_list/cocoa/app_list_pager_view.h"
14 #import "ui/app_list/cocoa/scroll_view_with_no_scrollbars.h"
18 class AppListViewDelegate
;
19 class AppsGridDelegateBridge
;
22 @
class AppsGridViewItem
;
23 @protocol AppsPaginationModelObserver
;
24 @
class AppsCollectionViewDragManager
;
26 // Controls a grid of views, representing AppListItemList sub models.
28 @interface AppsGridController
: NSViewController
<GestureScrollDelegate
,
30 NSCollectionViewDelegate
> {
32 app_list::AppListViewDelegate
* delegate_
; // Weak. Owned by view controller.
33 scoped_ptr
<app_list::AppsGridDelegateBridge
> bridge_
;
35 base::scoped_nsobject
<AppsCollectionViewDragManager
> dragManager_
;
36 base::scoped_nsobject
<NSMutableArray
> pages_
;
37 base::scoped_nsobject
<NSMutableArray
> items_
;
38 base::scoped_nsobject
<NSTimer
> scrollWhileDraggingTimer_
;
40 id
<AppsPaginationModelObserver
> paginationObserver_
;
42 // Index of the currently visible page.
44 // The page to which the view is currently animating a scroll.
45 size_t targetScrollPage_
;
46 // The page to start scrolling to when the timer expires.
47 size_t scheduledScrollPage_
;
49 // Whether we are currently animating a scroll to the nearest page.
50 BOOL animatingScroll_
;
53 @
property(assign
, nonatomic
) id
<AppsPaginationModelObserver
> paginationObserver
;
55 + (void)setScrollAnimationDuration
:(NSTimeInterval
)duration
;
57 // The amount the grid view has been extended to hold the sometimes present
58 // invisible scroller that allows for gesture scrolling.
59 + (CGFloat
)scrollerPadding
;
61 - (NSCollectionView
*)collectionViewAtPageIndex
:(size_t)pageIndex
;
62 - (size_t)pageIndexForCollectionView
:(NSCollectionView
*)page
;
64 - (AppsGridViewItem
*)itemAtIndex
:(size_t)itemIndex
;
66 - (app_list::AppListModel
*)model
;
68 - (void)setDelegate
:(app_list::AppListViewDelegate
*)newDelegate
;
70 - (size_t)visiblePage
;
72 // Calls item->Activate for the currently selected item by simulating a click.
73 - (void)activateSelection
;
75 // Return the number of pages of icons in the grid.
78 // Return the number of items over all pages in the grid.
81 // Scroll to a page in the grid view with an animation.
82 - (void)scrollToPage
:(size_t)pageIndex
;
84 // Start a timer to scroll to a new page, if |locationInWindow| is to the left
85 // or the right of the view, or if it is over a pager segment. Cancels any
86 // existing timer if the target page changes.
87 - (void)maybeChangePageForPoint
:(NSPoint
)locationInWindow
;
89 // Cancel a timer that may have been set by maybeChangePageForPoint().
90 - (void)cancelScrollTimer
;
92 // Moves an item within the view only, for dragging or in response to model
94 - (void)moveItemInView
:(size_t)fromIndex
95 toItemIndex
:(size_t)toIndex
;
97 // Moves an item in the item model. Does not adjust the view.
98 - (void)moveItemWithIndex
:(size_t)itemIndex
99 toModelIndex
:(size_t)modelIndex
;
101 // Return the index of the selected item.
102 - (NSUInteger
)selectedItemIndex
;
104 // Moves the selection to the given index.
105 - (void)selectItemAtIndex
:(NSUInteger
)index
;
107 // Handle key actions. Similar to doCommandBySelector from NSResponder but that
108 // requires this class to be in the responder chain. Instead this method is
109 // invoked by the AppListViewController.
110 // Returns YES if this handled navigation or launched an app.
111 - (BOOL
)handleCommandBySelector
:(SEL
)command
;
115 @interface
AppsGridController(TestingAPI
)
117 - (AppsCollectionViewDragManager
*)dragManager
;
118 - (size_t)scheduledScrollPage
;
122 #endif // UI_APP_LIST_COCOA_APPS_GRID_CONTROLLER_H_