partitionmanager/src/gui/listdevices.cpp

89 lines
3.0 KiB
C++

/*************************************************************************
* Copyright (C) 2008-2010 by Volker Lanz <vl@fidra.de> *
* Copyright (C) 2016 by Andrius Štikonas <andrius@stikonas.eu> *
* *
* 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 3 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. If not, see <http://www.gnu.org/licenses/>.*
*************************************************************************/
#include "gui/listdevices.h"
#include <core/device.h>
#include <util/globallog.h>
#include <util/capacity.h>
#include <KIconLoader>
class ListDeviceWidgetItem : public QListWidgetItem
{
public:
ListDeviceWidgetItem(const Device& d) :
QListWidgetItem(QIcon::fromTheme(d.iconName()).pixmap(IconSize(KIconLoader::Desktop)), d.prettyName()),
deviceNode(d.deviceNode()) {
setToolTip(d.prettyName());
setSizeHint(QSize(0, 32));
}
const QString deviceNode;
};
/** Creates a new ListDevices instance.
@param parent the parent widget
*/
ListDevices::ListDevices(QWidget* parent) :
QWidget(parent),
Ui::ListDevicesBase(),
m_ActionCollection(nullptr)
{
setupUi(this);
}
void ListDevices::updateDevices(const OperationStack::Devices& devices)
{
listDevices().clear();
for (const auto &d : devices)
listDevices().addItem(new ListDeviceWidgetItem(*d));
}
void ListDevices::on_m_ListDevices_itemSelectionChanged()
{
if (listDevices().selectedItems().size() == 1) {
ListDeviceWidgetItem* item = dynamic_cast<ListDeviceWidgetItem*>(listDevices().selectedItems()[0]);
if (item != nullptr)
emit selectionChanged(item->deviceNode);
}
}
void ListDevices::on_m_ListDevices_itemDoubleClicked(QListWidgetItem* list_item)
{
ListDeviceWidgetItem* item = dynamic_cast<ListDeviceWidgetItem*>(list_item);
if (item != nullptr)
emit deviceDoubleClicked(item->deviceNode);
}
bool ListDevices::setSelectedDevice(const QString& device_node)
{
QList<QListWidgetItem*> items = listDevices().findItems(device_node, Qt::MatchContains);
if (items.size() > 0) {
listDevices().setCurrentItem(items[0]);
return true;
}
return false;
}