From e5c8e0d9752cfa6de4e6e0e8314ac572a9d113b1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 13 Dec 2006 07:09:22 +0000 Subject: Path parent/child bug fixes, added unit tests. Breadcrumb/browsing/subsubpatch bug fixes. Fixed about window icon and glade error messages. git-svn-id: http://svn.drobilla.net/lad/ingen@223 a436a847-0d15-0410-975c-d299462d15a1 --- src/progs/ingenuity/BreadCrumbBox.cpp | 49 ++++++++++++++++++------------ src/progs/ingenuity/LoadSubpatchWindow.cpp | 2 +- src/progs/ingenuity/ThreadedLoader.cpp | 9 ++++-- src/progs/ingenuity/ThreadedLoader.h | 2 +- src/progs/ingenuity/ingenuity.glade | 2 +- 5 files changed, 40 insertions(+), 24 deletions(-) (limited to 'src/progs/ingenuity') diff --git a/src/progs/ingenuity/BreadCrumbBox.cpp b/src/progs/ingenuity/BreadCrumbBox.cpp index 88772953..eca8a761 100644 --- a/src/progs/ingenuity/BreadCrumbBox.cpp +++ b/src/progs/ingenuity/BreadCrumbBox.cpp @@ -73,19 +73,21 @@ BreadCrumbBox::build(Path path, SharedPtr view) // Moving to a child of the full path, just append crumbs (preserve view cache) } else if (_breadcrumbs.size() > 0 && (path.is_child_of(_full_path))) { - string postfix = path.substr(_full_path.length()); - while (postfix.length() > 0) { - const string name = postfix.substr(0, postfix.find("/")); - cerr << "NAME: " << name << endl; + + string suffix = path.substr(_full_path.length()); + while (suffix.length() > 0) { + if (suffix[0] == '/') + suffix = suffix.substr(1); + const string name = suffix.substr(0, suffix.find("/")); _full_path = _full_path.base() + name; BreadCrumb* but = create_crumb(_full_path, view); - pack_end(*but, false, false, 1); + pack_start(*but, false, false, 1); _breadcrumbs.push_back(but); but->show(); - if (postfix.find("/") == string::npos) + if (suffix.find("/") == string::npos) break; else - postfix = postfix.substr(postfix.find("/")+1); + suffix = suffix.substr(suffix.find("/")+1); } for (std::list::iterator i = _breadcrumbs.begin(); i != _breadcrumbs.end(); ++i) @@ -106,21 +108,30 @@ BreadCrumbBox::build(Path path, SharedPtr view) _breadcrumbs.clear(); // Add root - BreadCrumb* but = create_crumb("/", view); - pack_start(*but, false, false, 1); - _breadcrumbs.push_front(but); - but->set_active(but->path() == _active_path); - - // Add the others - while (path != "/") { - BreadCrumb* but = create_crumb(path, view); + BreadCrumb* root_but = create_crumb("/", view); + pack_start(*root_but, false, false, 1); + _breadcrumbs.push_front(root_but); + root_but->set_active(root_but->path() == _active_path); + + Path working_path = "/"; + string suffix = path.substr(1); + while (suffix.length() > 0) { + if (suffix[0] == '/') + suffix = suffix.substr(1); + const string name = suffix.substr(0, suffix.find("/")); + working_path = working_path.base() + name; + BreadCrumb* but = create_crumb(working_path, view); pack_start(*but, false, false, 1); - _breadcrumbs.push_front(but); - but->set_active(but->path() == _active_path); - path = path.parent(); + _breadcrumbs.push_back(but); + but->set_active(working_path == _active_path); + but->show(); + if (suffix.find("/") == string::npos) + break; + else + suffix = suffix.substr(suffix.find("/")+1); } } - + _enable_signal = old_enable_signal; } diff --git a/src/progs/ingenuity/LoadSubpatchWindow.cpp b/src/progs/ingenuity/LoadSubpatchWindow.cpp index 92c8483c..9255bcf1 100644 --- a/src/progs/ingenuity/LoadSubpatchWindow.cpp +++ b/src/progs/ingenuity/LoadSubpatchWindow.cpp @@ -156,7 +156,7 @@ LoadSubpatchWindow::ok_clicked() poly = m_patch->poly(); App::instance().loader()->load_patch(false, get_filename(), "/", - m_initial_data, m_patch->parent()->path(), name, poly); + m_initial_data, m_patch->path(), name, poly); hide(); } diff --git a/src/progs/ingenuity/ThreadedLoader.cpp b/src/progs/ingenuity/ThreadedLoader.cpp index a3920665..79cd8507 100644 --- a/src/progs/ingenuity/ThreadedLoader.cpp +++ b/src/progs/ingenuity/ThreadedLoader.cpp @@ -55,12 +55,13 @@ ThreadedLoader::_whipped() _mutex.unlock(); } +/** FIXME: most of these paramteres do nothing */ void ThreadedLoader::load_patch(bool merge, const string& data_base_uri, const Path& data_path, MetadataMap engine_data, - optional engine_parent, + const Path& engine_parent, optional engine_name, optional engine_poly) { @@ -75,7 +76,11 @@ ThreadedLoader::load_patch(bool merge, _events.push_back(sigc::hide_return(sigc::bind( sigc::mem_fun(_loader, &Loader::load), - data_base_uri, "/", "", engine_data))); + data_base_uri, + engine_parent, + (engine_name) ? engine_name.get() : "", + "", + engine_data ))); _mutex.unlock(); diff --git a/src/progs/ingenuity/ThreadedLoader.h b/src/progs/ingenuity/ThreadedLoader.h index 9212c9c7..d5901a74 100644 --- a/src/progs/ingenuity/ThreadedLoader.h +++ b/src/progs/ingenuity/ThreadedLoader.h @@ -68,7 +68,7 @@ public: const string& data_base_uri, const Path& data_path, MetadataMap engine_data, - optional engine_parent = optional(), + const Path& engine_parent, optional engine_name = optional(), optional engine_poly = optional()); diff --git a/src/progs/ingenuity/ingenuity.glade b/src/progs/ingenuity/ingenuity.glade index 54cfb402..7fef84d5 100644 --- a/src/progs/ingenuity/ingenuity.glade +++ b/src/progs/ingenuity/ingenuity.glade @@ -3303,7 +3303,7 @@ Contributors: Usability / UI Design: Thorsten Wilms translator-credits - ingen-icon.png + ingen-icon.svg -- cgit v1.2.1