forked from scrod/nv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
NSCollection_utils.h
executable file
·60 lines (45 loc) · 2.1 KB
/
NSCollection_utils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//
// NSCollection_utils.h
// Notation
//
// Created by Zachary Schneirov on 1/13/06.
/*Copyright (c) 2010, Zachary Schneirov. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions
and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of
conditions and the following disclaimer in the documentation and/or other materials provided with
the distribution.
- Neither the name of Notational Velocity nor the names of its contributors may be used to endorse
or promote products derived from this software without specific prior written permission. */
#import <Cocoa/Cocoa.h>
@class NoteObject;
@interface NSDictionary (FontTraits)
- (BOOL)attributesHaveFontTrait:(NSFontTraitMask)desiredTrait orAttribute:(NSString*)attrName;
@end
@interface NSMutableDictionary (FontTraits)
- (void)addDesiredAttributesFromDictionary:(NSDictionary*)dict;
- (void)applyStyleInverted:(BOOL)opposite trait:(NSFontTraitMask)trait forFont:(NSFont*)font
alternateAttributeName:(NSString*)attrName alternateAttributeValue:(id)value;
@end
@interface NSDictionary (URLEncoding)
- (NSString*)URLEncodedString;
@end
@interface NSSet (Utilities)
- (NSMutableSet*)setIntersectedWithSet:(NSSet*)set;
@end
@interface NSSet (Private)
//in Foundation
- (void)getObjects:(id *)aBuffer;
@end
@interface NSArray (NoteUtilities)
//- (NSRange)nextRangeForString:(NSString*)string activeNote:(NoteObject*)startNote options:(unsigned)opts range:(NSRange)inRange;
- (void)addMenuItemsForURLsInNotes:(NSMenu*)urlsMenu;
- (NSUInteger)indexOfNoteWithUUIDBytes:(CFUUIDBytes*)bytes;
- (NSArray*)objectsFromDictionariesForKey:(id)aKey;
@end
@interface NSMutableArray (Sorting)
- (void)sortUnstableUsingFunction:(NSInteger (*)(id *, id *))compare;
- (void)sortStableUsingFunction:(NSInteger (*)(id *, id *))compare usingBuffer:(id **)buffer ofSize:(unsigned int*)bufSize;
@end