21 lines
427 B
21 lines
427 B
// |
|
// SRKeyEquivalentTransformer.h |
|
// ShortcutRecorder |
|
// |
|
// Copyright 2012 Contributors. All rights reserved. |
|
// |
|
// License: BSD |
|
// |
|
// Contributors to this file: |
|
// Ilya Kulakov |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
|
|
/*! |
|
Transform dictionary representation of shortcut into string suitable |
|
for -setKeyEquivalent: of NSButton and NSMenuItem. |
|
*/ |
|
@interface SRKeyEquivalentTransformer : NSValueTransformer |
|
|
|
@end
|
|
|