Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Side by Side Diff: ui/app_list/app_list_folder_item.h

Issue 667923002: Standardize usage of virtual/override/final in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/accessibility/platform/ax_platform_node_mac.h ('k') | ui/app_list/app_list_folder_item.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 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_APP_LIST_FOLDER_ITEM_H_ 5 #ifndef UI_APP_LIST_APP_LIST_FOLDER_ITEM_H_
6 #define UI_APP_LIST_APP_LIST_FOLDER_ITEM_H_ 6 #define UI_APP_LIST_APP_LIST_FOLDER_ITEM_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 18 matching lines...) Expand all
29 enum FolderType { 29 enum FolderType {
30 // Default folder type. 30 // Default folder type.
31 FOLDER_TYPE_NORMAL, 31 FOLDER_TYPE_NORMAL,
32 // Items can not be moved to/from OEM folders in the UI. 32 // Items can not be moved to/from OEM folders in the UI.
33 FOLDER_TYPE_OEM 33 FOLDER_TYPE_OEM
34 }; 34 };
35 35
36 static const char kItemType[]; 36 static const char kItemType[];
37 37
38 AppListFolderItem(const std::string& id, FolderType folder_type); 38 AppListFolderItem(const std::string& id, FolderType folder_type);
39 virtual ~AppListFolderItem(); 39 ~AppListFolderItem() override;
40 40
41 // Updates the folder's icon. 41 // Updates the folder's icon.
42 void UpdateIcon(); 42 void UpdateIcon();
43 43
44 // Returns the icon of one of the top items with |item_index|. 44 // Returns the icon of one of the top items with |item_index|.
45 const gfx::ImageSkia& GetTopIcon(size_t item_index); 45 const gfx::ImageSkia& GetTopIcon(size_t item_index);
46 46
47 // Returns the target icon bounds for |item| to fly back to its parent folder 47 // Returns the target icon bounds for |item| to fly back to its parent folder
48 // icon in animation UI. If |item| is one of the top item icon, this will 48 // icon in animation UI. If |item| is one of the top item icon, this will
49 // match its corresponding top item icon in the folder icon. Otherwise, 49 // match its corresponding top item icon in the folder icon. Otherwise,
50 // the target icon bounds is centered at the |folder_icon_bounds| with 50 // the target icon bounds is centered at the |folder_icon_bounds| with
51 // the same size of the top item icon. 51 // the same size of the top item icon.
52 // The Rect returned is in the same coordinates of |folder_icon_bounds|. 52 // The Rect returned is in the same coordinates of |folder_icon_bounds|.
53 gfx::Rect GetTargetIconRectInFolderForItem( 53 gfx::Rect GetTargetIconRectInFolderForItem(
54 AppListItem* item, const gfx::Rect& folder_icon_bounds); 54 AppListItem* item, const gfx::Rect& folder_icon_bounds);
55 55
56 AppListItemList* item_list() { return item_list_.get(); } 56 AppListItemList* item_list() { return item_list_.get(); }
57 const AppListItemList* item_list() const { return item_list_.get(); } 57 const AppListItemList* item_list() const { return item_list_.get(); }
58 58
59 FolderType folder_type() const { return folder_type_; } 59 FolderType folder_type() const { return folder_type_; }
60 60
61 // AppListItem 61 // AppListItem
62 virtual void Activate(int event_flags) override; 62 void Activate(int event_flags) override;
63 virtual const char* GetItemType() const override; 63 const char* GetItemType() const override;
64 virtual ui::MenuModel* GetContextMenuModel() override; 64 ui::MenuModel* GetContextMenuModel() override;
65 virtual AppListItem* FindChildItem(const std::string& id) override; 65 AppListItem* FindChildItem(const std::string& id) override;
66 virtual size_t ChildItemCount() const override; 66 size_t ChildItemCount() const override;
67 virtual void OnExtensionPreferenceChanged() override; 67 void OnExtensionPreferenceChanged() override;
68 virtual bool CompareForTest(const AppListItem* other) const override; 68 bool CompareForTest(const AppListItem* other) const override;
69 69
70 // Calculates the top item icons' bounds inside |folder_icon_bounds|. 70 // Calculates the top item icons' bounds inside |folder_icon_bounds|.
71 // Returns the bounds of top item icons in sequence of top left, top right, 71 // Returns the bounds of top item icons in sequence of top left, top right,
72 // bottom left, bottom right. 72 // bottom left, bottom right.
73 static Rects GetTopIconsBounds(const gfx::Rect& folder_icon_bounds); 73 static Rects GetTopIconsBounds(const gfx::Rect& folder_icon_bounds);
74 74
75 // Returns an id for a new folder. 75 // Returns an id for a new folder.
76 static std::string GenerateId(); 76 static std::string GenerateId();
77 77
78 private: 78 private:
79 // AppListItemObserver 79 // AppListItemObserver
80 virtual void ItemIconChanged() override; 80 void ItemIconChanged() override;
81 81
82 // AppListItemListObserver 82 // AppListItemListObserver
83 virtual void OnListItemAdded(size_t index, AppListItem* item) override; 83 void OnListItemAdded(size_t index, AppListItem* item) override;
84 virtual void OnListItemRemoved(size_t index, 84 void OnListItemRemoved(size_t index, AppListItem* item) override;
85 AppListItem* item) override;; 85 ;
86 virtual void OnListItemMoved(size_t from_index, 86 void OnListItemMoved(size_t from_index,
87 size_t to_index, 87 size_t to_index,
88 AppListItem* item) override; 88 AppListItem* item) override;
89 89
90 void UpdateTopItems(); 90 void UpdateTopItems();
91 91
92 // The type of folder; may affect behavior of folder views. 92 // The type of folder; may affect behavior of folder views.
93 const FolderType folder_type_; 93 const FolderType folder_type_;
94 94
95 // List of items in the folder. 95 // List of items in the folder.
96 scoped_ptr<AppListItemList> item_list_; 96 scoped_ptr<AppListItemList> item_list_;
97 97
98 // Top items for generating folder icon. 98 // Top items for generating folder icon.
99 std::vector<AppListItem*> top_items_; 99 std::vector<AppListItem*> top_items_;
100 100
101 DISALLOW_COPY_AND_ASSIGN(AppListFolderItem); 101 DISALLOW_COPY_AND_ASSIGN(AppListFolderItem);
102 }; 102 };
103 103
104 } // namespace app_list 104 } // namespace app_list
105 105
106 #endif // UI_APP_LIST_APP_LIST_FOLDER_ITEM_H_ 106 #endif // UI_APP_LIST_APP_LIST_FOLDER_ITEM_H_
OLDNEW
« no previous file with comments | « ui/accessibility/platform/ax_platform_node_mac.h ('k') | ui/app_list/app_list_folder_item.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698