added sketch files

This commit is contained in:
Michael Starke
2013-02-17 18:55:27 +01:00
parent c55adff775
commit f20e3d6e1e
20 changed files with 169 additions and 8 deletions

28
MacPass/MPIconHelper.h Normal file
View File

@@ -0,0 +1,28 @@
//
// MPIconHelper.h
// MacPass
//
// Created by Michael Starke on 17.02.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import <Foundation/Foundation.h>
typedef enum {
MPIconPassword,
MPIconPackageNetwork,
MPIconWarning,
MPIconServer,
MPIconKlipper,
MPIconLanguages
} MPIconType;
@interface MPIconHelper : NSObject
+ (NSImage *)icon:(MPIconType)type;
/*
Available Icons, Use the MPDatabaseIconType to access a individual icon;
*/
+ (NSDictionary *)availableIcons;
@end