From b32a56ae9ea7603f567381e9b2f660f49972f2a6 Mon Sep 17 00:00:00 2001 From: Gian Mario Tagliaretti Date: Tue, 24 Mar 2009 21:34:13 +0000 Subject: Add gio.AppInfo and gio.FileAttributeInfo in docs. 2009-03-24 Gian Mario Tagliaretti * docs/Makefile.am: * docs/reference/pygio-classes.xml: * docs/reference/pygio-appinfo.xml: * docs/reference/pygio-constants.xml: * docs/reference/pygio-fileattributeinfo.xml: Add gio.AppInfo and gio.FileAttributeInfo in docs. svn path=/trunk/; revision=1031 --- docs/reference/pygio-constants.xml | 128 ++++++++++++++++++++++++++++++++++++- 1 file changed, 126 insertions(+), 2 deletions(-) (limited to 'docs/reference/pygio-constants.xml') diff --git a/docs/reference/pygio-constants.xml b/docs/reference/pygio-constants.xml index dd85126..d167de8 100644 --- a/docs/reference/pygio-constants.xml +++ b/docs/reference/pygio-constants.xml @@ -12,8 +12,11 @@ Synopsis + + + @@ -21,6 +24,35 @@ Description + + Gio AppInfo Create Flags Constants + + + Flags used when creating a gio.AppInfo + + + + + gio.APP_INFO_CREATE_NONE + + No flags. + + + + gio.APP_INFO_CREATE_NEEDS_TERMINAL + + Application opens in a terminal window. + + + + gio.APP_INFO_CREATE_SUPPORTS_URIS + + Application supports URI arguments. + + + + + Gio Emblem Origin Constants @@ -229,7 +261,6 @@ File contains too many symbolic links. - gio.ERROR_WOULD_BLOCK @@ -264,6 +294,100 @@ + + + Gio File Attribute Type Constants + + + The data types for file attributes. + + + + + gio.FILE_ATTRIBUTE_TYPE_BOOLEAN + + a boolean value. + + + + gio.FILE_ATTRIBUTE_TYPE_BYTE_STRING + + a zero terminated string of non-zero bytes. + + + + gio.FILE_ATTRIBUTE_TYPE_INT32 + + a signed 4-byte/32-bit integer. + + + + gio.FILE_ATTRIBUTE_TYPE_INT64 + + a signed 8-byte/64-bit integer. + + + + gio.FILE_ATTRIBUTE_TYPE_INVALID + + indicates an invalid or uninitalized type. + + + + gio.FILE_ATTRIBUTE_TYPE_OBJECT + + a gobject.GObject. + + + + gio.FILE_ATTRIBUTE_TYPE_STRING + + a null terminated UTF8 string. + + + + gio.FILE_ATTRIBUTE_TYPE_UINT32 + + an unsigned 4-byte/32-bit integer. + + + + gio.FILE_ATTRIBUTE_TYPE_UINT64 + + an unsigned 8-byte/64-bit integer. + + + + + + + Gio File Attribute Flags Constants + + + Flags specifying the behaviour of an attribute. + + + + + gio.FILE_ATTRIBUTE_INFO_NONE + + no flags set. + + + + gio.FILE_ATTRIBUTE_INFO_COPY_WITH_FILE + + copy the attribute values when the file is copied. + + + + gio.FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED + + copy the attribute values when the file is moved. + + + + -- cgit