| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*
- * 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
|