5 // Created by Mac-arena the Bored Zo on 2005-10-30.
6 // Copyright 2005 Adium Team. All rights reserved.
9 /*the string/object values to an AXCFileCell are paths. they will be drawn as
10 * an icon and filename.
13 enum AXCFileCellIconSourceMask
{
14 AXCFileCellIconSourcePreviewByFullPathMask
= 0x01,
15 AXCFileCellIconSourcePreviewByFilenameMask
= 0x02,
16 AXCFileCellIconSourceLookupByFileIconMask
= 0x04,
17 AXCFileCellIconSourceAll
= 0xffffFFFF,
20 @interface AXCFileCell
: NSCell
{
22 enum AXCFileCellIconSourceMask iconSourceMask
;
24 //note: these variables need to be in the reverse order of the order of the enumeration above.
25 unsigned reserved
: 29;
26 unsigned getPreviewsFromFileIcons
: 1;
27 unsigned getPreviewsByFilename
: 1;
28 unsigned getPreviewsByFullPath
: 1;
33 - (enum AXCFileCellIconSourceMask
)iconSourceMask
;
34 - (void)setIconSourceMask
:(enum AXCFileCellIconSourceMask
)mask
;