annotate demos/browser/edittableview.d @ 381:347e4c7a9ba1

make QwtD compile on Windows@
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Sun, 11 Jul 2010 01:59:42 +0100
parents a8d76a9a85aa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
45
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
1 /****************************************************************************
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
2 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
4 ** Contact: Qt Software Information (qt-info@nokia.com)
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
5 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
6 ** This file is part of the demonstration applications of the Qt Toolkit.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
7 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
8 ** $QT_BEGIN_LICENSE:LGPL$
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
9 ** Commercial Usage
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
10 ** Licensees holding valid Qt Commercial licenses may use this file in
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
11 ** accordance with the Qt Commercial License Agreement provided with the
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
12 ** Software or, alternatively, in accordance with the terms contained in
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
13 ** a written agreement between you and Nokia.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
14 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
15 ** GNU Lesser General Public License Usage
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
16 ** Alternatively, this file may be used under the terms of the GNU Lesser
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
17 ** General Public License version 2.1 as published by the Free Software
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
18 ** Foundation and appearing in the file LICENSE.LGPL included in the
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
19 ** packaging of this file. Please review the following information to
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
20 ** ensure the GNU Lesser General Public License version 2.1 requirements
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
21 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
22 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
23 ** In addition, as a special exception, Nokia gives you certain
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
24 ** additional rights. These rights are described in the Nokia Qt LGPL
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
26 ** package.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
27 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
28 ** GNU General Public License Usage
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
29 ** Alternatively, this file may be used under the terms of the GNU
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
30 ** General Public License version 3.0 as published by the Free Software
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
31 ** Foundation and appearing in the file LICENSE.GPL included in the
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
32 ** packaging of this file. Please review the following information to
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
33 ** ensure the GNU General Public License version 3.0 requirements will be
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
34 ** met: http://www.gnu.org/copyleft/gpl.html.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
35 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
36 ** If you are unsure which license is appropriate for your use, please
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
37 ** contact the sales department at qt-sales@nokia.com.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
38 ** $QT_END_LICENSE$
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
39 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
40 ****************************************************************************/
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
41 module edittableview;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
42
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
43
73
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
44 import qt.gui.QTableView;
45
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
45
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
46
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
47 class EditTableView : public QTableView
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
48 {
73
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
49 public:
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
50
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
51 this(QWidget parent = null)
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
52 {
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
53 super(parent);
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
54 }
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
55
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
56 void keyPressEvent(QKeyEvent event)
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
57 {
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
58 if ((event.key() == Qt.Key_Delete || event.key() == Qt.Key_Backspace) && model()) {
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
59 removeOne();
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
60 } else {
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
61 QAbstractItemView.keyPressEvent(event);
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
62 }
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
63 }
45
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
64
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
65 public:
73
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
66
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
67 void removeOne()
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
68 {
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
69 if (!model() || !selectionModel())
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
70 return;
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
71 int row = currentIndex().row();
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
72 model().removeRow(row, rootIndex());
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
73 QModelIndex idx = model().index(row, 0, rootIndex());
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
74 if (!idx.isValid())
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
75 idx = model().index(row - 1, 0, rootIndex());
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
76 selectionModel().select(idx, QItemSelectionModel.SelectCurrent | QItemSelectionModel.Rows);
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
77 }
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
78
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
79 void removeAll()
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
80 {
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
81 if (model())
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
82 model().removeRows(0, model().rowCount(rootIndex()), rootIndex());
7bfd46c330dc more porting
mandel
parents: 45
diff changeset
83 }
45
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
84 }