partitionmanager/src/gui/listoperations.h

73 lines
2.2 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 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/>.*
*************************************************************************/
#if !defined(LISTOPERATIONS_H)
#define LISTOPERATIONS_H
#include <core/operationstack.h>
#include "ui_listoperationsbase.h"
#include <QWidget>
class Operation;
class QPoint;
class KActionCollection;
/** A list of pending operations.
@author Volker Lanz <vl@fidra.de>
*/
class ListOperations : public QWidget, public Ui::ListOperationsBase
{
Q_DISABLE_COPY(ListOperations)
public:
explicit ListOperations(QWidget* parent = nullptr);
public:
void setActionCollection(KActionCollection* coll) {
m_ActionCollection = coll;
}
void updateOperations(const OperationStack::Operations& ops);
QListWidget& listOperations() {
Q_ASSERT(m_ListOperations);
return *m_ListOperations;
}
protected:
KActionCollection* actionCollection() {
return m_ActionCollection;
}
const QListWidget& listOperations() const {
Q_ASSERT(m_ListOperations);
return *m_ListOperations;
}
void customContextMenuRequested(const QPoint& pos);
private:
KActionCollection* m_ActionCollection;
};
#endif