~ubuntu-branches/ubuntu/wily/zanshin/wily-proposed

« back to all changes in this revision

Viewing changes to src/actionlistview.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2009-08-13 23:19:32 UTC
  • Revision ID: james.westby@ubuntu.com-20090813231932-lewqphiry1qs7w80
Tags: upstream-0.1+svn1006410
ImportĀ upstreamĀ versionĀ 0.1+svn1006410

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of Zanshin Todo.
 
2
 
 
3
   Copyright 2008 Kevin Ottens <ervin@kde.org>
 
4
 
 
5
   This program is free software; you can redistribute it and/or
 
6
   modify it under the terms of the GNU General Public License as
 
7
   published by the Free Software Foundation; either version 2 of
 
8
   the License or (at your option) version 3 or any later version
 
9
   accepted by the membership of KDE e.V. (or its successor approved
 
10
   by the membership of KDE e.V.), which shall act as a proxy
 
11
   defined in Section 14 of version 3 of the license.
 
12
 
 
13
   This program is distributed in the hope that it will be useful,
 
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
16
   GNU General Public License for more details.
 
17
 
 
18
   You should have received a copy of the GNU General Public License
 
19
   along with this program; if not, write to the Free Software
 
20
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
 
21
   USA.
 
22
*/
 
23
 
 
24
#ifndef ZANSHIN_ACTIONLISTVIEW_H
 
25
#define ZANSHIN_ACTIONLISTVIEW_H
 
26
 
 
27
#include <akonadi/itemview.h>
 
28
 
 
29
class ActionListView : public Akonadi::ItemView
 
30
{
 
31
    Q_OBJECT
 
32
 
 
33
public:
 
34
    ActionListView(QWidget *parent = 0);
 
35
    virtual ~ActionListView();
 
36
 
 
37
    virtual void setModel(QAbstractItemModel *model);
 
38
 
 
39
public slots:
 
40
    virtual void setRootIndex(const QModelIndex &index);
 
41
 
 
42
protected:
 
43
    virtual void startDrag(Qt::DropActions supportedActions);
 
44
    virtual QModelIndex moveCursor(CursorAction cursorAction, Qt::KeyboardModifiers modifiers);
 
45
 
 
46
private slots:
 
47
    void expandBranch(const QModelIndex& parent);
 
48
 
 
49
private:
 
50
    void connectModel(QAbstractItemModel *model) const;
 
51
};
 
52
 
 
53
#endif