![]() |
![]() |
![]() |
Conglomerate Programmer's Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
#define CONG_EEL_LOG_REF_COUNT (name, obj) void cong_eel_log_ref_count (const gchar *name
,GObject *obj
); void cong_eel_rectangle_construct (GdkRectangle *rectangle
,gint x
,gint y
,gint w
,gint h
); gchar * cong_eel_pango_layout_line_get_text (PangoLayoutLine *layout_line
); void cong_eel_rgb_to_gdk_color (GdkColor *color
,guchar r
,guchar g
,guchar b
); gboolean cong_eel_rectangle_contains (const GdkRectangle *rectangle
,int x
,int y
); guint32 cong_eel_rgb16_to_rgb (gushort r
,gushort g
,gushort b
); guint32 cong_eel_gdk_color_to_rgb (const GdkColor *color
); char * cong_eel_gdk_rgb_to_color_spec (guint32 color
); #define CONG_EEL_CALL_PARENT (parent_class_cast_macro, signal, parameters) #define CONG_EEL_CALL_PARENT_WITH_RETURN_VALUE(parent_class_cast_macro, signal, parameters) #define CONG_EEL_CALL_METHOD (class_cast_macro, object, signal, parameters) #define CONG_EEL_CALL_METHOD_WITH_RETURN_VALUE(class_cast_macro, object, signal, parameters) #define CONG_EEL_ASSIGN_MUST_OVERRIDE_SIGNAL(class_pointer, prefix, signal) #define CONG_EEL_IMPLEMENT_MUST_OVERRIDE_SIGNAL(prefix, signal) #define CONG_EEL_DEFINE_MUST_OVERRIDE_SIGNAL(class_cast_macro, class_pointer, prefix, signal) #define CONG_EEL_ACCESS_METHOD (class_cast_macro, object, method) #define CONG_EEL_INVOKE_METHOD (class_cast_macro, object, method, parameters) #define CONG_EEL_ASSERT_METHOD (class_cast_macro, object, method) #define CONG_EEL_INVOKE_METHOD_IF (class_cast_macro, object, method, parameters) gchar * cong_eel_prettify_xml_name_with_header_capitalisation (const gchar *xml_name
); gchar * cong_eel_prettify_xml_name_with_sentence_capitalisation (const gchar *xml_name
); void cong_eel_set_string (gchar **string
,gchar *value
); void cong_eel_draw_pixbuf (GdkDrawable *drawable
,GdkGC *gc
,GdkPixbuf *pixbuf
,gint src_x
,gint src_y
,gint dest_x
,gint dest_y
,gint width
,gint height
,GdkRgbDither dither
,gint x_dither
,gint y_dither
);
#define CONG_EEL_LOG_REF_COUNT(name, obj) cong_eel_log_ref_count(name, obj)
void cong_eel_log_ref_count (const gchar *name
,GObject *obj
);
TODO: Write me
void cong_eel_rectangle_construct (GdkRectangle *rectangle
,gint x
,gint y
,gint w
,gint h
);
TODO: Write me
gchar * cong_eel_pango_layout_line_get_text (PangoLayoutLine *layout_line
);
TODO: Write me
void cong_eel_rgb_to_gdk_color (GdkColor *color
,guchar r
,guchar g
,guchar b
);
TODO: Write me
gboolean cong_eel_rectangle_contains (const GdkRectangle *rectangle
,int x
,int y
);
guint32 cong_eel_rgb16_to_rgb (gushort r
,gushort g
,gushort b
);
TODO: Write me
guint32 cong_eel_gdk_color_to_rgb (const GdkColor *color
);
Converts from a GdkColor stlye color to a gdk_rgb one. Alpha gets set to fully opaque
|
A GdkColor style color. |
Returns : |
An rgb value. |
char * cong_eel_gdk_rgb_to_color_spec (guint32 color
);
Converts from a gdk_rgb value style to a string color spec. The gdk_rgb color alpha channel is ignored.
|
a gdk_rgb style value. |
Returns : |
a newly allocated color spec. |
#define CONG_EEL_CALL_PARENT_WITH_RETURN_VALUE(parent_class_cast_macro, signal, \ parameters)
#define CONG_EEL_CALL_METHOD_WITH_RETURN_VALUE(class_cast_macro, object, signal, \ parameters)
#define CONG_EEL_ASSIGN_MUST_OVERRIDE_SIGNAL(class_pointer, prefix, signal)
#define CONG_EEL_IMPLEMENT_MUST_OVERRIDE_SIGNAL(prefix, signal)
#define CONG_EEL_DEFINE_MUST_OVERRIDE_SIGNAL(class_cast_macro, class_pointer, prefix, signal)
#define CONG_EEL_INVOKE_METHOD(class_cast_macro, object, method, parameters)
#define CONG_EEL_INVOKE_METHOD_IF(class_cast_macro, object, method, parameters)
gchar * cong_eel_prettify_xml_name_with_header_capitalisation
(const gchar *xml_name
);
TODO: Write me
gchar * cong_eel_prettify_xml_name_with_sentence_capitalisation
(const gchar *xml_name
);
TODO: Write me
void cong_eel_set_string (gchar **string
,gchar *value
);
Sets a string
to value
, freeing the old value (if any)
|
a string |
|
a new value for the string |