X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.h;h=b8461ee72c7521948ef1b13d7d36cdafce062fdf;hp=c8a75f74ac1018a0baf805b3d3f9ddeeda500316;hb=d8d9cc49774faf66170790ea687c37584e5e7a51;hpb=5df99c1ab83baf3a6caef7e49177f84bd48d127e diff --git a/src/uisupport/tabcompleter.h b/src/uisupport/tabcompleter.h index c8a75f74..b8461ee7 100644 --- a/src/uisupport/tabcompleter.h +++ b/src/uisupport/tabcompleter.h @@ -1,56 +1,77 @@ /*************************************************************************** - * Copyright (C) 2005/06 by The Quassel Team * - * 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) any later version. * - * * - * 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_ - -#include -#include -#include +* 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_ + +#include +#include +#include + +#include "types.h" + +class MultiLineEdit; +class IrcUser; +class Network; class TabCompleter : public QObject { Q_OBJECT - - public: - TabCompleter(QLineEdit *l, QObject *parent = 0); - void disable(); - 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; - - void buildCompletionList(); - + +public: + enum Type { + UserTab = 0x01, + ChannelTab = 0x02 + }; + + explicit TabCompleter(MultiLineEdit *inputLine_); + + void reset(); + void complete(); + + virtual bool eventFilter(QObject *obj, QEvent *event); + +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