1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_
#define ASH_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_
#include <string>
#include <vector>
#include "ash/ash_export.h"
#include "ash/system/power/power_supply_status.h"
#include "ash/system/user/login_status.h"
#include "base/files/file_path.h"
#include "base/i18n/time_formatting.h"
#include "base/memory/scoped_ptr.h"
#include "base/string16.h"
#include "base/time.h"
#include "ui/gfx/image/image_skia.h"
namespace ash {
struct ASH_EXPORT NetworkIconInfo {
NetworkIconInfo();
~NetworkIconInfo();
bool highlight() const { return connected || connecting; }
bool connecting;
bool connected;
bool tray_icon_visible;
gfx::ImageSkia image;
string16 name;
string16 description;
std::string service_path;
bool is_cellular;
};
struct ASH_EXPORT BluetoothDeviceInfo {
BluetoothDeviceInfo();
~BluetoothDeviceInfo();
std::string address;
string16 display_name;
bool connected;
bool paired;
bool visible;
};
typedef std::vector<BluetoothDeviceInfo> BluetoothDeviceList;
// Structure that packs progress information of each operation.
struct ASH_EXPORT DriveOperationStatus {
enum OperationType {
OPERATION_UPLOAD,
OPERATION_DOWNLOAD,
OPERATION_OTHER,
};
enum OperationState {
OPERATION_NOT_STARTED,
OPERATION_STARTED,
OPERATION_IN_PROGRESS,
OPERATION_COMPLETED,
OPERATION_FAILED,
OPERATION_SUSPENDED,
};
DriveOperationStatus();
~DriveOperationStatus();
// File path.
base::FilePath file_path;
// Current operation completion progress [0.0 - 1.0].
double progress;
OperationType type;
OperationState state;
};
typedef std::vector<DriveOperationStatus> DriveOperationStatusList;
struct ASH_EXPORT IMEPropertyInfo {
IMEPropertyInfo();
~IMEPropertyInfo();
bool selected;
std::string key;
string16 name;
};
typedef std::vector<IMEPropertyInfo> IMEPropertyInfoList;
struct ASH_EXPORT IMEInfo {
IMEInfo();
~IMEInfo();
bool selected;
bool third_party;
std::string id;
string16 name;
string16 medium_name;
string16 short_name;
};
typedef std::vector<IMEInfo> IMEInfoList;
class VolumeControlDelegate;
class SystemTrayDelegate {
public:
virtual ~SystemTrayDelegate() {}
// Called after SystemTray has been instantiated.
virtual void Initialize() = 0;
// Returns true if system tray should be visible on startup.
virtual bool GetTrayVisibilityOnStartup() = 0;
// Gets information about the logged in user.
virtual const string16 GetUserDisplayName() const = 0;
virtual const std::string GetUserEmail() const = 0;
virtual const gfx::ImageSkia& GetUserImage() const = 0;
virtual user::LoginStatus GetUserLoginStatus() const = 0;
// Shows UI for changing user's profile picture.
virtual void ChangeProfilePicture() = 0;
// Returns the domain that manages the device, if it is enterprise-enrolled.
virtual const std::string GetEnterpriseDomain() const = 0;
// Returns notification for enterprise enrolled devices.
virtual const string16 GetEnterpriseMessage() const = 0;
// Returns whether a system upgrade is available.
virtual bool SystemShouldUpgrade() const = 0;
// Returns the desired hour clock type.
virtual base::HourClockType GetHourClockType() const = 0;
// Gets the current power supply status.
virtual PowerSupplyStatus GetPowerSupplyStatus() const = 0;
// Requests a status update.
virtual void RequestStatusUpdate() const = 0;
// Shows settings.
virtual void ShowSettings() = 0;
// Shows the settings related to date, timezone etc.
virtual void ShowDateSettings() = 0;
// Shows the settings related to network.
virtual void ShowNetworkSettings() = 0;
// Shows the settings related to bluetooth.
virtual void ShowBluetoothSettings() = 0;
// Shows settings related to multiple displays.
virtual void ShowDisplaySettings() = 0;
// Shows settings related to Google Drive.
virtual void ShowDriveSettings() = 0;
// Shows settings related to input methods.
virtual void ShowIMESettings() = 0;
// Shows help.
virtual void ShowHelp() = 0;
// Show accessilibity help.
virtual void ShowAccessibilityHelp() = 0;
// Shows more information about public account mode.
virtual void ShowPublicAccountInfo() = 0;
// Shows information about enterprise enrolled devices.
virtual void ShowEnterpriseInfo() = 0;
// Attempts to shut down the system.
virtual void ShutDown() = 0;
// Attempts to sign out the user.
virtual void SignOut() = 0;
// Attempts to lock the screen.
virtual void RequestLockScreen() = 0;
// Attempts to restart the system.
virtual void RequestRestart() = 0;
// Returns a list of available bluetooth devices.
virtual void GetAvailableBluetoothDevices(BluetoothDeviceList* devices) = 0;
// Requests bluetooth start discovering devices.
virtual void BluetoothStartDiscovering() = 0;
// Requests bluetooth stop discovering devices.
virtual void BluetoothStopDiscovering() = 0;
// Toggles connection to a specific bluetooth device.
virtual void ToggleBluetoothConnection(const std::string& address) = 0;
// Returns true if bluetooth adapter is discovering bluetooth devices.
virtual bool IsBluetoothDiscovering() = 0;
// Returns the currently selected IME.
virtual void GetCurrentIME(IMEInfo* info) = 0;
// Returns a list of availble IMEs.
virtual void GetAvailableIMEList(IMEInfoList* list) = 0;
// Returns a list of properties for the currently selected IME.
virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) = 0;
// Switches to the selected input method.
virtual void SwitchIME(const std::string& ime_id) = 0;
// Activates an IME property.
virtual void ActivateIMEProperty(const std::string& key) = 0;
// Cancels ongoing drive operation.
virtual void CancelDriveOperation(const base::FilePath& file_path) = 0;
// Returns information about the ongoing drive operations.
virtual void GetDriveOperationStatusList(
DriveOperationStatusList* list) = 0;
// Returns information about the most relevant network. Relevance is
// determined by the implementor (e.g. a connecting network may be more
// relevant over a connected network etc.)
virtual void GetMostRelevantNetworkIcon(NetworkIconInfo* info,
bool large) = 0;
virtual void GetVirtualNetworkIcon(ash::NetworkIconInfo* info) = 0;
// Returns information about the available networks.
virtual void GetAvailableNetworks(std::vector<NetworkIconInfo>* list) = 0;
// Returns the information about all virtual networks.
virtual void GetVirtualNetworks(std::vector<NetworkIconInfo>* list) = 0;
// Connects to the network specified by the unique id.
virtual void ConnectToNetwork(const std::string& network_id) = 0;
// Gets the network IP address, and the mac addresses for the ethernet and
// wifi devices. If any of this is unavailable, empty strings are returned.
virtual void GetNetworkAddresses(std::string* ip_address,
std::string* ethernet_mac_address,
std::string* wifi_mac_address) = 0;
// Requests network scan when list of networks is opened.
virtual void RequestNetworkScan() = 0;
// Shous UI to add a new bluetooth device.
virtual void AddBluetoothDevice() = 0;
// Toggles airplane mode.
virtual void ToggleAirplaneMode() = 0;
// Toggles wifi network.
virtual void ToggleWifi() = 0;
// Toggles mobile network.
virtual void ToggleMobile() = 0;
// Toggles bluetooth.
virtual void ToggleBluetooth() = 0;
// Shows UI to connect to an unlisted wifi network.
virtual void ShowOtherWifi() = 0;
// Shows UI to configure vpn.
virtual void ShowOtherVPN() = 0;
// Shows UI to search for cellular networks.
virtual void ShowOtherCellular() = 0;
// Returns whether the system is connected to any network.
virtual bool IsNetworkConnected() = 0;
// Returns whether wifi is available.
virtual bool GetWifiAvailable() = 0;
// Returns whether mobile networking (cellular or wimax) is available.
virtual bool GetMobileAvailable() = 0;
// Returns whether bluetooth capability is available.
virtual bool GetBluetoothAvailable() = 0;
// Returns whether wifi is enabled.
virtual bool GetWifiEnabled() = 0;
// Returns whether mobile (cellular or wimax) networking is enabled.
virtual bool GetMobileEnabled() = 0;
// Returns whether bluetooth is enabled.
virtual bool GetBluetoothEnabled() = 0;
// Returns whether mobile scanning is supported.
virtual bool GetMobileScanSupported() = 0;
// Retrieves information about the carrier and locale specific |setup_url|.
// If none of the carrier info/setup URL cannot be retrieved, returns false.
// Note: |setup_url| is returned when carrier is not defined (no SIM card).
virtual bool GetCellularCarrierInfo(std::string* carrier_id,
std::string* topup_url,
std::string* setup_url) = 0;
// Returns whether the network manager is scanning for wifi networks.
virtual bool GetWifiScanning() = 0;
// Returns whether the network manager is initializing the cellular modem.
virtual bool GetCellularInitializing() = 0;
// Opens the cellular network specific URL.
virtual void ShowCellularURL(const std::string& url) = 0;
// Shows UI for changing proxy settings.
virtual void ChangeProxySettings() = 0;
// Returns VolumeControlDelegate.
virtual VolumeControlDelegate* GetVolumeControlDelegate() const = 0;
// Sets VolumeControlDelegate.
virtual void SetVolumeControlDelegate(
scoped_ptr<VolumeControlDelegate> delegate) = 0;
// Returns the session start time, or a zero base::Time if no session start
// time is set.
virtual base::Time GetSessionStartTime() = 0;
// Returns the session length limit, or a zero base::TimeDelta if no session
// length limit is set.
virtual base::TimeDelta GetSessionLengthLimit() = 0;
// Creates a dummy delegate for testing.
static SystemTrayDelegate* CreateDummyDelegate();
};
} // namespace ash
#endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_
|