gfileattribute.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright (C) 2006-2007 Red Hat, Inc.
  4. *
  5. * SPDX-License-Identifier: LGPL-2.1-or-later
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library 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. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General
  18. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  19. *
  20. * Author: Alexander Larsson <alexl@redhat.com>
  21. */
  22. #ifndef __G_FILE_ATTRIBUTE_H__
  23. #define __G_FILE_ATTRIBUTE_H__
  24. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  25. #error "Only <gio/gio.h> can be included directly."
  26. #endif
  27. #include <gio/giotypes.h>
  28. G_BEGIN_DECLS
  29. /**
  30. * GFileAttributeInfo:
  31. * @name: the name of the attribute.
  32. * @type: the #GFileAttributeType type of the attribute.
  33. * @flags: a set of #GFileAttributeInfoFlags.
  34. *
  35. * Information about a specific attribute.
  36. **/
  37. struct _GFileAttributeInfo
  38. {
  39. char *name;
  40. GFileAttributeType type;
  41. GFileAttributeInfoFlags flags;
  42. };
  43. /**
  44. * GFileAttributeInfoList:
  45. * @infos: an array of #GFileAttributeInfos.
  46. * @n_infos: the number of values in the array.
  47. *
  48. * Acts as a lightweight registry for possible valid file attributes.
  49. * The registry stores Key-Value pair formats as #GFileAttributeInfos.
  50. **/
  51. struct _GFileAttributeInfoList
  52. {
  53. GFileAttributeInfo *infos;
  54. int n_infos;
  55. };
  56. #define G_TYPE_FILE_ATTRIBUTE_INFO_LIST (g_file_attribute_info_list_get_type ())
  57. GIO_AVAILABLE_IN_ALL
  58. GType g_file_attribute_info_list_get_type (void);
  59. GIO_AVAILABLE_IN_ALL
  60. GFileAttributeInfoList * g_file_attribute_info_list_new (void);
  61. GIO_AVAILABLE_IN_ALL
  62. GFileAttributeInfoList * g_file_attribute_info_list_ref (GFileAttributeInfoList *list);
  63. GIO_AVAILABLE_IN_ALL
  64. void g_file_attribute_info_list_unref (GFileAttributeInfoList *list);
  65. GIO_AVAILABLE_IN_ALL
  66. GFileAttributeInfoList * g_file_attribute_info_list_dup (GFileAttributeInfoList *list);
  67. GIO_AVAILABLE_IN_ALL
  68. const GFileAttributeInfo *g_file_attribute_info_list_lookup (GFileAttributeInfoList *list,
  69. const char *name);
  70. GIO_AVAILABLE_IN_ALL
  71. void g_file_attribute_info_list_add (GFileAttributeInfoList *list,
  72. const char *name,
  73. GFileAttributeType type,
  74. GFileAttributeInfoFlags flags);
  75. G_END_DECLS
  76. #endif /* __G_FILE_INFO_H__ */