X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.h;h=96111923bb92dac095e1b211ad86e4e2e5751821;hp=193b2f5fa2f9b4b699369c77b55c49081e5dbc6a;hb=cc6e7c08709c4e761e2fd9c2e322751015497003;hpb=486bdd0ee6a197d0dfb0a1ca51785b8139a712a9 diff --git a/src/uisupport/tabcompleter.h b/src/uisupport/tabcompleter.h index 193b2f5f..96111923 100644 --- a/src/uisupport/tabcompleter.h +++ b/src/uisupport/tabcompleter.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005/06 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,46 +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 "uisupport-export.h" + +#include #include +#include + +#include "types.h" -class InputLine; +class MultiLineEdit; class IrcUser; +class Network; + +class UISUPPORT_EXPORT TabCompleter : public QObject +{ + Q_OBJECT -class TabCompleter : public QObject { - Q_OBJECT - public: - TabCompleter(InputLine *inputLine_); - - void reset(); - void complete(); + enum Type + { + UserTab = 0x01, + ChannelTab = 0x02 + }; + + explicit TabCompleter(MultiLineEdit* inputLine_); + + void reset(); + void complete(); + + bool eventFilter(QObject* obj, QEvent* event) override; - virtual bool eventFilter(QObject *obj, QEvent *event); +public slots: + void onTabCompletionKey(); -private slots: - void ircUserJoinedOrParted(IrcUser *ircUser); - private: - QPointer inputLine; - bool enabled; - QString nickSuffix; - - QStringList completionList; - // QStringList completionTemplates; - - QStringList::Iterator nextCompletion; - int lastCompletionLength; - - void buildCompletionList(); - -}; + 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; -#endif + QMap _completionMap; + // QStringList completionTemplates; + + QMap::Iterator _nextCompletion; + int _lastCompletionLength; + + void buildCompletionList(); +};