1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
3 nautilus-file-attributes.h: #defines and other file-attribute-related info
5 Copyright (C) 2000 Eazel, Inc.
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public
18 License along with this program; if not, write to the
19 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.
22 Author: Darin Adler <darin@bentspoon.com>
25 #ifndef NAUTILUS_FILE_ATTRIBUTES_H
26 #define NAUTILUS_FILE_ATTRIBUTES_H
28 /* Names for NautilusFile attributes. These are used when registering
29 * interest in changes to the attributes or when waiting for them.
33 NAUTILUS_FILE_ATTRIBUTE_INFO
= 1 << 0, /* All standard info */
34 NAUTILUS_FILE_ATTRIBUTE_LINK_INFO
= 1 << 1, /* info from desktop links */
35 NAUTILUS_FILE_ATTRIBUTE_DEEP_COUNTS
= 1 << 2,
36 NAUTILUS_FILE_ATTRIBUTE_DIRECTORY_ITEM_COUNT
= 1 << 3,
37 NAUTILUS_FILE_ATTRIBUTE_DIRECTORY_ITEM_MIME_TYPES
= 1 << 4,
38 NAUTILUS_FILE_ATTRIBUTE_METADATA
= 1 << 5,
39 NAUTILUS_FILE_ATTRIBUTE_TOP_LEFT_TEXT
= 1 << 6,
40 NAUTILUS_FILE_ATTRIBUTE_LARGE_TOP_LEFT_TEXT
= 1 << 7,
41 NAUTILUS_FILE_ATTRIBUTE_EXTENSION_INFO
= 1 << 8,
42 NAUTILUS_FILE_ATTRIBUTE_THUMBNAIL
= 1 << 9,
43 NAUTILUS_FILE_ATTRIBUTE_MOUNT
= 1 << 10,
44 NAUTILUS_FILE_ATTRIBUTE_FILESYSTEM_INFO
= 1 << 11,
45 } NautilusFileAttributes
;
47 #endif /* NAUTILUS_FILE_ATTRIBUTES_H */