OSDN Git Service

4f0059d8d253fbe7c7ce86fda85bcda877b20546
[qt-creator-jp/qt-creator-jp.git] / src / plugins / debugger / watchwindow.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef DEBUGGER_WATCHWINDOW_H
35 #define DEBUGGER_WATCHWINDOW_H
36
37 #include <QtGui/QTreeView>
38
39 namespace Debugger {
40 namespace Internal {
41
42 /////////////////////////////////////////////////////////////////////
43 //
44 // WatchWindow
45 //
46 /////////////////////////////////////////////////////////////////////
47
48 class WatchWindow : public QTreeView
49 {
50     Q_OBJECT
51
52 public:
53     enum Type { ReturnType, LocalsType, TooltipType, WatchersType };
54
55     explicit WatchWindow(Type type, QWidget *parent = 0);
56     Type type() const { return m_type; }
57
58 public slots:
59     void resizeColumnsToContents();
60     void setModel(QAbstractItemModel *model);
61     void setAlternatingRowColorsHelper(bool on) { setAlternatingRowColors(on); }
62     void watchExpression(const QString &exp);
63     void removeWatchExpression(const QString &exp);
64
65 private:
66     Q_SLOT void resetHelper();
67     Q_SLOT void expandNode(const QModelIndex &idx);
68     Q_SLOT void collapseNode(const QModelIndex &idx);
69     Q_SLOT void setUpdatesEnabled(bool enable);
70     Q_SLOT void setAlwaysResizeColumnsToContents(bool on);
71
72     void keyPressEvent(QKeyEvent *ev);
73     void contextMenuEvent(QContextMenuEvent *ev);
74     void dragEnterEvent(QDragEnterEvent *ev);
75     void dropEvent(QDropEvent *ev);
76     void dragMoveEvent(QDragMoveEvent *ev);
77     void mouseDoubleClickEvent(QMouseEvent *ev);
78     bool event(QEvent *ev);
79
80     void editItem(const QModelIndex &idx);
81     void resetHelper(const QModelIndex &idx);
82     void setWatchpoint(quint64 address);
83
84     void setModelData(int role, const QVariant &value = QVariant(),
85         const QModelIndex &index = QModelIndex());
86
87     Type m_type;
88     bool m_grabbing;
89 };
90
91
92 } // namespace Internal
93 } // namespace Debugger
94
95 #endif // DEBUGGER_WATCHWINDOW_H