equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: stub hbabstractitemview |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef HBABSTRACTITEMVIEW_H |
|
19 #define HBABSTRACTITEMVIEW_H |
|
20 |
|
21 #include "hbwidget.h" |
|
22 #include <QGraphicsWidget> |
|
23 #include <QItemSelectionModel> |
|
24 |
|
25 class HbAbstractViewItem; |
|
26 |
|
27 class HbAbstractItemView : public HbWidget |
|
28 { |
|
29 Q_OBJECT |
|
30 |
|
31 Q_PROPERTY(ItemAnimations enabledAnimations READ enabledAnimations WRITE setEnabledAnimations) |
|
32 |
|
33 public: |
|
34 |
|
35 enum ItemAnimation |
|
36 { |
|
37 None = 0x00000, |
|
38 Appear = 0x00001, |
|
39 Disappear = 0x00002, |
|
40 TouchDown = 0x00004, |
|
41 All = 0xFFFFF |
|
42 }; |
|
43 |
|
44 Q_DECLARE_FLAGS(ItemAnimations, ItemAnimation) |
|
45 |
|
46 enum SelectionMode |
|
47 { |
|
48 InvalidSelection, |
|
49 NoSelection, |
|
50 SingleSelection, |
|
51 MultiSelection, |
|
52 ContiguousSelection |
|
53 }; |
|
54 |
|
55 HbAbstractItemView(QGraphicsWidget *parent = 0) : HbWidget(parent){} |
|
56 |
|
57 void setEnabledAnimations(ItemAnimations flags) |
|
58 { |
|
59 Q_UNUSED(flags); |
|
60 } |
|
61 |
|
62 ItemAnimations enabledAnimations() const |
|
63 { |
|
64 return None; |
|
65 } |
|
66 |
|
67 signals: |
|
68 |
|
69 void activated(const QModelIndex &index); |
|
70 |
|
71 void longPressed(HbAbstractViewItem *item, const QPointF &point); |
|
72 |
|
73 }; |
|
74 |
|
75 #endif |