mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-03 00:05:24 -04:00
Run clang-tidy modernize-use-override to remove all the redundant virtual keywords from overridden methods, and add some missing overrides. Another benefit is that this has also added the overrides on destructors, which will cause a build failure if a base class is missing a virtual destructor.
78 lines
2.7 KiB
C++
78 lines
2.7 KiB
C++
/***************************************************************************
|
|
qgsbrowsertreeview.h
|
|
--------------------------------------
|
|
Date : January 2015
|
|
Copyright : (C) 2015 by Radim Blazek
|
|
Email : radim.blazek@gmail.com
|
|
***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef QGSBROWSERTREEVIEW_H
|
|
#define QGSBROWSERTREEVIEW_H
|
|
|
|
#include <QTreeView>
|
|
#include "qgis.h"
|
|
#include "qgis_gui.h"
|
|
|
|
class QgsBrowserModel;
|
|
|
|
/**
|
|
* \ingroup gui
|
|
* The QgsBrowserTreeView class extends QTreeView with save/restore tree state functionality.
|
|
*
|
|
* \see QgsBrowserModel
|
|
* \since QGIS 2.8
|
|
*/
|
|
class GUI_EXPORT QgsBrowserTreeView : public QTreeView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
|
|
//! Constructor for QgsBrowserTreeView
|
|
QgsBrowserTreeView( QWidget *parent SIP_TRANSFERTHIS = nullptr );
|
|
|
|
void setModel( QAbstractItemModel *model ) override;
|
|
//! Set the browser model
|
|
void setBrowserModel( QgsBrowserModel *model );
|
|
//! Return the browser model
|
|
QgsBrowserModel *browserModel() { return mBrowserModel; }
|
|
void showEvent( QShowEvent *e ) override;
|
|
void hideEvent( QHideEvent *e ) override;
|
|
|
|
// returns true if at least one descendat is expanded, used in refresh
|
|
bool hasExpandedDescendant( const QModelIndex &index ) const;
|
|
|
|
// Set section where to store settings (because we have 2 browser dock widgets)
|
|
void setSettingsSection( const QString §ion ) { mSettingsSection = section; }
|
|
|
|
protected slots:
|
|
void rowsInserted( const QModelIndex &parentIndex, int start, int end ) override;
|
|
|
|
private:
|
|
QString mSettingsSection;
|
|
// initial expanded paths
|
|
QStringList mExpandPaths;
|
|
void saveState();
|
|
void restoreState();
|
|
|
|
QString expandedPathsKey() const;
|
|
|
|
// Get list of expanded items paths recursively
|
|
QStringList expandedPathsList( const QModelIndex &index );
|
|
|
|
// Expand path recursively to root
|
|
void expandTree( const QModelIndex &index );
|
|
|
|
// returns true if expanded from root to item
|
|
bool treeExpanded( const QModelIndex &index );
|
|
QgsBrowserModel *mBrowserModel = nullptr;
|
|
};
|
|
|
|
#endif // QGSBROWSERTREEVIEW_H
|