/usr/include/KF5/KCompletion/kcompletionmatches.h is in libkf5completion-dev 5.18.0-0ubuntu1.
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 | /* This file is part of the KDE libraries
Copyright (C) 1999,2000 Carsten Pfeiffer <pfeiffer@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 as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
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 KCOMPLETIONMATCHES_H
#define KCOMPLETIONMATCHES_H
#include <ksortablelist.h>
#include <kcompletion_export.h>
#include <QStringList>
#include <QScopedPointer>
class KCompletionMatchesWrapper;
class KCompletionMatchesPrivate;
typedef KSortableList<QString> KCompletionMatchesList;
/**
* This structure is returned by KCompletion::allWeightedMatches().
* It also keeps the weight of the matches, allowing
* you to modify some matches or merge them with matches
* from another call to allWeightedMatches(), and sort the matches
* after that in order to have the matches ordered correctly.
*
* Example (a simplified example of what Konqueror's completion does):
* \code
* KCompletionMatches matches = completion->allWeightedMatches(location);
* if(!location.startsWith("www."))
matches += completion->allWeightedmatches("www." + location");
* matches.removeDuplicates();
* QStringList list = matches.list();
* \endcode
*
* @short List for keeping matches returned from KCompletion
*/
class KCOMPLETION_EXPORT KCompletionMatches : public KCompletionMatchesList
{
public:
Q_DECLARE_PRIVATE(KCompletionMatches)
/**
* Default constructor.
* @param sort if false, the matches won't be sorted before the conversion,
* use only if you're sure the sorting is not needed
*/
KCompletionMatches(bool sort);
/**
* copy constructor.
*/
KCompletionMatches(const KCompletionMatches &);
/**
* assignment operator.
*/
KCompletionMatches &operator=(const KCompletionMatches &);
/**
* @internal
*/
KCompletionMatches(const KCompletionMatchesWrapper &matches);
/**
* default destructor.
*/
~KCompletionMatches();
/**
* Removes duplicate matches. Needed only when you merged several matches
* results and there's a possibility of duplicates.
*/
void removeDuplicates();
/**
* Returns the matches as a QStringList.
* @param sort if false, the matches won't be sorted before the conversion,
* use only if you're sure the sorting is not needed
* @return the list of matches
*/
QStringList list(bool sort = true) const;
/**
* If sorting() returns false, the matches aren't sorted by their weight,
* even if true is passed to list().
* @return true if the matches won't be sorted
*/
bool sorting() const;
private:
const QScopedPointer<KCompletionMatchesPrivate> d_ptr;
};
#endif // KCOMPLETIONMATCHES_H
|