]> err.no Git - sope/blob - sope-core/NGExtensions/NGExtensions/NGFileFolderInfoDataSource.h
cleaned up cookie handling
[sope] / sope-core / NGExtensions / NGExtensions / NGFileFolderInfoDataSource.h
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
5
6   OGo 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   OGo 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 OGo; 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 // $Id$
22
23 #ifndef __NGFileInfoDataSource_H__
24 #define __NGFileInfoDataSource_H__
25
26 #import <Foundation/NSFileManager.h>
27 #import <EOControl/EODataSource.h>
28 #include <NGExtensions/NGExtensionsDecls.h>
29
30 @class NSString;
31 @class EOFetchSpecification;
32
33 /*
34   supported keys:
35
36     NSFileName
37     NSFilePath
38     NSParentPath
39     + all NSFileManager attributes returned by -fileAttributesAtPath:...
40     
41   supported fetch hints:
42   
43     NSTraverseLinks - bool
44 */
45
46 NGExtensions_EXPORT NSString *NSFileName;
47 NGExtensions_EXPORT NSString *NSFilePath;
48 NGExtensions_EXPORT NSString *NSParentPath;
49 NGExtensions_EXPORT NSString *NSTraverseLinks;
50
51 @interface NGFileFolderInfoDataSource : EODataSource
52 {
53   NSString             *folderPath;
54   EOFetchSpecification *fspec;
55 }
56
57 - (id)initWithFolderPath:(NSString *)_path;
58
59 /* accessors */
60
61 - (void)setFetchSpecification:(EOFetchSpecification *)_fspec;
62 - (EOFetchSpecification *)fetchSpecification;
63
64 /* operations */
65
66 - (NSArray *)fetchObjects;
67
68 @end
69
70 #endif /* __NGFileInfoDataSource_H__ */