Top | ![]() |
![]() |
![]() |
![]() |
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
CongDocument *
cong_attribute_wrapper_get_document (CongAttributeWrapper *attribute_wrapper
);
TODO: Write me
CongNodePtr
cong_attribute_wrapper_get_node (CongAttributeWrapper *attribute_wrapper
);
TODO: Write me
xmlNs *
cong_attribute_wrapper_get_ns (CongAttributeWrapper *attribute_wrapper
);
TODO: Write me
const gchar *
cong_attribute_wrapper_get_attribute_name
(CongAttributeWrapper *attribute_wrapper
);
TODO: Write me
gchar *
cong_attribute_wrapper_get_attribute_value
(CongAttributeWrapper *attribute_wrapper
);
Returns the content of the attribute represented by attribute_wrapper
.
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