1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
/***************************************************************************
* Copyright (C) 2010 by Daniel Nicoletti *
* dantti12@gmail.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; see the file COPYING. If not, write to *
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301, USA. *
***************************************************************************/
#include "ApplicationLauncher.h"
#include "ui_ApplicationLauncher.h"
#include <QStandardItemModel>
#include <QLoggingCategory>
#include <KToolInvocation>
#include <KLocalizedString>
#include <KService>
#include <KConfig>
#include <KConfigGroup>
Q_DECLARE_LOGGING_CATEGORY(APPER_LIB)
ApplicationLauncher::ApplicationLauncher(QWidget *parent) :
QDialog(parent),
m_embed(false),
ui(new Ui::ApplicationLauncher)
{
ui->setupUi(this);
connect(ui->showCB, &QCheckBox::toggled, this, &ApplicationLauncher::on_showCB_toggled);
setObjectName(QLatin1String("ApplicationLauncher"));
connect(ui->kdialogbuttonbox, &QDialogButtonBox::rejected, this, &ApplicationLauncher::accept);
setWindowIcon(QIcon::fromTheme(QLatin1String("task-complete")));
connect(ui->applicationsView, &QListView::clicked, this, &ApplicationLauncher::itemClicked);
}
ApplicationLauncher::~ApplicationLauncher()
{
delete ui;
}
bool ApplicationLauncher::embedded() const
{
return m_embed;
}
void ApplicationLauncher::setEmbedded(bool embedded)
{
m_embed = embedded;
ui->showCB->setVisible(!embedded);
ui->kdialogbuttonbox->setVisible(!embedded);
qCDebug(APPER_LIB) << embedded;
}
QStringList ApplicationLauncher::packages() const
{
return m_packages;
}
bool ApplicationLauncher::hasApplications()
{
QStandardItemModel *model = new QStandardItemModel(this);
ui->applicationsView->setModel(model);
m_files.removeDuplicates();
QStandardItem *item;
for (const QString &desktop : m_files) {
// we use KService to parse the .desktop file because findByDestopPath
// might fail because the Sycoca database is not up to date yet.
KService service(desktop);
if (service.isApplication() &&
!service.noDisplay() &&
!service.exec().isEmpty())
{
QString name = service.genericName().isEmpty() ? service.name()
: service.name() + QLatin1String(" - ") + service.genericName();
item = new QStandardItem(name);
item->setIcon(QIcon::fromTheme(service.icon()));
item->setData(service.entryPath(), Qt::UserRole);
item->setFlags(Qt::ItemIsEnabled);
model->appendRow(item);
}
}
setWindowTitle(i18np("New application available",
"New applications available",
model->rowCount()));
ui->label->setText(i18np("The following application was just installed. Click on it to launch:",
"The following applications were just installed. Click on them to launch:",
model->rowCount()));
return model->rowCount();
}
void ApplicationLauncher::addPackage(PackageKit::Transaction::Info info, const QString &packageID, const QString &summary)
{
Q_UNUSED(info)
Q_UNUSED(summary)
if (!m_packages.contains(packageID)) {
m_packages << packageID;
}
}
void ApplicationLauncher::files(const QString &packageID, const QStringList &files)
{
Q_UNUSED(packageID)
m_files.append(files.filter(QLatin1String(".desktop")));
}
void ApplicationLauncher::itemClicked(const QModelIndex &index)
{
// kDebug() << index.data(Qt::UserRole).toString();
KToolInvocation::startServiceByDesktopPath(index.data(Qt::UserRole).toString());
}
void ApplicationLauncher::on_showCB_toggled(bool checked)
{
KConfig config(QLatin1String("apper"));
KConfigGroup transactionGroup(&config, "Transaction");
transactionGroup.writeEntry("ShowApplicationLauncher", !checked);
config.sync();
}
#include "moc_ApplicationLauncher.cpp"
|