2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2012-04-02 13:09:37 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2012-04-02 13:09:37 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-04-02 13:09:37 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:58:39 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-04-02 13:09:37 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2012-04-02 13:09:37 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-04-02 13:09:37 +02:00
|
|
|
|
|
|
|
|
#ifndef BASETREEVIEW_H
|
|
|
|
|
#define BASETREEVIEW_H
|
|
|
|
|
|
|
|
|
|
#include "utils_global.h"
|
|
|
|
|
|
2014-04-09 17:39:41 +02:00
|
|
|
#include "itemviews.h"
|
2012-04-02 13:09:37 +02:00
|
|
|
|
2014-07-16 16:32:11 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QSettings;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2012-04-02 13:09:37 +02:00
|
|
|
namespace Utils {
|
|
|
|
|
|
2014-07-16 16:32:11 +02:00
|
|
|
namespace Internal { class BaseTreeViewPrivate; }
|
|
|
|
|
|
2014-07-15 23:33:17 +03:00
|
|
|
class QTCREATOR_UTILS_EXPORT BaseTreeView : public TreeView
|
2012-04-02 13:09:37 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2015-03-18 16:24:14 +01:00
|
|
|
enum { ExtraIndicesForColumnWidth = 12734 };
|
|
|
|
|
|
2012-04-02 13:09:37 +02:00
|
|
|
BaseTreeView(QWidget *parent = 0);
|
2014-07-16 16:32:11 +02:00
|
|
|
~BaseTreeView();
|
2012-04-02 13:09:37 +02:00
|
|
|
|
2014-07-16 16:32:11 +02:00
|
|
|
void setSettings(QSettings *settings, const QByteArray &key);
|
2013-01-10 15:23:12 +01:00
|
|
|
QModelIndexList activeRows() const;
|
2012-04-02 13:09:37 +02:00
|
|
|
|
|
|
|
|
virtual void rowActivated(const QModelIndex &) {}
|
2012-11-23 13:35:44 +01:00
|
|
|
virtual void rowClicked(const QModelIndex &) {}
|
2016-03-15 09:32:43 +01:00
|
|
|
|
|
|
|
|
void setModel(QAbstractItemModel *model) override;
|
|
|
|
|
void mousePressEvent(QMouseEvent *ev) override;
|
|
|
|
|
void showEvent(QShowEvent *ev) override;
|
2012-04-02 13:09:37 +02:00
|
|
|
|
2015-01-16 11:59:54 +01:00
|
|
|
void showProgressIndicator();
|
|
|
|
|
void hideProgressIndicator();
|
|
|
|
|
|
2016-03-15 09:32:43 +01:00
|
|
|
signals:
|
|
|
|
|
void aboutToShow();
|
|
|
|
|
|
2012-04-02 13:09:37 +02:00
|
|
|
public slots:
|
|
|
|
|
void setAlternatingRowColorsHelper(bool on) { setAlternatingRowColors(on); }
|
|
|
|
|
|
|
|
|
|
private:
|
2014-07-16 16:32:11 +02:00
|
|
|
Internal::BaseTreeViewPrivate *d;
|
2012-04-02 13:09:37 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Utils
|
|
|
|
|
|
|
|
|
|
#endif // BASETREEVIEW_H
|