Files
MacPass/MacPass/MPShadowBox.h
michael starke fd7a77f625 Added a shad to the inspector
Inspector now shows selected items (image,title) still no editing
2013-03-08 01:08:36 +01:00

22 lines
417 B
Objective-C

//
// MPShadowBox.h
// MacPass
//
// Created by Michael Starke on 07.03.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import <Cocoa/Cocoa.h>
typedef enum {
MPShadowTop = 1 << 0,
MPShadowBottom = 1 << 1,
MPShadowTopAndBottom = MPShadowTop | MPShadowBottom
} MPShadowDisplay;
@interface MPShadowBox : NSView
@property (assign, nonatomic) MPShadowDisplay shadowDisplay;
@end