Updated Russian translation.
[quassel.git] / src / uisupport / inputline.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005/06 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "bufferview.h"
22 #include "graphicalui.h"
23 #include "inputline.h"
24 #include "tabcompleter.h"
25
26 InputLine::InputLine(QWidget *parent)
27   :
28 #ifdef HAVE_KDE
29     KTextEdit(parent),
30 #else
31     QLineEdit(parent),
32 #endif
33     idx(0),
34     tabCompleter(new TabCompleter(this))
35 {
36 #ifdef HAVE_KDE
37 //This is done to make the KTextEdit look like a lineedit
38   setMaximumHeight(document()->size().toSize().height());
39   setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
40   setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
41   setAcceptRichText(false);
42   setLineWrapMode(NoWrap);
43   enableFindReplace(false);
44   connect(this, SIGNAL(textChanged()), this, SLOT(on_textChanged()));
45 #endif
46
47   connect(this, SIGNAL(returnPressed()), this, SLOT(on_returnPressed()));
48   connect(this, SIGNAL(textChanged(QString)), this, SLOT(on_textChanged(QString)));
49 }
50
51 InputLine::~InputLine() {
52 }
53
54 void InputLine::setCustomFont(const QFont &font) {
55   setFont(font);
56 #ifdef HAVE_KDE
57   setMaximumHeight(document()->size().toSize().height());
58 #endif
59 }
60
61 bool InputLine::eventFilter(QObject *watched, QEvent *event) {
62   if(event->type() != QEvent::KeyPress)
63     return false;
64
65   // keys from BufferView should be sent to (and focus) the input line
66   BufferView *view = qobject_cast<BufferView *>(watched);
67   if(view) {
68     QKeyEvent *keyEvent = static_cast<QKeyEvent*>(event);
69     if(keyEvent->text().length() == 1 && !(keyEvent->modifiers() & (Qt::ControlModifier ^ Qt::AltModifier)) ) { // normal key press
70       QChar c = keyEvent->text().at(0);
71       if(c.isLetterOrNumber() || c.isSpace() || c.isPunct() || c.isSymbol()) {
72         setFocus();
73         keyPressEvent(keyEvent);
74         return true;
75       } else
76         return false;
77     }
78   }
79   return false;
80 }
81
82 void InputLine::keyPressEvent(QKeyEvent * event) {
83
84 #ifdef HAVE_KDE
85   if(event->matches(QKeySequence::Find)) {
86     QAction *act = GraphicalUi::actionCollection()->action("ToggleSearchBar");
87     if(act) {
88       act->toggle();
89       event->accept();
90       return;
91     }
92   }
93 #endif
94
95   switch(event->key()) {
96   case Qt::Key_Up:
97     event->accept();
98
99     addToHistory(text(), true);
100
101     if(idx > 0) {
102       idx--;
103       showHistoryEntry();
104     }
105
106     break;
107
108   case Qt::Key_Down:
109     event->accept();
110
111     addToHistory(text(), true);
112
113     if(idx < history.count()) {
114       idx++;
115       if(idx < history.count() || tempHistory.contains(idx)) // tempHistory might have an entry for idx == history.count() + 1
116         showHistoryEntry();
117       else
118         resetLine();              // equals clear() in this case
119     } else {
120       addToHistory(text());
121       resetLine();
122     }
123
124     break;
125
126   case Qt::Key_Select:          // for Qtopia
127     emit returnPressed();
128     break;
129
130 #ifdef HAVE_KDE
131 //Since this is a ktextedit, we don't have this signal "natively"
132   case Qt::Key_Return:
133     event->accept();
134     if(!text().isEmpty())
135       emit returnPressed();
136     break;
137
138   case Qt::Key_Enter:
139     event->accept();
140     if(!text().isEmpty())
141       emit returnPressed();
142     break;
143
144 #endif
145
146   default:
147 #ifdef HAVE_KDE
148     KTextEdit::keyPressEvent(event);
149 #else
150     QLineEdit::keyPressEvent(event);
151 #endif
152   }
153 }
154
155 bool InputLine::addToHistory(const QString &text, bool temporary) {
156   if(text.isEmpty())
157     return false;
158
159   Q_ASSERT(0 <= idx && idx <= history.count());
160
161   if(history.isEmpty() || text != history[idx - (int)(idx == history.count())]) {
162     // if an entry of the history is changed, we remember it and show it again at this
163     // position until a line was actually sent
164     // sent lines get appended to the history
165     if(temporary) {
166       tempHistory[idx] = text;
167     } else {
168       history << text;
169       tempHistory.clear();
170     }
171     return true;
172   } else {
173     return false;
174   }
175 }
176
177 void InputLine::on_returnPressed() {
178   addToHistory(text());
179   emit sendText(text());
180   resetLine();
181 }
182
183 void InputLine::on_textChanged(QString newText) {
184   QStringList lineSeparators;
185   lineSeparators << QString("\r\n")
186                  << QString('\n')
187                  << QString('\r');
188
189   QString lineSep;
190   foreach(QString separator, lineSeparators) {
191     if(newText.contains(separator)) {
192       lineSep = separator;
193       break;
194     }
195   }
196
197   if(lineSep.isEmpty())
198     return;
199
200   QStringList lines = newText.split(lineSep);
201   clear();
202
203   if(lines.count() >= 4) {
204     QString msg = tr("Do you really want to paste %1 lines?").arg(lines.count());
205     msg += "<p>";
206     for(int i = 0; i < 3; i++) {
207       msg += lines[i].left(40);
208       if(lines[i].count() > 40)
209         msg += "...";
210       msg += "<br />";
211     }
212     msg += "...</p>";
213     QMessageBox question(QMessageBox::NoIcon, tr("Paste Protection"), msg, QMessageBox::Yes|QMessageBox::No);
214     question.setDefaultButton(QMessageBox::No);
215 #ifdef Q_WS_MAC
216     question.setWindowFlags(question.windowFlags() | Qt::Sheet);
217 #endif
218     if(question.exec() == QMessageBox::No)
219       return;
220   }
221
222   foreach(QString line, lines) {
223     if(!line.isEmpty()) {
224       clear();
225       insert(line);
226       emit returnPressed();
227     }
228   }
229 //   if(newText.contains(lineSep)) {
230 //     clear();
231 //     QString line = newText.section(lineSep, 0, 0);
232 //     QString remainder = newText.section(lineSep, 1);
233 //     insert(line);
234 //     emit returnPressed();
235 //     insert(remainder);
236 //   }
237 }
238
239 void InputLine::resetLine() {
240   // every time the InputLine is cleared we also reset history index
241   idx = history.count();
242   clear();
243 }
244
245 void InputLine::showHistoryEntry() {
246   // if the user changed the history, display the changed line
247   tempHistory.contains(idx) ? setText(tempHistory[idx]) : setText(history[idx]);
248 }