kodi
IOSExternalTouchController.h
1 /*
2  * Copyright (C) 2012-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #import <UIKit/UIKit.h>
10 
11 
12 @interface IOSExternalTouchController : UIViewController
13 {
14  UIWindow *_internalWindow;
15  UIView *_touchView;
16  NSTimer *_sleepTimer;
17 }
18 - (id)init;
19 - (void)createGestureRecognizers;
20 - (void)fadeToBlack;
21 - (void)fadeFromBlack;
22 - (void)startSleepTimer;
23 @end
Definition: IOSExternalTouchController.h:12