blob: 766b5ccfbaabb6a568dff0b963bf2bcbb6ca0ed2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// SDLLayoutMode.m
//
#import "SDLLayoutMode.h"
SDLLayoutMode const SDLLayoutModeIconOnly = @"ICON_ONLY";
SDLLayoutMode const SDLLayoutModeIconWithSearch = @"ICON_WITH_SEARCH";
SDLLayoutMode const SDLLayoutModeListOnly = @"LIST_ONLY";
SDLLayoutMode const SDLLayoutModeListWithSearch = @"LIST_WITH_SEARCH";
SDLLayoutMode const SDLLayoutModeKeyboard = @"KEYBOARD";
|