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_APP_LIST_VIEW_DELEGATE_H_ | 5 #ifndef UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
6 #define UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 6 #define UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 | 158 |
159 // Returns the list of users (for AppListMenu). | 159 // Returns the list of users (for AppListMenu). |
160 virtual const Users& GetUsers() const = 0; | 160 virtual const Users& GetUsers() const = 0; |
161 | 161 |
162 // Returns true if the app list should be centered and in landscape mode. | 162 // Returns true if the app list should be centered and in landscape mode. |
163 virtual bool ShouldCenterWindow() const = 0; | 163 virtual bool ShouldCenterWindow() const = 0; |
164 | 164 |
165 // Adds/removes an observer for profile changes. | 165 // Adds/removes an observer for profile changes. |
166 virtual void AddObserver(AppListViewDelegateObserver* observer) {} | 166 virtual void AddObserver(AppListViewDelegateObserver* observer) {} |
167 virtual void RemoveObserver(AppListViewDelegateObserver* observer) {} | 167 virtual void RemoveObserver(AppListViewDelegateObserver* observer) {} |
| 168 |
| 169 #if !defined(OS_CHROMEOS) |
| 170 // Methods to retrieve properties of the message displayed on the app launcher |
| 171 // above the apps grid. |
| 172 virtual base::string16 GetMessageTitle() const; |
| 173 // Returns the message text (with the placeholder symbol removed). |
| 174 // |message_break| is set to the index where the placeholder was in the |
| 175 // string. |
| 176 virtual base::string16 GetMessageText(size_t* message_break) const; |
| 177 virtual base::string16 GetAppsShortcutName() const; |
| 178 virtual base::string16 GetLearnMoreText() const; |
| 179 virtual base::string16 GetLearnMoreLink() const; |
| 180 virtual gfx::ImageSkia* GetAppsIcon() const; |
| 181 virtual void OpenLearnMoreLink(); |
| 182 #endif |
168 }; | 183 }; |
169 | 184 |
170 } // namespace app_list | 185 } // namespace app_list |
171 | 186 |
172 #endif // UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 187 #endif // UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
OLD | NEW |