mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
refill library download dialog on show
This commit is contained in:
parent
d7a88eecb1
commit
980404d73c
2 changed files with 22 additions and 3 deletions
|
|
@ -74,9 +74,6 @@ LibraryDownloadDialog::LibraryDownloadDialog ()
|
||||||
description_view.set_wrap_mode (Gtk::WRAP_WORD);
|
description_view.set_wrap_mode (Gtk::WRAP_WORD);
|
||||||
get_vbox()->pack_start (description_view);
|
get_vbox()->pack_start (description_view);
|
||||||
|
|
||||||
ARDOUR::LibraryFetcher lf;
|
|
||||||
lf.get_descriptions ();
|
|
||||||
lf.foreach_description (boost::bind (&LibraryDownloadDialog::add_library, this, _1));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
LibraryDownloadDialog::~LibraryDownloadDialog ()
|
LibraryDownloadDialog::~LibraryDownloadDialog ()
|
||||||
|
|
@ -84,6 +81,26 @@ LibraryDownloadDialog::~LibraryDownloadDialog ()
|
||||||
delete inflater;
|
delete inflater;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
LibraryDownloadDialog::refill ()
|
||||||
|
{
|
||||||
|
ARDOUR::LibraryFetcher lf;
|
||||||
|
lf.get_descriptions ();
|
||||||
|
|
||||||
|
if (lf.n_descriptions()) {
|
||||||
|
_model->clear ();
|
||||||
|
}
|
||||||
|
|
||||||
|
lf.foreach_description (boost::bind (&LibraryDownloadDialog::add_library, this, _1));
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
LibraryDownloadDialog::on_show ()
|
||||||
|
{
|
||||||
|
ArdourDialog::on_show ();
|
||||||
|
refill ();
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
LibraryDownloadDialog::library_selected ()
|
LibraryDownloadDialog::library_selected ()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@ class LibraryDownloadDialog : public ArdourDialog
|
||||||
~LibraryDownloadDialog ();
|
~LibraryDownloadDialog ();
|
||||||
|
|
||||||
void add_library (ARDOUR::LibraryDescription const &);
|
void add_library (ARDOUR::LibraryDescription const &);
|
||||||
|
void on_show ();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
class LibraryColumns : public Gtk::TreeModelColumnRecord {
|
class LibraryColumns : public Gtk::TreeModelColumnRecord {
|
||||||
|
|
@ -115,6 +116,7 @@ class LibraryDownloadDialog : public ArdourDialog
|
||||||
|
|
||||||
Gtk::TextView description_view;
|
Gtk::TextView description_view;
|
||||||
void library_selected ();
|
void library_selected ();
|
||||||
|
void refill ();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue