Better time formatting by using an explicit format
[quassel.git] / src / uisupport / tabcompleter.h
index b223fe6..7d1aa6a 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005/06 by the Quassel Project                          *
+ *   Copyright (C) 2005-2012 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   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_
+#ifndef TABCOMPLETER_H_
+#define TABCOMPLETER_H_
 
-#include <QObject>
-#include <QStringList>
 #include <QPointer>
+#include <QString>
+#include <QMap>
 
-class InputLine;
+#include "types.h"
+
+class MultiLineEdit;
 class IrcUser;
+class Network;
+
+class TabCompleter : public QObject
+{
+    Q_OBJECT
 
-class TabCompleter : public QObject {
-  Q_OBJECT
-  
 public:
-  TabCompleter(InputLine *inputLine_);
-  
-  void reset();
-  void complete();
-
-private slots:
-  void ircUserJoinedOrParted(IrcUser *ircUser);
-  
+    enum Type {
+        UserTab = 0x01,
+        ChannelTab = 0x02
+    };
+
+    explicit TabCompleter(MultiLineEdit *inputLine_);
+
+    void reset();
+    void complete();
+
+    virtual bool eventFilter(QObject *obj, QEvent *event);
+
+public slots:
+    void onTabCompletionKey();
+
 private:
-  QPointer<InputLine> 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<MultiLineEdit> _lineEdit;
+    bool _enabled;
+    QString _nickSuffix;
+
+    static const Network *_currentNetwork;
+    static BufferId _currentBufferId;
+    static QString _currentBufferName;
+    static Type _completionType;
+
+    QMap<CompletionKey, QString> _completionMap;
+    // QStringList completionTemplates;
+
+    QMap<CompletionKey, QString>::Iterator _nextCompletion;
+    int _lastCompletionLength;
+
+    void buildCompletionList();
 };
 
+
 #endif