X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.h;h=96111923bb92dac095e1b211ad86e4e2e5751821;hp=b8461ee72c7521948ef1b13d7d36cdafce062fdf;hb=cc6e7c08709c4e761e2fd9c2e322751015497003;hpb=49813fa53b34ffa35837d30fd022e2fc72f57eb5 diff --git a/src/uisupport/tabcompleter.h b/src/uisupport/tabcompleter.h index b8461ee7..96111923 100644 --- a/src/uisupport/tabcompleter.h +++ b/src/uisupport/tabcompleter.h @@ -1,29 +1,30 @@ /*************************************************************************** -* Copyright (C) 2005-09 by the Quassel Project * -* devel@quassel-irc.org * -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) version 3. * -* * -* This program 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 General Public License for more details. * -* * -* You should have received a copy of the GNU General Public License * -* along with this program; if not, write to the * -* Free Software Foundation, Inc., * -* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * -***************************************************************************/ - -#ifndef TABCOMPLETER_H_ -#define TABCOMPLETER_H_ + * Copyright (C) 2005-2019 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program 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 General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ + +#pragma once + +#include "uisupport-export.h" +#include #include #include -#include #include "types.h" @@ -31,47 +32,49 @@ class MultiLineEdit; class IrcUser; class Network; -class TabCompleter : public QObject { - Q_OBJECT +class UISUPPORT_EXPORT TabCompleter : public QObject +{ + Q_OBJECT public: - enum Type { - UserTab = 0x01, - ChannelTab = 0x02 - }; - - explicit TabCompleter(MultiLineEdit *inputLine_); + enum Type + { + UserTab = 0x01, + ChannelTab = 0x02 + }; - void reset(); - void complete(); + explicit TabCompleter(MultiLineEdit* inputLine_); - virtual bool eventFilter(QObject *obj, QEvent *event); + void reset(); + void complete(); -private: + bool eventFilter(QObject* obj, QEvent* event) override; - struct CompletionKey { - inline CompletionKey(const QString &n) { contents = n; } - bool operator<(const CompletionKey &other) const; - QString contents; - }; +public slots: + void onTabCompletionKey(); - QPointer _lineEdit; - bool _enabled; - QString _nickSuffix; +private: + struct CompletionKey + { + inline CompletionKey(const QString& n) { contents = n; } + bool operator<(const CompletionKey& other) const; + QString contents; + }; - static const Network *_currentNetwork; - static BufferId _currentBufferId; - static QString _currentBufferName; - static Type _completionType; + QPointer _lineEdit; + bool _enabled; + QString _nickSuffix; - QMap _completionMap; - // QStringList completionTemplates; + static const Network* _currentNetwork; + static BufferId _currentBufferId; + static QString _currentBufferName; + static Type _completionType; - QMap::Iterator _nextCompletion; - int _lastCompletionLength; + QMap _completionMap; + // QStringList completionTemplates; - void buildCompletionList(); + QMap::Iterator _nextCompletion; + int _lastCompletionLength; + void buildCompletionList(); }; - -#endif