mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
99 lines
3.2 KiB
C
99 lines
3.2 KiB
C
![]() |
/*
|
||
|
Copyright 2008 Hamish Rodda <rodda@kde.org>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License version 2 as published by the Free Software Foundation.
|
||
|
|
||
|
This library is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to
|
||
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#ifndef KDEVPLATFORM_PLUGIN_OVERRIDESPAGE_H
|
||
|
#define KDEVPLATFORM_PLUGIN_OVERRIDESPAGE_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
#include "language/duchain/declaration.h"
|
||
|
|
||
|
class QTreeWidget;
|
||
|
class QTreeWidgetItem;
|
||
|
|
||
|
namespace KDevelop {
|
||
|
|
||
|
/**
|
||
|
* Assistant page for choosing class functions, overridden from base classes.
|
||
|
*/
|
||
|
class OverridesPage : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
OverridesPage(QWidget* parent);
|
||
|
virtual ~OverridesPage();
|
||
|
|
||
|
/**
|
||
|
* Default implementation populates the tree with all virtual functions in the base classes.
|
||
|
* Calls @c addPotentialOverride() on each function, where more filtering can be applied.
|
||
|
*
|
||
|
* @param directBases Declarations of base classes from which the new class inherits directly.
|
||
|
* @param allBases Declarations of all base classes from which functions can be overridden
|
||
|
*/
|
||
|
virtual void addBaseClasses(const QList<DeclarationPointer>& directBases,
|
||
|
const QList<DeclarationPointer>& allBases);
|
||
|
/**
|
||
|
* Add @p childDeclaration as potential override.
|
||
|
*
|
||
|
* Don't call @c KDevelop::OverridesPage::addPotentialOverride() in overloaded
|
||
|
* class to filter a declaration.
|
||
|
*
|
||
|
* @p classItem The parent class from which @p childDeclaration stems from.
|
||
|
* Should be used as parent for the override item.
|
||
|
* @p childDeclaration The overridable function.
|
||
|
*/
|
||
|
virtual void addPotentialOverride(QTreeWidgetItem* classItem,
|
||
|
const DeclarationPointer& childDeclaration);
|
||
|
|
||
|
/**
|
||
|
* Add @p declarations as potential overrides under the category @p category.
|
||
|
*
|
||
|
* The DUChain must be locked for reading before calling this function
|
||
|
*
|
||
|
* @param category the user-visible category name
|
||
|
* @param declarations a list of declarations that can be overridden or implemented in the new class
|
||
|
*/
|
||
|
void addCustomDeclarations(const QString& category, const QList< KDevelop::DeclarationPointer >& declarations);
|
||
|
|
||
|
QList<DeclarationPointer> selectedOverrides() const;
|
||
|
|
||
|
void clear();
|
||
|
|
||
|
QTreeWidget* overrideTree() const;
|
||
|
|
||
|
QWidget* extraFunctionsContainer() const;
|
||
|
|
||
|
public Q_SLOTS:
|
||
|
/**
|
||
|
* Selects all functions for overriding
|
||
|
*/
|
||
|
virtual void selectAll();
|
||
|
/**
|
||
|
* Deselects all potential overrides
|
||
|
*/
|
||
|
virtual void deselectAll();
|
||
|
|
||
|
private:
|
||
|
struct OverridesPagePrivate* const d;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // KDEVPLATFORM_PLUGIN_OVERRIDESPAGE_H
|