![]() |
![]() |
![]() |
Conglomerate Programmer's Reference Manual | ![]() |
---|---|---|---|---|
CongAttributeWrapper; #define CONG_ATTRIBUTE_WRAPPER (obj) #define CONG_ATTRIBUTE_WRAPPER_CLASS (klass) #define IS_CONG_ATTRIBUTE_WRAPPER (obj) GType cong_attribute_wrapper_get_type (void); CongAttributeWrapper* cong_attribute_wrapper_construct (CongAttributeWrapper *attribute_wrapper, CongDocument *doc, CongNodePtr node, xmlNs *ns_ptr, const gchar *attribute_name); CongDocument* cong_attribute_wrapper_get_document (CongAttributeWrapper *attribute_wrapper); CongNodePtr cong_attribute_wrapper_get_node (CongAttributeWrapper *attribute_wrapper); xmlNs* cong_attribute_wrapper_get_ns (CongAttributeWrapper *attribute_wrapper); const gchar* cong_attribute_wrapper_get_attribute_name (CongAttributeWrapper *attribute_wrapper); gchar* cong_attribute_wrapper_get_attribute_value (CongAttributeWrapper *attribute_wrapper); void cong_attribute_wrapper_set_value (CongAttributeWrapper *attribute_wrapper, const gchar *new_value); void cong_attribute_wrapper_remove_value (CongAttributeWrapper *attribute_wrapper); void cong_attribute_wrapper_bind_to_widget (CongAttributeWrapper *wrapper, GtkWidget *widget);
GObject +----CongAttributeWrapper +----CongAttributeWrapperCheckButton +----CongAttributeWrapperRadioButton
#define CONG_ATTRIBUTE_WRAPPER(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, CONG_ATTRIBUTE_WRAPPER_TYPE, CongAttributeWrapper)
|
#define CONG_ATTRIBUTE_WRAPPER_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, CONG_ATTRIBUTE_WRAPPER_TYPE, CongAttributeWrapperClass)
|
#define IS_CONG_ATTRIBUTE_WRAPPER(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, CONG_ATTRIBUTE_WRAPPER_TYPE)
|
CongAttributeWrapper* cong_attribute_wrapper_construct (CongAttributeWrapper *attribute_wrapper, CongDocument *doc, CongNodePtr node, xmlNs *ns_ptr, const gchar *attribute_name);
TODO: Write me
|
|
|
|
|
|
|
|
|
|
Returns : |
CongDocument* cong_attribute_wrapper_get_document (CongAttributeWrapper *attribute_wrapper);
TODO: Write me
|
|
Returns : |
CongNodePtr cong_attribute_wrapper_get_node (CongAttributeWrapper *attribute_wrapper);
TODO: Write me
|
|
Returns : |
xmlNs* cong_attribute_wrapper_get_ns (CongAttributeWrapper *attribute_wrapper);
TODO: Write me
|
|
Returns : |
const gchar* cong_attribute_wrapper_get_attribute_name (CongAttributeWrapper *attribute_wrapper);
TODO: Write me
|
|
Returns : |
gchar* cong_attribute_wrapper_get_attribute_value (CongAttributeWrapper *attribute_wrapper);
Returns the content of the attribute represented by attribute_wrapper
.
|
|
Returns : |
The content of the attribute, to be freed by the caller. Can be NULL. |
void cong_attribute_wrapper_set_value (CongAttributeWrapper *attribute_wrapper, const gchar *new_value);
TODO: Write me
|
|
|
void cong_attribute_wrapper_remove_value (CongAttributeWrapper *attribute_wrapper);
TODO: Write me
|
void cong_attribute_wrapper_bind_to_widget (CongAttributeWrapper *wrapper, GtkWidget *widget);
TODO: Write me
|
|
|