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

Side by Side Diff: ios/chrome/browser/ui/toolbar/keyboard_accessory_view.h

Issue 2934463002: [iOS] Add experimental new keyboard accessory view. (Closed)
Patch Set: Addressed comments. Created 3 years, 6 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
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 IOS_CHROME_BROWSER_UI_TOOLBAR_KEYBOARD_ACCESSORY_VIEW_H_ 5 #ifndef IOS_CHROME_BROWSER_UI_TOOLBAR_KEYBOARD_ACCESSORY_VIEW_H_
6 #define IOS_CHROME_BROWSER_UI_TOOLBAR_KEYBOARD_ACCESSORY_VIEW_H_ 6 #define IOS_CHROME_BROWSER_UI_TOOLBAR_KEYBOARD_ACCESSORY_VIEW_H_
7 7
8 #import <UIKit/UIKIt.h> 8 #import <UIKit/UIKIt.h>
9 9
10 // Delegate protocol for the KeyboardAccessoryView. 10 // Delegate protocol for the KeyboardAccessoryView.
11 @protocol KeyboardAccessoryViewDelegate 11 @protocol KeyboardAccessoryViewDelegate
12 12
13 // Notifies the delegate that the Voice Search button was pressed. 13 // Notifies the delegate that the Voice Search button was pressed.
14 - (void)keyboardAccessoryVoiceSearchTouchDown; 14 - (void)keyboardAccessoryVoiceSearchTouchDown;
15 15
16 // Notifies the delegate that a touch up occured in the the Voice Search button. 16 // Notifies the delegate that a touch up occured in the the Voice Search button.
17 - (void)keyboardAccessoryVoiceSearchTouchUpInside; 17 - (void)keyboardAccessoryVoiceSearchTouchUpInside;
18 18
19 // Notifies the delegate that a touch up occured in the the Camera Search
20 // button.
21 - (void)keyboardAccessoryCameraSearchTouchUpInside;
22
19 // Notifies the delegate that a key with the title |title| was pressed. 23 // Notifies the delegate that a key with the title |title| was pressed.
20 - (void)keyPressed:(NSString*)title; 24 - (void)keyPressed:(NSString*)title;
21 25
22 @end 26 @end
23 27
24 typedef NS_ENUM(NSInteger, KeyboardAccessoryViewMode) { 28 typedef NS_ENUM(NSInteger, KeyboardAccessoryViewMode) {
25 VOICE_SEARCH = 0, 29 VOICE_SEARCH = 0,
26 KEY_SHORTCUTS 30 KEY_SHORTCUTS
27 }; 31 };
28 32
(...skipping 14 matching lines...) Expand all
43 47
44 - (instancetype)initWithFrame:(CGRect)frame 48 - (instancetype)initWithFrame:(CGRect)frame
45 inputViewStyle:(UIInputViewStyle)inputViewStyle NS_UNAVAILABLE; 49 inputViewStyle:(UIInputViewStyle)inputViewStyle NS_UNAVAILABLE;
46 50
47 // The mode in which the KeyboardAccessoryView is in. 51 // The mode in which the KeyboardAccessoryView is in.
48 @property(nonatomic) KeyboardAccessoryViewMode mode; 52 @property(nonatomic) KeyboardAccessoryViewMode mode;
49 53
50 @end 54 @end
51 55
52 #endif // IOS_CHROME_BROWSER_UI_TOOLBAR_KEYBOARD_ACCESSORY_VIEW_H_ 56 #endif // IOS_CHROME_BROWSER_UI_TOOLBAR_KEYBOARD_ACCESSORY_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698