Class
DevhelpBookList
Instance methods
dh_book_list_get_books
Gets the list of DhBook
‘s part of book_list
, in no particular order. Each
book ID in the list is unique (see dh_book_get_id()
).
Available since: 3.30
Signals
Devhelp.BookList::add-book
The ::add-book signal is emitted when a DhBook
is added to a
DhBookList
.
Available since: 3.30
Devhelp.BookList::remove-book
The ::remove-book signal is emitted when a DhBook
is removed from a
DhBookList
.
Available since: 3.30
Class structure
struct DevhelpBookListClass {
GObjectClass parent_class;
void (* add_book) (
DhBookList* book_list,
DhBook* book
);
void (* remove_book) (
DhBookList* book_list,
DhBook* book
);
GList* (* get_books) (
DhBookList* book_list
);
}
Class members
parent_class |
|
The parent class. |
|
add_book |
|
No description available. | |
remove_book |
|
No description available. | |
get_books |
|
No description available. |
Virtual methods
Devhelp.BookListClass.get_books
Gets the list of DhBook
‘s part of book_list
, in no particular order. Each
book ID in the list is unique (see dh_book_get_id()
).
Available since: 3.30
Functions
dh_book_list_get_default
Gets the default DhBookList
object. It is created with DhBookListBuilder
,
dh_book_list_builder_add_default_sub_book_lists()
is called, and
dh_book_list_builder_read_books_disabled_setting()
is called with the default
DhSettings
object as returned by dh_settings_get_default()
.
Available since: 3.30