mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
31 lines
1.1 KiB
Objective-C
31 lines
1.1 KiB
Objective-C
//
|
|
// MGSplitCornersView.h
|
|
// MGSplitView
|
|
//
|
|
// Created by Matt Gemmell on 28/07/2010.
|
|
// Copyright 2010 Instinctive Code.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
typedef enum _MGCornersPosition {
|
|
MGCornersPositionLeadingVertical = 0, // top of screen for a left/right split.
|
|
MGCornersPositionTrailingVertical = 1, // bottom of screen for a left/right split.
|
|
MGCornersPositionLeadingHorizontal = 2, // left of screen for a top/bottom split.
|
|
MGCornersPositionTrailingHorizontal = 3 // right of screen for a top/bottom split.
|
|
} MGCornersPosition;
|
|
|
|
@class MGSplitViewController;
|
|
@interface MGSplitCornersView : UIView {
|
|
float cornerRadius;
|
|
MGSplitViewController *splitViewController;
|
|
MGCornersPosition cornersPosition;
|
|
UIColor *cornerBackgroundColor;
|
|
}
|
|
|
|
@property (nonatomic, assign) float cornerRadius;
|
|
@property (nonatomic, assign) MGSplitViewController *splitViewController; // weak ref.
|
|
@property (nonatomic, assign) MGCornersPosition cornersPosition; // don't change this manually; let the splitViewController manage it.
|
|
@property (nonatomic, retain) UIColor *cornerBackgroundColor;
|
|
|
|
@end
|