system_tray_delegate.h revision f2477e01787aa58f445919b809d89e252beef54f
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
3// found in the LICENSE file.
4
5#ifndef ASH_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_
6#define ASH_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_
7
8#include <string>
9#include <vector>
10
11#include "ash/ash_export.h"
12#include "ash/system/user/login_status.h"
13#include "base/files/file_path.h"
14#include "base/i18n/time_formatting.h"
15#include "base/memory/scoped_ptr.h"
16#include "base/strings/string16.h"
17#include "ui/gfx/image/image_skia.h"
18#include "ui/gfx/native_widget_types.h"
19
20namespace base {
21class TimeDelta;
22class TimeTicks;
23}
24
25namespace ash {
26
27struct ASH_EXPORT NetworkIconInfo {
28  NetworkIconInfo();
29  ~NetworkIconInfo();
30
31  bool highlight() const { return connected || connecting; }
32
33  bool connecting;
34  bool connected;
35  bool tray_icon_visible;
36  gfx::ImageSkia image;
37  base::string16 name;
38  base::string16 description;
39  std::string service_path;
40  bool is_cellular;
41};
42
43struct ASH_EXPORT BluetoothDeviceInfo {
44  BluetoothDeviceInfo();
45  ~BluetoothDeviceInfo();
46
47  std::string address;
48  base::string16 display_name;
49  bool connected;
50  bool connecting;
51  bool paired;
52};
53
54typedef std::vector<BluetoothDeviceInfo> BluetoothDeviceList;
55
56// Structure that packs progress information of each operation.
57struct ASH_EXPORT DriveOperationStatus {
58  enum OperationType {
59    OPERATION_UPLOAD,
60    OPERATION_DOWNLOAD
61  };
62
63  enum OperationState {
64    OPERATION_NOT_STARTED,
65    OPERATION_IN_PROGRESS,
66    OPERATION_COMPLETED,
67    OPERATION_FAILED,
68  };
69
70  DriveOperationStatus();
71  ~DriveOperationStatus();
72
73  // Unique ID for the operation.
74  int32 id;
75
76  // File path.
77  base::FilePath file_path;
78  // Current operation completion progress [0.0 - 1.0].
79  double progress;
80  OperationType type;
81  OperationState state;
82};
83
84typedef std::vector<DriveOperationStatus> DriveOperationStatusList;
85
86
87struct ASH_EXPORT IMEPropertyInfo {
88  IMEPropertyInfo();
89  ~IMEPropertyInfo();
90
91  bool selected;
92  std::string key;
93  base::string16 name;
94};
95
96typedef std::vector<IMEPropertyInfo> IMEPropertyInfoList;
97
98struct ASH_EXPORT IMEInfo {
99  IMEInfo();
100  ~IMEInfo();
101
102  bool selected;
103  bool third_party;
104  std::string id;
105  base::string16 name;
106  base::string16 medium_name;
107  base::string16 short_name;
108};
109
110typedef std::vector<IMEInfo> IMEInfoList;
111
112class VolumeControlDelegate;
113
114class ASH_EXPORT SystemTrayDelegate {
115 public:
116  virtual ~SystemTrayDelegate() {}
117
118  // Called after SystemTray has been instantiated.
119  virtual void Initialize() = 0;
120
121  // Called before SystemTray is destroyed.
122  virtual void Shutdown() = 0;
123
124  // Returns true if system tray should be visible on startup.
125  virtual bool GetTrayVisibilityOnStartup() = 0;
126
127  // Gets information about the active user.
128  virtual user::LoginStatus GetUserLoginStatus() const = 0;
129  virtual bool IsOobeCompleted() const = 0;
130
131  // Shows UI for changing user's profile picture.
132  virtual void ChangeProfilePicture() = 0;
133
134  // Returns the domain that manages the device, if it is enterprise-enrolled.
135  virtual const std::string GetEnterpriseDomain() const = 0;
136
137  // Returns notification for enterprise enrolled devices.
138  virtual const base::string16 GetEnterpriseMessage() const = 0;
139
140  // Returns the display email of user that manages current
141  // locally managed user.
142  virtual const std::string GetLocallyManagedUserManager() const = 0;
143
144  // Returns the name of user that manages current locally managed user.
145  virtual const base::string16 GetLocallyManagedUserManagerName() const = 0;
146
147  // Returns notification for locally managed users.
148  virtual const base::string16 GetLocallyManagedUserMessage() const = 0;
149
150  // Returns whether a system upgrade is available.
151  virtual bool SystemShouldUpgrade() const = 0;
152
153  // Returns the desired hour clock type.
154  virtual base::HourClockType GetHourClockType() const = 0;
155
156  // Shows settings.
157  virtual void ShowSettings() = 0;
158
159  // Returns true if settings menu item should appear.
160  virtual bool ShouldShowSettings() = 0;
161
162  // Shows the settings related to date, timezone etc.
163  virtual void ShowDateSettings() = 0;
164
165  // Shows the settings related to network. If |service_path| is not empty,
166  // show the settings for that network.
167  virtual void ShowNetworkSettings(const std::string& service_path) = 0;
168
169  // Shows the settings related to bluetooth.
170  virtual void ShowBluetoothSettings() = 0;
171
172  // Shows settings related to multiple displays.
173  virtual void ShowDisplaySettings() = 0;
174
175  // Shows the page that lets you disable performance tracing.
176  virtual void ShowChromeSlow() = 0;
177
178  // Returns true if the notification for the display configuration change
179  // should appear.
180  virtual bool ShouldShowDisplayNotification() = 0;
181
182  // Shows settings related to Google Drive.
183  virtual void ShowDriveSettings() = 0;
184
185  // Shows settings related to input methods.
186  virtual void ShowIMESettings() = 0;
187
188  // Shows help.
189  virtual void ShowHelp() = 0;
190
191  // Show accessilibity help.
192  virtual void ShowAccessibilityHelp() = 0;
193
194  // Show the settings related to accessilibity.
195  virtual void ShowAccessibilitySettings() = 0;
196
197  // Shows more information about public account mode.
198  virtual void ShowPublicAccountInfo() = 0;
199
200  // Shows information about enterprise enrolled devices.
201  virtual void ShowEnterpriseInfo() = 0;
202
203  // Shows information about locally managed users.
204  virtual void ShowLocallyManagedUserInfo() = 0;
205
206  // Shows login UI to add other users to this session.
207  virtual void ShowUserLogin() = 0;
208
209  // Attempts to shut down the system.
210  virtual void ShutDown() = 0;
211
212  // Attempts to sign out the user.
213  virtual void SignOut() = 0;
214
215  // Attempts to lock the screen.
216  virtual void RequestLockScreen() = 0;
217
218  // Attempts to restart the system for update.
219  virtual void RequestRestartForUpdate() = 0;
220
221  // Returns a list of available bluetooth devices.
222  virtual void GetAvailableBluetoothDevices(BluetoothDeviceList* devices) = 0;
223
224  // Requests bluetooth start discovering devices.
225  virtual void BluetoothStartDiscovering() = 0;
226
227  // Requests bluetooth stop discovering devices.
228  virtual void BluetoothStopDiscovering() = 0;
229
230  // Connect to a specific bluetooth device.
231  virtual void ConnectToBluetoothDevice(const std::string& address) = 0;
232
233  // Returns true if bluetooth adapter is discovering bluetooth devices.
234  virtual bool IsBluetoothDiscovering() = 0;
235
236  // Returns the currently selected IME.
237  virtual void GetCurrentIME(IMEInfo* info) = 0;
238
239  // Returns a list of availble IMEs.
240  virtual void GetAvailableIMEList(IMEInfoList* list) = 0;
241
242  // Returns a list of properties for the currently selected IME.
243  virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) = 0;
244
245  // Switches to the selected input method.
246  virtual void SwitchIME(const std::string& ime_id) = 0;
247
248  // Activates an IME property.
249  virtual void ActivateIMEProperty(const std::string& key) = 0;
250
251  // Cancels ongoing drive operation.
252  virtual void CancelDriveOperation(int32 operation_id) = 0;
253
254  // Returns information about the ongoing drive operations.
255  virtual void GetDriveOperationStatusList(
256      DriveOperationStatusList* list) = 0;
257
258  // Shows UI to configure or activate the network specified by |network_id|,
259  // which may include showing Payment or Portal UI when appropriate.
260  // |parent_window| is used to parent any configuration UI. If NULL a default
261  // window will be used.
262  virtual void ShowNetworkConfigure(const std::string& network_id,
263                                    gfx::NativeWindow parent_window) = 0;
264
265  // Shows UI to enroll the network specified by |network_id| if appropriate
266  // and returns true, otherwise returns false. |parent_window| is used
267  // to parent any configuration UI. If NULL a default window will be used.
268  virtual bool EnrollNetwork(const std::string& network_id,
269                             gfx::NativeWindow parent_window) = 0;
270
271  // Shows UI to manage bluetooth devices.
272  virtual void ManageBluetoothDevices() = 0;
273
274  // Toggles bluetooth.
275  virtual void ToggleBluetooth() = 0;
276
277  // Shows UI to unlock a mobile sim.
278  virtual void ShowMobileSimDialog() = 0;
279
280  // Shows UI to setup a mobile network.
281  virtual void ShowMobileSetupDialog(const std::string& service_path) = 0;
282
283  // Shows UI to connect to an unlisted network of type |type|. On Chrome OS
284  // |type| corresponds to a Shill network type.
285  virtual void ShowOtherNetworkDialog(const std::string& type) = 0;
286
287  // Returns whether bluetooth capability is available.
288  virtual bool GetBluetoothAvailable() = 0;
289
290  // Returns whether bluetooth is enabled.
291  virtual bool GetBluetoothEnabled() = 0;
292
293  // Shows UI for changing proxy settings.
294  virtual void ChangeProxySettings() = 0;
295
296  // Returns VolumeControlDelegate.
297  virtual VolumeControlDelegate* GetVolumeControlDelegate() const = 0;
298
299  // Sets VolumeControlDelegate.
300  virtual void SetVolumeControlDelegate(
301      scoped_ptr<VolumeControlDelegate> delegate) = 0;
302
303  // Retrieves the session start time. Returns |false| if the time is not set.
304  virtual bool GetSessionStartTime(base::TimeTicks* session_start_time) = 0;
305
306  // Retrieves the session length limit. Returns |false| if no limit is set.
307  virtual bool GetSessionLengthLimit(base::TimeDelta* session_length_limit) = 0;
308
309  // Get the system tray menu size in pixels (dependent on the language).
310  virtual int GetSystemTrayMenuWidth() = 0;
311};
312
313}  // namespace ash
314
315#endif  // ASH_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_
316