diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-12-31 11:28:08 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-12-31 11:28:08 +0100 |
commit | 1111d9fc2c11a351e3011d692293fa45eb9a5d86 (patch) | |
tree | 25f02cff1f95f890b7a65738dbfecb3a292da8b5 /src/lib/navigation/urlcompleter.h | |
parent | Using QCompleter to provide address bar completions (diff) | |
download | smolbote-1111d9fc2c11a351e3011d692293fa45eb9a5d86.tar.xz |
UrlCompleter searches the bookmarks tree (folder href)
Diffstat (limited to 'src/lib/navigation/urlcompleter.h')
-rw-r--r-- | src/lib/navigation/urlcompleter.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/lib/navigation/urlcompleter.h b/src/lib/navigation/urlcompleter.h new file mode 100644 index 0000000..f2c52ff --- /dev/null +++ b/src/lib/navigation/urlcompleter.h @@ -0,0 +1,25 @@ +/* + * This file is part of smolbote. It's copyrighted by the contributors recorded + * in the version control history of the file, available from its original + * location: git://neueland.iserlohn-fortress.net/smolbote.git + * + * SPDX-License-Identifier: GPL-3.0 + */ + +#ifndef URLCOMPLETER_H +#define URLCOMPLETER_H + +#include <QCompleter> + +class UrlCompleter : public QCompleter +{ + Q_OBJECT +public: + explicit UrlCompleter(QAbstractItemModel *model, QObject *parent = nullptr); + +protected: + QStringList splitPath(const QString &path) const override; + QString pathFromIndex(const QModelIndex &index) const override; +}; + +#endif // URLCOMPLETER_H |