OSDN Git Service

c550a06b8d4a05ae176f34f5256441794211de84
[qt-creator-jp/qt-creator-jp.git] / src / plugins / find / searchresulttreeitems.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 SEARCHRESULTTREEITEMS_H
35 #define SEARCHRESULTTREEITEMS_H
36
37 #include "searchresultwindow.h"
38
39 #include <QtCore/QString>
40 #include <QtCore/QList>
41 #include <QtCore/qnamespace.h>
42 #include <QtGui/QIcon>
43
44 namespace Find {
45 namespace Internal {
46
47 class SearchResultTreeItem
48 {
49 public:
50     explicit SearchResultTreeItem(const SearchResultItem &item = SearchResultItem(),
51                                   SearchResultTreeItem *parent = NULL);
52     virtual ~SearchResultTreeItem();
53
54     bool isLeaf() const;
55     SearchResultTreeItem *parent() const;
56     SearchResultTreeItem *childAt(int index) const;
57     int insertionIndex(const QString &text, SearchResultTreeItem **existingItem) const;
58     int insertionIndex(const SearchResultItem &item, SearchResultTreeItem **existingItem) const;
59     void insertChild(int index, SearchResultTreeItem *child);
60     void insertChild(int index, const SearchResultItem &item);
61     void appendChild(const SearchResultItem &item);
62     int childrenCount() const;
63     int rowOfItem() const;
64     void clearChildren();
65
66     bool isUserCheckable() const;
67     void setIsUserCheckable(bool isUserCheckable);
68
69     Qt::CheckState checkState() const;
70     void setCheckState(Qt::CheckState checkState);
71
72     bool isGenerated() const { return m_isGenerated; }
73     void setGenerated(bool value) { m_isGenerated = value; }
74
75     SearchResultItem item;
76
77 private:
78     SearchResultTreeItem *m_parent;
79     QList<SearchResultTreeItem *> m_children;
80     bool m_isUserCheckable;
81     Qt::CheckState m_checkState;
82     bool m_isGenerated;
83 };
84
85 } // namespace Internal
86 } // namespace Find
87
88 #endif // SEARCHRESULTTREEITEMS_H