From e3fc2e3b7c634df819fa75629233e5f319ae6903 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 27 Feb 2015 13:08:32 -0500 Subject: Update how lumina-open detects applications which are registered on the system for a particular mimetype. Now it uses the manual method (checking each *.desktop file for that particular mimetype - since it has to load all of them anyway), as well as use the results of any matches in the /applications/mimeinfo.cache file. --- lumina-open/LFileDialog.cpp | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'lumina-open/LFileDialog.cpp') diff --git a/lumina-open/LFileDialog.cpp b/lumina-open/LFileDialog.cpp index 5214a2f1..d648925b 100644 --- a/lumina-open/LFileDialog.cpp +++ b/lumina-open/LFileDialog.cpp @@ -38,7 +38,7 @@ void LFileDialog::setFileInfo(QString filename, QString extension, bool isFile){ else if(extension=="email"){ ui->label_extension->setText( QString(tr("(Email Link)")) ); } else if(extension=="webbrowser"){ ui->label_extension->setText( QString(tr("(Internet URL)")) ); } else{ui->label_extension->setText("("+extension+" link)"); } - fileEXT = extension; + fileEXT = extension; //NOTE: this is the mime-type for the file now, not the extension generateAppList(); } @@ -66,9 +66,13 @@ void LFileDialog::setDefaultApp(QString extension, QString appFile){ // PRIVATE // ----------- QStringList LFileDialog::getPreferredApplications(){ - //Now search the settings for that extension - QStringList keys = settings->allKeys(); QStringList out; + //First list all the applications registered for that same mimetype + QString mime = fileEXT; + out << LXDG::findAvailableAppsForMime(mime); + + //Now search the internal settings for that extension and find any applications last used + QStringList keys = settings->allKeys(); for(int i=0; icombo_rec->clear(); //Now get the application mimetype for the file extension (if available) - QString mimetype = LXDG::findAppMimeForFile(fileEXT); + QString mimetype = fileEXT; //Now add all the detected applications QHash< QString, QList > hash = LXDG::sortDesktopCats( LXDG::systemDesktopFiles() ); QStringList cat = hash.keys(); -- cgit