partitionmanager/src/gui/listoperations.cpp

59 lines
2.3 KiB
C++

/***************************************************************************
* Copyright (C) 2008,2009 by Volker Lanz <vl@fidra.de> *
* *
* 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; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
***************************************************************************/
#include "gui/listoperations.h"
#include "ops/operation.h"
#include "util/globallog.h"
#include "util/capacity.h"
#include <KIconThemes/KIconLoader>
/** Creates a new ListOperations instance.
@param parent the parent widget
*/
ListOperations::ListOperations(QWidget* parent) :
QWidget(parent),
Ui::ListOperationsBase(),
m_ActionCollection(NULL)
{
setupUi(this);
}
void ListOperations::updateOperations(const OperationStack::Operations& ops)
{
listOperations().clear();
foreach (const Operation* op, ops)
{
QListWidgetItem* item = new QListWidgetItem(QIcon(KIconLoader().loadIcon(op->iconName(), KIconLoader::Small)), op->description());
item->setToolTip(op->description());
listOperations().addItem(item);
}
listOperations().scrollToBottom();
}
void ListOperations::on_m_ListOperations_customContextMenuRequested(const QPoint& pos)
{
emit contextMenuRequested(listOperations().viewport()->mapToGlobal(pos));
}