![]() |
![]() |
![]() |
libsocialweb Reference Manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy | Implemented Interfaces | Properties |
SwItemStream; const gchar * sw_item_stream_get_object_path (SwItemStream *item_stream
); SwService * sw_item_stream_get_service (SwItemStream *item_stream
); void sw_item_stream_add_items (SwItemStream *item_stream
,GList *items
); void sw_item_stream_add_item (SwItemStream *item_stream
,SwItem *item
); void sw_item_stream_update_items (SwItemStream *item_stream
,GList *items
); void sw_item_stream_update_item (SwItemStream *item_stream
,SwItem *item
); void sw_item_stream_remove_items (SwItemStream *item_stream
,GList *items
); void sw_item_stream_remove_item (SwItemStream *item_stream
,SwItem *item
);
const gchar * sw_item_stream_get_object_path (SwItemStream *item_stream
);
Since SwItemStream is responsible for constructing the object path and registering the object on the bus. This function is necessary for SwCore to be able to return the object path as the result of a function to open a view.
|
A SwItemStream |
Returns : |
A string providing the object path. |
SwService * sw_item_stream_get_service (SwItemStream *item_stream
);
|
A SwItemStream |
Returns : |
The SwService that SwItemStream is for |
void sw_item_stream_add_items (SwItemStream *item_stream
,GList *items
);
Add the items supplied in the list from the SwItemStream. This will cause signal emissions over the bus.
|
A SwItemStream |
|
A list of SwItem objects |
void sw_item_stream_add_item (SwItemStream *item_stream
,SwItem *item
);
Add a single item in the SwItemStream. This will cause a signal to be emitted across the bus.
|
A SwItemStream |
|
A SwItem |
void sw_item_stream_update_items (SwItemStream *item_stream
,GList *items
);
Update the items supplied in the list in the SwItemStream. This is will cause signal emissions over the bus.
|
A SwItemStream |
|
A list of SwItem objects that need updating |
void sw_item_stream_update_item (SwItemStream *item_stream
,SwItem *item
);
Update a single item in the SwItemStream. This will cause a signal to be emitted across the bus.
|
A SwItemStream |
|
A SwItem |
void sw_item_stream_remove_items (SwItemStream *item_stream
,GList *items
);
Remove the items supplied in the list from the SwItemStream. This will cause signal emissions over the bus.
|
A SwItemStream |
|
A list of SwItem objects |
void sw_item_stream_remove_item (SwItemStream *item_stream
,SwItem *item
);
Remove a single item to the SwItemStream. This will cause a signal to be emitted across the bus.
|
A SwItemStream |
|
A SwItem |