You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.4 KiB
125 lines
3.4 KiB
/* This file is part of the KDE Project |
|
Copyright (c) 2005 Jean-Remy Falleri <jr.falleri@laposte.net> |
|
Copyright (c) 2005-2007 Kevin Ottens <ervin@kde.org> |
|
|
|
This library is free software; you can redistribute it and/or |
|
modify it under the terms of the GNU Library General Public |
|
License version 2 as published by the Free Software Foundation. |
|
|
|
This library 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 |
|
Library General Public License for more details. |
|
|
|
You should have received a copy of the GNU Library General Public License |
|
along with this library; see the file COPYING.LIB. If not, write to |
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
|
Boston, MA 02110-1301, USA. |
|
*/ |
|
|
|
#include "deviceactionsdialog.h" |
|
|
|
#include <QIcon> |
|
#include <QCheckBox> |
|
#include <QDebug> |
|
|
|
#include "deviceaction.h" |
|
#include "ui_deviceactionsdialogview.h" |
|
|
|
DeviceActionsDialog::DeviceActionsDialog(QWidget *parent) |
|
: KDialog(parent) |
|
{ |
|
qDebug() << Q_FUNC_INFO; |
|
|
|
setModal(false); |
|
setButtons(Ok|Cancel); |
|
setDefaultButton(Ok); |
|
|
|
QWidget *page = new QWidget(this); |
|
m_view.setupUi(page); |
|
setMainWidget(page); |
|
updateActionsListBox(); |
|
|
|
resize(QSize(400,400).expandedTo(minimumSizeHint())); |
|
|
|
connect(this, &DeviceActionsDialog::okClicked, this, &DeviceActionsDialog::slotOk); |
|
connect(m_view.actionsList, &QListWidget::doubleClicked, this, &DeviceActionsDialog::slotOk); |
|
|
|
connect(this, &DeviceActionsDialog::finished, this, &DeviceActionsDialog::delayedDestruct); |
|
} |
|
|
|
DeviceActionsDialog::~DeviceActionsDialog() |
|
{ |
|
} |
|
|
|
void DeviceActionsDialog::setDevice(const Solid::Device &device) |
|
{ |
|
m_device = device; |
|
|
|
QString label = device.vendor(); |
|
if (!label.isEmpty()) label+=' '; |
|
label+= device.product(); |
|
|
|
setWindowTitle(label); |
|
|
|
m_view.iconLabel->setPixmap(QIcon::fromTheme(device.icon()).pixmap(64)); |
|
m_view.descriptionLabel->setText(device.vendor()+' '+device.product()); |
|
setWindowIcon(QIcon::fromTheme(device.icon())); |
|
} |
|
|
|
Solid::Device DeviceActionsDialog::device() const |
|
{ |
|
return m_device; |
|
} |
|
|
|
void DeviceActionsDialog::setActions(const QList<DeviceAction*> &actions) |
|
{ |
|
qDeleteAll(m_actions); |
|
m_actions.clear(); |
|
|
|
m_actions = actions; |
|
|
|
updateActionsListBox(); |
|
} |
|
|
|
QList<DeviceAction*> DeviceActionsDialog::actions() const |
|
{ |
|
return m_actions; |
|
} |
|
|
|
void DeviceActionsDialog::updateActionsListBox() |
|
{ |
|
m_view.actionsList->clear(); |
|
|
|
foreach (DeviceAction *action, m_actions) { |
|
QListWidgetItem *item = new QListWidgetItem(QIcon::fromTheme(action->iconName()), |
|
action->label()); |
|
item->setData(Qt::UserRole, action->id()); |
|
m_view.actionsList->addItem(item); |
|
} |
|
|
|
if (m_view.actionsList->count()>0) |
|
m_view.actionsList->item(0)->setSelected(true); |
|
} |
|
|
|
void DeviceActionsDialog::slotOk() |
|
{ |
|
QListWidgetItem *item = m_view.actionsList->selectedItems().value(0); |
|
|
|
if (item) { |
|
const QString id = item->data(Qt::UserRole).toString(); |
|
|
|
foreach (DeviceAction *action, m_actions) { |
|
if (action->id()==id) { |
|
launchAction(action); |
|
return; |
|
} |
|
} |
|
} |
|
} |
|
|
|
void DeviceActionsDialog::launchAction(DeviceAction *action) |
|
{ |
|
action->execute(m_device); |
|
accept(); |
|
}
|
|
|