pasting multiple lines at once into the InputLine is now treated correctly
[quassel.git] / src / uisupport / inputline.h
index 936e1bd..3294be1 100644 (file)
@@ -28,32 +28,28 @@ class TabCompleter;
 class InputLine : public QLineEdit {
   Q_OBJECT
 
-  public:
-    InputLine(QWidget *parent = 0);
-    ~InputLine();
+public:
+  InputLine(QWidget *parent = 0);
+  ~InputLine();
     
-  protected:
-    virtual bool event(QEvent *);
-    virtual void keyPressEvent(QKeyEvent * event);
-
-  private slots:
-    void enter();
-
-  public slots:
-    void updateNickList(QStringList);
-    
-  signals:
-    void nickListUpdated(QStringList);
-    
-  private:
-    qint32 idx;
-    QStringList history;
-    QStringList nickList;
-
-    TabCompleter *tabComplete;
-
-    int bindModifier;
-    int jumpModifier;
+protected:
+  //    virtual bool event(QEvent *);
+  virtual void keyPressEvent(QKeyEvent * event);
+                                              
+private slots:
+  void on_returnPressed();
+  void on_textChanged(QString newText);
+
+signals:
+  void sendText(QString text);
+  
+private:
+  QStringList history;
+  qint32 idx;
+  TabCompleter *tabCompleter;
+
+  int bindModifier;
+  int jumpModifier;
 };
 
 #endif