~ubuntu-branches/ubuntu/precise/partitionmanager/precise

« back to all changes in this revision

Viewing changes to src/gui/listoperations.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2009-05-02 14:50:18 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090502145018-ktgdpdforvzltn86
Tags: 1.0.0~beta2-0ubuntu1
* New upstream release
* Remove debian/patches (icon is now included)
  + drop quilt build-dep
* Bump standards-version to 3.8.1
* Update lintian override with manpage for partitionmanager-bin, the 
  actually binary is now a wrapper around -bin, so we don't need an
  additional manpage
* Use pkg-kde-tools for building instead of CDBS' kde4.mk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2008,2009 by Volker Lanz <vl@fidra.de>                  *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or modify  *
 
5
 *   it under the terms of the GNU General Public License as published by  *
 
6
 *   the Free Software Foundation; either version 2 of the License, or     *
 
7
 *   (at your option) any later version.                                   *
 
8
 *                                                                         *
 
9
 *   This program is distributed in the hope that it will be useful,       *
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
12
 *   GNU General Public License for more details.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program; if not, write to the                         *
 
16
 *   Free Software Foundation, Inc.,                                       *
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
 
18
 ***************************************************************************/
 
19
 
 
20
#include "gui/listoperations.h"
 
21
 
 
22
#include "gui/partitionmanagerwidget.h"
 
23
 
 
24
#include "ops/operation.h"
 
25
 
 
26
#include "util/globallog.h"
 
27
#include "util/capacity.h"
 
28
 
 
29
#include <kmenu.h>
 
30
#include <kactioncollection.h>
 
31
 
 
32
/** Creates a new ListOperations instance.
 
33
        @param parent the parent widget
 
34
*/
 
35
ListOperations::ListOperations(QWidget* parent) :
 
36
        QWidget(parent),
 
37
        Ui::ListOperationsBase(),
 
38
        m_ActionCollection(NULL),
 
39
        m_PartitionManagerWidget(NULL)
 
40
{
 
41
        setupUi(this);
 
42
}
 
43
 
 
44
void ListOperations::updateOperations()
 
45
{
 
46
        listOperations().clear();
 
47
 
 
48
        foreach (const Operation* op, pmWidget().operations())
 
49
        {
 
50
                QListWidgetItem* item = new QListWidgetItem(SmallIcon(op->iconName()), op->description());
 
51
                item->setToolTip(op->description());
 
52
                listOperations().addItem(item);
 
53
        }
 
54
 
 
55
        listOperations().scrollToBottom();
 
56
}
 
57
 
 
58
void ListOperations::on_m_ListOperations_customContextMenuRequested(const QPoint& pos)
 
59
{
 
60
        Q_ASSERT(actionCollection());
 
61
 
 
62
        KMenu opsMenu;
 
63
 
 
64
        opsMenu.addAction(actionCollection()->action("undoOperation"));
 
65
        opsMenu.addAction(actionCollection()->action("clearAllOperations"));
 
66
        opsMenu.addAction(actionCollection()->action("applyAllOperations"));
 
67
 
 
68
        opsMenu.exec(listOperations().viewport()->mapToGlobal(pos));
 
69
}
 
70