]> git.sur5r.net Git - minitube/blobdiff - src/autocomplete.h
Imported Upstream version 2.1.3
[minitube] / src / autocomplete.h
index 9a6e8b31c5b2a871d5cb6e05e2cfc23ef7c0d5de..17a59530bf82c76d7678b6ed24705176b72360b0 100644 (file)
@@ -1,19 +1,41 @@
+/* $BEGIN_LICENSE
+
+This file is part of Minitube.
+Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
+
+Minitube 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 3 of the License, or
+(at your option) any later version.
+
+Minitube 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 Minitube.  If not, see <http://www.gnu.org/licenses/>.
+
+$END_LICENSE */
+
 #ifndef SUGGESTCOMPLETION_H
 #define SUGGESTCOMPLETION_H
 
 #include <QtGui>
 
 class Suggester;
+class SearchLineEdit;
 
 class AutoComplete : public QObject {
     Q_OBJECT
 
 public:
-    AutoComplete(QWidget *parent, QLineEdit *editor);
+    AutoComplete(SearchLineEdit *parent, QLineEdit *editor);
     ~AutoComplete();
     bool eventFilter(QObject *obj, QEvent *ev);
     void showCompletion(const QStringList &choices);
     void setSuggester(Suggester* suggester);
+    QListWidget* getPopup() { return popup; }
 
 public slots:
     void doneCompletion();
@@ -23,8 +45,11 @@ public slots:
     void currentItemChanged(QListWidgetItem *current);
     void suggestionsReady(QStringList suggestions);
 
+signals:
+    void suggestionAccepted(const QString &suggestion);
+
 private:
-    QWidget *buddy;
+    SearchLineEdit *buddy;
     QLineEdit *editor;
     QString originalText;
     QListWidget *popup;