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

Unified Diff: ios/chrome/browser/ui/toolbar/keyboard_accessory_view.h

Issue 2914193002: [iOS] Factor out the KeyboardAccessoryView. (Closed)
Patch Set: Addressed comments and broke retain cycle. Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/chrome/browser/ui/toolbar/BUILD.gn ('k') | ios/chrome/browser/ui/toolbar/keyboard_accessory_view.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/toolbar/keyboard_accessory_view.h
diff --git a/ios/chrome/browser/ui/toolbar/keyboard_accessory_view.h b/ios/chrome/browser/ui/toolbar/keyboard_accessory_view.h
new file mode 100644
index 0000000000000000000000000000000000000000..a33130490ff72bc36daab243121420c0ae568802
--- /dev/null
+++ b/ios/chrome/browser/ui/toolbar/keyboard_accessory_view.h
@@ -0,0 +1,52 @@
+// Copyright 2017 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 IOS_CHROME_BROWSER_UI_TOOLBAR_KEYBOARD_ACCESSORY_VIEW_H_
+#define IOS_CHROME_BROWSER_UI_TOOLBAR_KEYBOARD_ACCESSORY_VIEW_H_
+
+#import <UIKit/UIKIt.h>
+
+// Delegate protocol for the KeyboardAccessoryView.
+@protocol KeyboardAccessoryViewDelegate
+
+// Notifies the delegate that the Voice Search button was pressed.
+- (void)keyboardAccessoryVoiceSearchTouchDown;
+
+// Notifies the delegate that a touch up occured in the the Voice Search button.
+- (void)keyboardAccessoryVoiceSearchTouchUpInside;
+
+// Notifies the delegate that a key with the title |title| was pressed.
+- (void)keyPressed:(NSString*)title;
+
+@end
+
+typedef NS_ENUM(NSInteger, KeyboardAccessoryViewMode) {
+ VOICE_SEARCH = 0,
+ KEY_SHORTCUTS
+};
+
+// Accessory View above the keyboard.
+// Supports two modes: one where a Voice Search button is shown, and one where
+// a list of buttons based on |buttonTitles| is shown.
+// The default mode is the Voice Search mode.
+@interface KeyboardAccessoryView : UIInputView<UIInputViewAudioFeedback>
+
+// Designated initializer. |buttonTitles| lists the titles of the buttons shown
+// in the KEY_SHORTCUTS mode. Can be nil or empty. |delegate| receives the
+// various events triggered in the view. Not retained, and can be nil.
+- (instancetype)initWithButtons:(NSArray<NSString*>*)buttonTitles
+ delegate:(id<KeyboardAccessoryViewDelegate>)delegate
+ NS_DESIGNATED_INITIALIZER;
+
+- (instancetype)initWithCoder:(NSCoder*)aDecoder NS_UNAVAILABLE;
+
+- (instancetype)initWithFrame:(CGRect)frame
+ inputViewStyle:(UIInputViewStyle)inputViewStyle NS_UNAVAILABLE;
+
+// The mode in which the KeyboardAccessoryView is in.
+@property(nonatomic) KeyboardAccessoryViewMode mode;
+
+@end
+
+#endif // IOS_CHROME_BROWSER_UI_TOOLBAR_KEYBOARD_ACCESSORY_VIEW_H_
« no previous file with comments | « ios/chrome/browser/ui/toolbar/BUILD.gn ('k') | ios/chrome/browser/ui/toolbar/keyboard_accessory_view.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698