Top | ![]() |
![]() |
![]() |
![]() |
gchar * | browser-views | Read / Write / Construct |
RhythmDB * | db | Read / Write / Construct Only |
RhythmDBEntryType * | entry-type | Read / Write / Construct Only |
RhythmDBQueryModel * | input-model | Read |
RhythmDBQueryModel * | output-model | Read |
GObject ╰── GInitiallyUnowned ╰── GtkWidget ╰── GtkContainer ╰── GtkBox ╰── RBLibraryBrowser
RBLibraryBrowser implements AtkImplementorIface, GtkBuildable and GtkOrientable.
This widget contains a set of RBPropertyViews backed by RhythmDBPropertyModels and constructs a chain of RhythmDBQueryModels to perform filtering of the entries in a source.
It operates on an input query model, containing the full set of entries that may be displayed in the source, and produces an output query model containing those entries that match the current selection.
When the selection in any of the property views changes, or when rb_library_browser_reset or rb_library_browser_set_selection are called to manipulate the selection, the query chain is rebuilt asynchronously to update the property views.
RBLibraryBrowser * rb_library_browser_new (RhythmDB *db
,RhythmDBEntryType *entry_type
);
Creates a new library browser.
void rb_library_browser_set_model (RBLibraryBrowser *widget
,RhythmDBQueryModel *model
,gboolean query_pending
);
Specifies a new input query model for the browser. This should be the query model constructed from the current search text, or the basic query model for the source if there is no search text.
widget |
||
model |
the new input RhythmDBQueryModel. |
[transfer none] |
query_pending |
if TRUE, the caller promises to run a query to populate the input query model. |
gboolean
rb_library_browser_reset (RBLibraryBrowser *widget
);
Clears all selections in the browser.
RhythmDBQuery *
rb_library_browser_construct_query (RBLibraryBrowser *widget
);
Constructs a RhythmDBQuery from the current selections in the browser.
GList *
rb_library_browser_get_property_views (RBLibraryBrowser *widget
);
Retrieves the property view widgets from the browser.
a GList containing the RBPropertyView widgets in the browser.
[element-type RBPropertyView][transfer container]
RBPropertyView * rb_library_browser_get_property_view (RBLibraryBrowser *widget
,RhythmDBPropType type
);
Retrieves the property view widget for the specified property, if there is one.
gboolean
rb_library_browser_has_selection (RBLibraryBrowser *widget
);
Determines whether the browser has an active selection.
void rb_library_browser_set_selection (RBLibraryBrowser *widget
,RhythmDBPropType type
,GList *selection
);
Replaces any current selection for the specified property.
widget |
||
type |
the property for which to set the selection |
|
selection |
a list of strings to select. |
[element-type utf8][transfer none] |
“browser-views”
property“browser-views” gchar *
The set of browsers to display.
Flags: Read / Write / Construct
Default value: "artists-albums"
“entry-type”
property“entry-type” RhythmDBEntryType *
The type of entries to use in the browser.
Flags: Read / Write / Construct Only
“input-model”
property“input-model” RhythmDBQueryModel *
This RhythmDBQueryModel defines the set of entries that the browser filters. This property is not writeable. To set a new input query model, use rb_library_browser_set_model.
Flags: Read
“output-model”
property“output-model” RhythmDBQueryModel *
This RhythmDBQueryModel contains the filtered set of entries. It is a subset of the entries contained in the input model. This should be used as the model backing the source's entry view.
Sources using this widget should connect to the notify signal for this property, updating their entry view when it changes.
Flags: Read