summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLKeyboardLayout.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
commitfb8e9903a323acaf5fc78819bb3c203567542ab2 (patch)
treee40665103ac7db492e0a40e34cd92f3390defa55 /SmartDeviceLink/SDLKeyboardLayout.h
parentf7540a02262832e34c67b0953dd8a1804a046fea (diff)
downloadsdl_ios-fb8e9903a323acaf5fc78819bb3c203567542ab2.tar.gz
Shift files into root directory
Diffstat (limited to 'SmartDeviceLink/SDLKeyboardLayout.h')
-rw-r--r--SmartDeviceLink/SDLKeyboardLayout.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLKeyboardLayout.h b/SmartDeviceLink/SDLKeyboardLayout.h
new file mode 100644
index 000000000..042caf9d0
--- /dev/null
+++ b/SmartDeviceLink/SDLKeyboardLayout.h
@@ -0,0 +1,33 @@
+// SDLKeyboardLayout.h
+//
+
+
+#import "SDLEnum.h"
+
+/** Enumeration listing possible keyboard layouts
+ *
+ *<b>Since</b> SmartDeviceLink 3.0
+ *
+ */
+@interface SDLKeyboardLayout : SDLEnum {
+}
+
++ (SDLKeyboardLayout *)valueOf:(NSString *)value;
++ (NSArray *)values;
+/** QWERTY layout (the name comes from the first six keys<br> appearing on the top left letter row of the keyboard and read from left to right)
+ *
+ */
++ (SDLKeyboardLayout *)QWERTY;
+
+/** QWERTZ layout (the name comes from the first six keys<br> appearing on the top left letter row of the keyboard and read from left to right)
+ *
+ */
++ (SDLKeyboardLayout *)QWERTZ;
+
+/** AZERTY layout (the name comes from the first six keys<br> appearing on the top left letter row of the keyboard and read from left to right)
+ *
+ */
+
++ (SDLKeyboardLayout *)AZERTY;
+
+@end