Added a shad to the inspector

Inspector now shows selected items (image,title) still no editing
This commit is contained in:
michael starke
2013-03-08 01:08:36 +01:00
parent 93e61210f4
commit fd7a77f625
10 changed files with 228 additions and 140 deletions

21
MacPass/MPShadowBox.h Normal file
View File

@@ -0,0 +1,21 @@
//
// 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