mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
52 lines
2.1 KiB
C
52 lines
2.1 KiB
C
/* This file is part of KDevelop
|
|
Copyright 2014 Sven Brauch <svenbrauch@gmail.com>
|
|
|
|
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 KDEVPLATFORM_ABBREVIATIONS_H
|
|
#define KDEVPLATFORM_ABBREVIATIONS_H
|
|
|
|
#include <QString>
|
|
#include <QVarLengthArray>
|
|
#include <QVector>
|
|
#include <QStringList>
|
|
|
|
#include <language/languageexport.h>
|
|
|
|
// Taken and adapted for kdevelop from katecompletionmodel.cpp
|
|
KDEVPLATFORMLANGUAGE_EXPORT bool matchesAbbreviationHelper(const QStringRef& word, const QString& typed, const QVarLengthArray<int, 32>& offsets,
|
|
int& depth, int atWord = -1, int i = 0);
|
|
|
|
KDEVPLATFORMLANGUAGE_EXPORT bool matchesAbbreviation(const QStringRef& word, const QString& typed);
|
|
|
|
KDEVPLATFORMLANGUAGE_EXPORT bool matchesPath(const QString& path, const QString& typed);
|
|
|
|
/**
|
|
* @brief Matches a word against a list of search fragments.
|
|
* The word will be split at separation characters (space, / and ::) and
|
|
* the resulting fragments will be matched one-by-one against the typed fragments.
|
|
* If all typed fragments can be matched against a fragment in word in the right order
|
|
* (skipping is allowed), true will be returned.
|
|
* @param word the word to search in
|
|
* @param typedFragments the fragments which were typed
|
|
* @return bool true if match, else false
|
|
*/
|
|
KDEVPLATFORMLANGUAGE_EXPORT bool matchesAbbreviationMulti(const QString& word, const QStringList& typedFragments);
|
|
|
|
#endif
|
|
|
|
// kate: space-indent on; indent-width 2
|