source: trunk/tools/designer/src/components/widgetbox/widgetboxtreewidget.h@ 846

Last change on this file since 846 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 5.0 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the Qt Designer of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#ifndef WIDGETBOXTREEWIDGET_H
43#define WIDGETBOXTREEWIDGET_H
44
45#include <qdesigner_widgetbox_p.h>
46
47#include <QtGui/QTreeWidget>
48#include <QtGui/QIcon>
49#include <QtCore/QList>
50#include <QtCore/QHash>
51#include <QtCore/QXmlStreamReader> // Cannot forward declare them on Mac
52#include <QtCore/QXmlStreamWriter>
53
54QT_BEGIN_NAMESPACE
55
56class QDesignerFormEditorInterface;
57class QDesignerDnDItemInterface;
58
59class QTimer;
60
61namespace qdesigner_internal {
62
63class WidgetBoxCategoryListView;
64
65// WidgetBoxTreeWidget: A tree of categories
66
67class WidgetBoxTreeWidget : public QTreeWidget
68{
69 Q_OBJECT
70
71public:
72 typedef QDesignerWidgetBoxInterface::Widget Widget;
73 typedef QDesignerWidgetBoxInterface::Category Category;
74 typedef QDesignerWidgetBoxInterface::CategoryList CategoryList;
75
76 explicit WidgetBoxTreeWidget(QDesignerFormEditorInterface *core, QWidget *parent = 0);
77 ~WidgetBoxTreeWidget();
78
79 int categoryCount() const;
80 Category category(int cat_idx) const;
81 void addCategory(const Category &cat);
82 void removeCategory(int cat_idx);
83
84 int widgetCount(int cat_idx) const;
85 Widget widget(int cat_idx, int wgt_idx) const;
86 void addWidget(int cat_idx, const Widget &wgt);
87 void removeWidget(int cat_idx, int wgt_idx);
88
89 void dropWidgets(const QList<QDesignerDnDItemInterface*> &item_list);
90
91 void setFileName(const QString &file_name);
92 QString fileName() const;
93 bool load(QDesignerWidgetBox::LoadMode loadMode);
94 bool loadContents(const QString &contents);
95 bool save();
96 QIcon iconForWidget(QString iconName) const;
97
98signals:
99 void pressed(const QString name, const QString dom_xml, const QPoint &global_mouse_pos);
100
101public slots:
102 void filter(const QString &);
103
104protected:
105 void contextMenuEvent(QContextMenuEvent *e);
106 void resizeEvent(QResizeEvent *e);
107
108private slots:
109 void slotSave();
110 void slotScratchPadItemDeleted();
111 void slotLastScratchPadItemDeleted();
112
113 void handleMousePress(QTreeWidgetItem *item);
114 void deleteScratchpad();
115 void slotListMode();
116 void slotIconMode();
117
118private:
119 WidgetBoxCategoryListView *addCategoryView(QTreeWidgetItem *parent, bool iconMode);
120 WidgetBoxCategoryListView *categoryViewAt(int idx) const;
121 void adjustSubListSize(QTreeWidgetItem *cat_item);
122
123 static bool readCategories(const QString &fileName, const QString &xml, CategoryList *cats, QString *errorMessage);
124 static bool readWidget(Widget *w, const QString &xml, QXmlStreamReader &r);
125
126 CategoryList loadCustomCategoryList() const;
127 void writeCategories(QXmlStreamWriter &writer, const CategoryList &cat_list) const;
128
129 int indexOfCategory(const QString &name) const;
130 int indexOfScratchpad() const;
131 int ensureScratchpad();
132 void addCustomCategories(bool replace);
133
134 void saveExpandedState() const;
135 void restoreExpandedState();
136 void updateViewMode();
137
138 QDesignerFormEditorInterface *m_core;
139 QString m_file_name;
140 typedef QHash<QString, QIcon> IconCache;
141 mutable IconCache m_pluginIcons;
142 bool m_iconMode;
143 QTimer *m_scratchPadDeleteTimer;
144};
145
146} // namespace qdesigner_internal
147
148QT_END_NAMESPACE
149
150#endif // WIDGETBOXTREEWIDGET_H
Note: See TracBrowser for help on using the repository browser.