summaryrefslogtreecommitdiff
path: root/src/frontend/mainindex/bookshelf/btindexitem.h
blob: 88609a3f093c9da5368e34446b3ca5b00f351eff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2008 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/

#ifndef BTINDEXITEM_H
#define BTINDEXITEM_H

#include "actionenum.h"

#include <QTreeWidgetItem>
#include <QString>

class QMimeData;
class QAction;


/**
@author The BibleTime team <info@bibletime.info>
*/
class BTIndexItem : public QTreeWidgetItem {
    public:
        /** Those menu actions which are item specific. */

        BTIndexItem(QTreeWidgetItem* parent);
        virtual ~BTIndexItem() {};
        /**
        * Enables the given action if it has the "indexActionType" property which this item supports.
        * Handles only those actions which may or may not be supported, not those which
        * are always supported by all items. If the action is not supported in the current state of the
        * item this function does nothing.
        */
        virtual bool enableAction(QAction*) const {
            return false;
        }

        //TODO: d'n'd functions so that view can delegate d'n'd to items?
        virtual bool acceptDrop(const QMimeData*) {
            return false;
        }
};

#endif