mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-19 13:19:31 +00:00
Added a shad to the inspector
Inspector now shows selected items (image,title) still no editing
This commit is contained in:
21
MacPass/MPShadowBox.h
Normal file
21
MacPass/MPShadowBox.h
Normal 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
|
||||
Reference in New Issue
Block a user