![]() |
![]() |
![]() |
GXPS Reference Manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy | Implemented Interfaces | Properties |
#include <libgxps/gxps.h> struct GXPSCoreProperties; const gchar * gxps_core_properties_get_title (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_creator (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_description (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_subject (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_keywords (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_version (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_revision (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_identifier (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_language (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_category (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_content_status (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_content_type (GXPSCoreProperties *core_props
); time_t gxps_core_properties_get_created (GXPSCoreProperties *core_props
); const gchar * gxps_core_properties_get_last_modified_by (GXPSCoreProperties *core_props
); time_t gxps_core_properties_get_modified (GXPSCoreProperties *core_props
); time_t gxps_core_properties_get_last_printed (GXPSCoreProperties *core_props
);
GXPSCoreProperties represents the metadata of a GXPSFile.
GXPSCoreProperties objects can not be created directly, they
are retrieved from a GXPSFile with gxps_file_get_core_properties()
.
struct GXPSCoreProperties;
The GXPSCoreProperties struct contains only private fields and should not be directly accessed.
const gchar * gxps_core_properties_get_title (GXPSCoreProperties *core_props
);
Get the title.
|
a GXPSCoreProperties |
Returns : |
a string containing the title or NULL
|
Since 0.2.3
const gchar * gxps_core_properties_get_creator (GXPSCoreProperties *core_props
);
Get the creator.
|
a GXPSCoreProperties |
Returns : |
a string containing the creator or NULL
|
Since 0.2.3
const gchar * gxps_core_properties_get_description
(GXPSCoreProperties *core_props
);
Get the description.
|
a GXPSCoreProperties |
Returns : |
a string containing the description or NULL
|
Since 0.2.3
const gchar * gxps_core_properties_get_subject (GXPSCoreProperties *core_props
);
Get the subject.
|
a GXPSCoreProperties |
Returns : |
a string containing the subject or NULL
|
Since 0.2.3
const gchar * gxps_core_properties_get_keywords (GXPSCoreProperties *core_props
);
Get the keywords.
|
a GXPSCoreProperties |
Returns : |
a string containing the keywords or NULL
|
Since 0.2.3
const gchar * gxps_core_properties_get_version (GXPSCoreProperties *core_props
);
Get the version number.
|
a GXPSCoreProperties |
Returns : |
a string containing the version number or NULL
|
Since 0.2.3
const gchar * gxps_core_properties_get_revision (GXPSCoreProperties *core_props
);
Get the revision number.
|
a GXPSCoreProperties |
Returns : |
a string containing the revision number or NULL
|
Since 0.2.3
const gchar * gxps_core_properties_get_identifier (GXPSCoreProperties *core_props
);
Get the unique identifier.
|
a GXPSCoreProperties |
Returns : |
a string containing the identifier or NULL
|
Since 0.2.3
const gchar * gxps_core_properties_get_language (GXPSCoreProperties *core_props
);
Get the language.
|
a GXPSCoreProperties |
Returns : |
a string containing the language or NULL
|
Since 0.2.3
const gchar * gxps_core_properties_get_category (GXPSCoreProperties *core_props
);
Get the category.
|
a GXPSCoreProperties |
Returns : |
a string containing the category or NULL
|
Since 0.2.3
const gchar * gxps_core_properties_get_content_status
(GXPSCoreProperties *core_props
);
Get the status of the content (e.g. Draft, Reviewed, Final)
|
a GXPSCoreProperties |
Returns : |
a string containing the status of the content or NULL
|
Since 0.2.3
const gchar * gxps_core_properties_get_content_type
(GXPSCoreProperties *core_props
);
Get the type of content represented, generally defined by a specific use and intended audience. This is not the MIME-Type.
|
a GXPSCoreProperties |
Returns : |
a string containing the type of content or NULL
|
Since 0.2.3
time_t gxps_core_properties_get_created (GXPSCoreProperties *core_props
);
Get the creating date.
|
a GXPSCoreProperties |
Returns : |
the creating date as a time_t or -1. |
Since 0.2.3
const gchar * gxps_core_properties_get_last_modified_by
(GXPSCoreProperties *core_props
);
Get the user who performed the last modification.
|
a GXPSCoreProperties |
Returns : |
a string containing the user who performed the
last modification or NULL
|
Since 0.2.3
time_t gxps_core_properties_get_modified (GXPSCoreProperties *core_props
);
Get the last modification date.
|
a GXPSCoreProperties |
Returns : |
the modification date as a time_t or -1. |
Since 0.2.3
time_t gxps_core_properties_get_last_printed
(GXPSCoreProperties *core_props
);
Get the date of the last printing.
|
a GXPSCoreProperties |
Returns : |
the date of the last printing as a time_t or -1. |
Since 0.2.3