Split out documentation into subfolders.
[platform/upstream/gstreamer.git] / examples / tutorials / xcode iOS / Tutorial 3 / ViewController.h
1 #import <UIKit/UIKit.h>
2 #import "GStreamerBackendDelegate.h"
3
4 @interface ViewController : UIViewController <GStreamerBackendDelegate> {
5     IBOutlet UILabel *message_label;
6     IBOutlet UIBarButtonItem *play_button;
7     IBOutlet UIBarButtonItem *pause_button;
8     IBOutlet UIView *video_view;
9     IBOutlet UIView *video_container_view;
10     IBOutlet NSLayoutConstraint *video_width_constraint;
11     IBOutlet NSLayoutConstraint *video_height_constraint;
12 }
13
14 -(IBAction) play:(id)sender;
15 -(IBAction) pause:(id)sender;
16
17 /* From GStreamerBackendDelegate */
18 -(void) gstreamerInitialized;
19 -(void) gstreamerSetUIMessage:(NSString *)message;
20
21 @end