Sophie

Sophie

distrib > Fedora > 18 > x86_64 > by-pkgid > 8c86774a3e53d77cc119f53a2b94a57a > files > 233

root-tutorial-5.34.14-2.fc18.noarch.rpm

#import <UIKit/UIKit.h>

//
//PadSlideView is a small special pad view to use in a "slideshow" animation.
//Does not support any object picking/editing, just a surface to render and
//a view to animate a transition.
//

namespace ROOT {
namespace iOS {

class Pad;

}
}

@interface PadSlideView : UIView

+ (CGSize) slideSize;
+ (CGRect) slideFrame;

- (instancetype) initWithFrame : (CGRect) rect;
- (void) setPad : (ROOT::iOS::Pad *) pad;

@end