X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.h;h=9d4209023ea675b3d5824bc3f0488d8ddb631dba;hp=25ed200d07cf35e06e7399c2558d464a22b7670e;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=d6b056e936ec441258d291b7a8af7b83f9f53016 diff --git a/src/uisupport/tabcompleter.h b/src/uisupport/tabcompleter.h index 25ed200d..9d420902 100644 --- a/src/uisupport/tabcompleter.h +++ b/src/uisupport/tabcompleter.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005/06 by the Quassel IRC Team * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,42 +15,66 @@ * 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. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef _TABCOMPLETER_H_ -#define _TABCOMPLETER_H_ +#pragma once -#include -#include -#include +#include "uisupport-export.h" -class TabCompleter : public QObject { - Q_OBJECT - - public: - TabCompleter(QLineEdit *l, QObject *parent = 0); - void disable(); +#include +#include +#include + +#include "types.h" + +class MultiLineEdit; +class IrcUser; +class Network; + +class UISUPPORT_EXPORT TabCompleter : public QObject +{ + Q_OBJECT + +public: + enum Type + { + UserTab = 0x01, + ChannelTab = 0x02 + }; + + explicit TabCompleter(MultiLineEdit* inputLine_); + + void reset(); void complete(); - - public slots: - void updateNickList(QStringList); - void updateChannelList(QStringList); - - private: - bool enabled; - QString startOfLineSuffix; - QLineEdit *lineEdit; - QStringList completionTemplates; - QStringList channelList; - - QStringList nickList; - QStringList completionList; - QStringList::Iterator nextCompletion; - int lastCompletionLength; - + + bool eventFilter(QObject* obj, QEvent* event) override; + +public slots: + void onTabCompletionKey(); + +private: + struct CompletionKey + { + inline CompletionKey(const QString& n) { contents = n; } + bool operator<(const CompletionKey& other) const; + QString contents; + }; + + QPointer _lineEdit; + bool _enabled; + QString _nickSuffix; + + static const Network* _currentNetwork; + static BufferId _currentBufferId; + static QString _currentBufferName; + static Type _completionType; + + QMap _completionMap; + // QStringList completionTemplates; + + QMap::Iterator _nextCompletion; + int _lastCompletionLength; + void buildCompletionList(); - }; - -#endif