aboutsummaryrefslogtreecommitdiffhomepage
path: root/AuthSamples/Sample/MainViewController.h
blob: d2390b12619384c0369ec27d2d9c0dd50e547a4b (plain)
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
/*
 * Copyright 2017 Google
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#import <UIKit/UIKit.h>

@class StaticContentTableViewManager;
@class UserTableViewCell;

/** @var kCreateUserAccessibilityID
    @brief The "Create User" button accessibility ID.
 */
extern NSString *const kCreateUserAccessibilityID;

/** @class MainViewController
    @brief The first view controller presented when the application is started.
 */
@interface MainViewController : UIViewController

/** @property tableViewManager
    @brief A @c StaticContentTableViewManager which is used to manage the contents of the table
        view.
 */
@property(nonatomic, strong) IBOutlet StaticContentTableViewManager *tableViewManager;

/** @property tableView
    @brief A UITableView which is used to display user info and a list of actions.
 */
@property(nonatomic, weak) IBOutlet UITableView *tableView;

/** @property userInfoTableViewCell
    @brief A custom UITableViewCell for displaying the user info.
 */
@property(nonatomic, strong) IBOutlet UserTableViewCell *userInfoTableViewCell;

/** @property userInMemoryInfoTableViewCell
    @brief A custom UITableViewCell for displaying the user info.
 */
@property(nonatomic, strong) IBOutlet UserTableViewCell *userInMemoryInfoTableViewCell;

/** @property userToUseCell
    @brief A custom UITableViewCell for choosing which user to use for user operations (either the
        currently signed-in user, or the user in "memory".
 */
@property(nonatomic, strong) IBOutlet UITableViewCell *userToUseCell;

/** @property consoleTextView
    @brief A UITextView with a log of the actions performed in the sample app.
 */
@property(nonatomic, weak) IBOutlet UITextView *consoleTextView;

/** @fn userToUseDidChange:
    @brief Should be invoked when the user wishes to switch which user to use for user-related
        operations in the sample app.
    @param sender The UISegmentedControl which prompted the change in value. It is assumed that the
        segment at index 0 represents the "signed-in user" and the segment at index 1 represents the
        "user in memeory".
 */
- (IBAction)userToUseDidChange:(UISegmentedControl *)sender;

/** @fn memoryPlus
    @brief Works like the "M+" button on a calculator; stores the currently signed-in user as the
        "user in memory" for the application.
 */
- (IBAction)memoryPlus;

/** @fn memoryClear
    @brief Works like the "MC" button on a calculator; clears the currently stored "user in memory"
        for the application.
 */
- (IBAction)memoryClear;

@end