/usr/include/nepomuk/facetwidget.h is in kdelibs5-dev 4:4.13.3-0ubuntu0.5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | /*
Copyright (c) 2010 Oszkar Ambrus <aoszkar@gmail.com>
Copyright (C) 2010 Sebastian Trueg <trueg@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef FACETSWIDGET_H
#define FACETSWIDGET_H
#include <QtGui/QWidget>
#include <QtCore/QList>
#include "facet.h"
#include "nepomukutils_export.h"
namespace Nepomuk {
namespace Query {
class Query;
class Term;
}
namespace Utils {
/**
* \class FacetWidget facetwidget.h Nepomuk/Utils/FacetWidget
*
* \ingroup nepomuk_facets
*
* \brief A widget providing a list of facets to add filters to a query.
*
* The basic usage of FacetWidget is rather simple: create a new instance,
* add facets to it through the addFacet() method, connect to the queryTermChanged()
* signal, and wait for the user to change the filters.
*
* More sophisticated usage involves extractFacetsFromTerm() or setClientQuery().
* For more details see the documentation of FacetModel which provides a similar
* API since FacetWidget is using it internally.
*
* \author Oszkar Ambrus <aoszkar@gmail.com>, Sebastian Trueg <trueg@kde.org>
*
* \since 4.6
*/
class NEPOMUKUTILS_EXPORT FacetWidget : public QWidget
{
Q_OBJECT
public:
/**
* Create a new empty FacetWidget.
*/
FacetWidget( QWidget *parent = 0 );
/**
* Destructor
*/
~FacetWidget();
/**
* \return All Facet instances added via addFacet() and setFacets().
*/
QList<Facet*> facets() const;
/**
* Extract as many facets from a query as possible. This method is not able to handle all
* kinds of queries but works well on queries created via queryTerm().
*
* Facets supported by this widget will be extracted from \p term and configured
* accordingly.
*
* \sa FacetModel::extractFacetsFromTerm()
*
* \return The rest term after facets have been extracted.
*/
Nepomuk::Query::Query extractFacetsFromQuery( const Nepomuk::Query::Query& query );
/**
* @returns the query term composed by the facets
*/
Nepomuk::Query::Term queryTerm() const;
/**
* Can be used to set the full query the client is using (this includes facets
* created through this widget). It allows the facet system to disable certain
* choices that would not change the result set or do not make sense otherwise.
*
* \sa FacetModel::setClientQuery()
*/
void setClientQuery( const Nepomuk::Query::Query& query );
public Q_SLOTS:
/**
* Add \p facet to the widget. Used to populate the widget with facets.
* Ownership of \p facet is transferred to the widget.
*/
void addFacet( Nepomuk::Utils::Facet* facet );
/**
* Set \p facets as the list of facets used in this widget. Used to populate the widget with facets.
* Ownership of the facets is transferred to the widget.
*/
void setFacets( const QList<Nepomuk::Utils::Facet*>& facets );
/**
* Remove all facets from the widget.
*/
void clear();
Q_SIGNALS:
/**
* Emitted whenever the facets change, i.e. when the user changes the selection
* or it is changed programmatically via extractFacetsFromQuery()
*/
void queryTermChanged( const Nepomuk::Query::Term& term );
private:
class Private;
Private * const d;
};
}
}
#endif // FACETSWIDGET_H
|