]> err.no Git - sope/blob - sope-core/EOControl/EOSortOrdering.h
fixed a Tiger warning
[sope] / sope-core / EOControl / EOSortOrdering.h
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #ifndef __EOControl_EOSortOrdering_H__
23 #define __EOControl_EOSortOrdering_H__
24
25 #import <Foundation/NSObject.h>
26 #include <EOControl/EOControlDecls.h>
27
28 @class NSDictionary, NSString;
29
30 #if NeXT_RUNTIME || APPLE_RUNTIME
31 #define EOCompareAscending  @selector(compareAscending:)
32 #define EOCompareDescending @selector(compareDescending:)
33 #define EOCompareCaseInsensitiveAscending  @selector(compareCaseInsensitiveAscending:)
34 #define EOCompareCaseInsensitiveDescending @selector(compareCaseInsensitiveDescending:)
35 #else
36 #  ifdef __APPLE__
37 #    warning did you define the proper runtime ? (eg APPLE_RUNTIME)
38 #  endif
39 EOControl_EXPORT SEL EOCompareAscending;
40 EOControl_EXPORT SEL EOCompareDescending;
41 EOControl_EXPORT SEL EOCompareCaseInsensitiveAscending;
42 EOControl_EXPORT SEL EOCompareCaseInsensitiveDescending;
43 #endif
44
45 @interface EOSortOrdering : NSObject
46 {
47   NSString *key;
48   SEL      selector;
49 }
50
51 + (EOSortOrdering *)sortOrderingWithKey:(NSString *)_key 
52   selector:(SEL)_selector;
53 - (id)initWithKey:(NSString *)_key selector:(SEL)_selector;
54
55 /* accessors */
56
57 - (NSString *)key;
58 - (SEL)selector;
59
60 /* remapping keys */
61
62 - (EOSortOrdering *)sortOrderingByApplyingKeyMap:(NSDictionary *)_map;
63
64 @end
65
66 #import <Foundation/NSArray.h>
67
68 @interface NSArray(EOSortOrdering)
69
70 - (NSArray *)sortedArrayUsingKeyOrderArray:(NSArray *)_orderings;
71
72 @end
73
74 @interface NSMutableArray(EOSortOrdering)
75
76 - (void)sortUsingKeyOrderArray:(NSArray *)_orderings;
77
78 @end
79
80 #import <Foundation/NSString.h>
81
82 @interface NSString(EOSortOrdering)
83 - (int)compareAscending:(id)_object;
84 - (int)compareDescending:(id)_object;
85 - (int)compareCaseInsensitiveAscending:(id)_object;
86 - (int)compareCaseInsensitiveDescending:(id)_object;
87 @end
88
89 #endif /* __EOControl_EOSortOrdering_H__ */