// Generated by gmmproc 2.66.3 -- DO NOT MODIFY! #ifndef _GIOMM_FILEATTRIBUTEINFO_H #define _GIOMM_FILEATTRIBUTEINFO_H #include #include #include /* Copyright (C) 2007 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . */ #include #include #include namespace Gio { /** @addtogroup giommEnums giomm Enums and Flags */ /** * @var FileAttributeType FILE_ATTRIBUTE_TYPE_INVALID * Indicates an invalid or uninitialized type. * * @var FileAttributeType FILE_ATTRIBUTE_TYPE_STRING * A null terminated UTF8 string. * * @var FileAttributeType FILE_ATTRIBUTE_TYPE_BYTE_STRING * A zero terminated string of non-zero bytes. * * @var FileAttributeType FILE_ATTRIBUTE_TYPE_BOOLEAN * A boolean value. * * @var FileAttributeType FILE_ATTRIBUTE_TYPE_UINT32 * An unsigned 4-byte/32-bit integer. * * @var FileAttributeType FILE_ATTRIBUTE_TYPE_INT32 * A signed 4-byte/32-bit integer. * * @var FileAttributeType FILE_ATTRIBUTE_TYPE_UINT64 * An unsigned 8-byte/64-bit integer. * * @var FileAttributeType FILE_ATTRIBUTE_TYPE_INT64 * A signed 8-byte/64-bit integer. * * @var FileAttributeType FILE_ATTRIBUTE_TYPE_OBJECT * A Object. * * @var FileAttributeType FILE_ATTRIBUTE_TYPE_STRINGV * A nullptr terminated char **. @newin{2,22} * * @enum FileAttributeType * * The data types for file attributes. * * @ingroup giommEnums */ enum FileAttributeType { FILE_ATTRIBUTE_TYPE_INVALID, FILE_ATTRIBUTE_TYPE_STRING, FILE_ATTRIBUTE_TYPE_BYTE_STRING, FILE_ATTRIBUTE_TYPE_BOOLEAN, FILE_ATTRIBUTE_TYPE_UINT32, FILE_ATTRIBUTE_TYPE_INT32, FILE_ATTRIBUTE_TYPE_UINT64, FILE_ATTRIBUTE_TYPE_INT64, FILE_ATTRIBUTE_TYPE_OBJECT, FILE_ATTRIBUTE_TYPE_STRINGV }; } // namespace Gio #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { template <> class GIOMM_API Value : public Glib::Value_Enum { public: static GType value_type() G_GNUC_CONST; }; } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gio { /** * @var FileAttributeInfoFlags FILE_ATTRIBUTE_INFO_NONE * No flags set. * * @var FileAttributeInfoFlags FILE_ATTRIBUTE_INFO_COPY_WITH_FILE * Copy the attribute values when the file is copied. * * @var FileAttributeInfoFlags FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED * Copy the attribute values when the file is moved. * * @enum FileAttributeInfoFlags * * Flags specifying the behaviour of an attribute. * * @ingroup giommEnums * @par Bitwise operators: * %FileAttributeInfoFlags operator|(FileAttributeInfoFlags, FileAttributeInfoFlags)
* %FileAttributeInfoFlags operator&(FileAttributeInfoFlags, FileAttributeInfoFlags)
* %FileAttributeInfoFlags operator^(FileAttributeInfoFlags, FileAttributeInfoFlags)
* %FileAttributeInfoFlags operator~(FileAttributeInfoFlags)
* %FileAttributeInfoFlags& operator|=(FileAttributeInfoFlags&, FileAttributeInfoFlags)
* %FileAttributeInfoFlags& operator&=(FileAttributeInfoFlags&, FileAttributeInfoFlags)
* %FileAttributeInfoFlags& operator^=(FileAttributeInfoFlags&, FileAttributeInfoFlags)
*/ enum FileAttributeInfoFlags { FILE_ATTRIBUTE_INFO_NONE = 0x0, FILE_ATTRIBUTE_INFO_COPY_WITH_FILE = (1 << 0), FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED = (1 << 1) }; /** @ingroup giommEnums */ inline FileAttributeInfoFlags operator|(FileAttributeInfoFlags lhs, FileAttributeInfoFlags rhs) { return static_cast(static_cast(lhs) | static_cast(rhs)); } /** @ingroup giommEnums */ inline FileAttributeInfoFlags operator&(FileAttributeInfoFlags lhs, FileAttributeInfoFlags rhs) { return static_cast(static_cast(lhs) & static_cast(rhs)); } /** @ingroup giommEnums */ inline FileAttributeInfoFlags operator^(FileAttributeInfoFlags lhs, FileAttributeInfoFlags rhs) { return static_cast(static_cast(lhs) ^ static_cast(rhs)); } /** @ingroup giommEnums */ inline FileAttributeInfoFlags operator~(FileAttributeInfoFlags flags) { return static_cast(~static_cast(flags)); } /** @ingroup giommEnums */ inline FileAttributeInfoFlags& operator|=(FileAttributeInfoFlags& lhs, FileAttributeInfoFlags rhs) { return (lhs = static_cast(static_cast(lhs) | static_cast(rhs))); } /** @ingroup giommEnums */ inline FileAttributeInfoFlags& operator&=(FileAttributeInfoFlags& lhs, FileAttributeInfoFlags rhs) { return (lhs = static_cast(static_cast(lhs) & static_cast(rhs))); } /** @ingroup giommEnums */ inline FileAttributeInfoFlags& operator^=(FileAttributeInfoFlags& lhs, FileAttributeInfoFlags rhs) { return (lhs = static_cast(static_cast(lhs) ^ static_cast(rhs))); } } // namespace Gio #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { template <> class GIOMM_API Value : public Glib::Value_Flags { public: static GType value_type() G_GNUC_CONST; }; } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gio { /** * @var FileAttributeStatus FILE_ATTRIBUTE_STATUS_UNSET * Attribute value is unset (empty). * * @var FileAttributeStatus FILE_ATTRIBUTE_STATUS_SET * Attribute value is set. * * @var FileAttributeStatus FILE_ATTRIBUTE_STATUS_ERROR_SETTING * Indicates an error in setting the value. * * @enum FileAttributeStatus * * Used by g_file_set_attributes_from_info() when setting file attributes. * * @ingroup giommEnums */ enum FileAttributeStatus { FILE_ATTRIBUTE_STATUS_UNSET, FILE_ATTRIBUTE_STATUS_SET, FILE_ATTRIBUTE_STATUS_ERROR_SETTING }; } // namespace Gio #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { template <> class GIOMM_API Value : public Glib::Value_Enum { public: static GType value_type() G_GNUC_CONST; }; } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gio { /** Information about a specific attribute - see FileAttributeInfoList. * * @newin{2,16} */ class FileAttributeInfo { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS using CppObjectType = FileAttributeInfo; using BaseObjectType = GFileAttributeInfo; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ private: public: GIOMM_API explicit FileAttributeInfo(const GFileAttributeInfo* ginfo); GIOMM_API FileAttributeInfo(const FileAttributeInfo& other); GIOMM_API FileAttributeInfo& operator=(const FileAttributeInfo& other); GIOMM_API FileAttributeInfo(FileAttributeInfo&& other) noexcept; GIOMM_API FileAttributeInfo& operator=(FileAttributeInfo&& other) noexcept; GIOMM_API ~FileAttributeInfo(); GIOMM_API std::string get_name() const; GIOMM_API FileAttributeType get_type() const; GIOMM_API FileAttributeInfoFlags get_flags() const; protected: std::string m_name; FileAttributeType m_type; FileAttributeInfoFlags m_flags; }; } // namespace Gio #endif /* _GIOMM_FILEATTRIBUTEINFO_H */