Interface
PhocBling
Prerequisite
In order to implement Bling, your type must inherit fromGObject
.
Interface structure
struct PhocBlingInterface {
GTypeInterface parent_iface;
PhocBox (* get_box) (
PhocBling* self
);
void (* render) (
PhocBling* self,
PhocRenderContext* ctx
);
void (* map) (
PhocBling* self
);
void (* unmap) (
PhocBling* self
);
gboolean (* is_mapped) (
PhocBling* self
);
}
No description available.
Interface members
parent_iface |
|
No description available. |
|
get_box |
|
No description available. |
|
render |
|
No description available. |
|
map |
|
No description available. |
|
unmap |
|
No description available. |
|
is_mapped |
|
No description available. |
Virtual methods
Phoc.Bling.render
Render the bling. Scissoring is handled by the renderer prior to invoking this function.