Delay masking the last character in Password echo mode.
[profile/ivi/qtbase.git] / src / gui / widgets / qlinecontrol_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtGui module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QLINECONTROL_P_H
43 #define QLINECONTROL_P_H
44
45 //
46 //  W A R N I N G
47 //  -------------
48 //
49 // This file is not part of the Qt API.  It exists purely as an
50 // implementation detail.  This header file may change from version to
51 // version without notice, or even be removed.
52 //
53 // We mean it.
54 //
55
56 #include "QtCore/qglobal.h"
57
58 #ifndef QT_NO_LINEEDIT
59 #include "private/qwidget_p.h"
60 #include "QtGui/qlineedit.h"
61 #include "QtGui/qtextlayout.h"
62 #include "QtGui/qstyleoption.h"
63 #include "QtCore/qpointer.h"
64 #include "QtGui/qclipboard.h"
65 #include "QtCore/qpoint.h"
66 #include "QtGui/qcompleter.h"
67 #include "QtGui/qaccessible.h"
68
69 #include "qplatformdefs.h"
70
71 QT_BEGIN_HEADER
72
73 QT_BEGIN_NAMESPACE
74
75 QT_MODULE(Gui)
76
77 class Q_GUI_EXPORT QLineControl : public QObject
78 {
79     Q_OBJECT
80
81 public:
82     QLineControl(const QString &txt = QString())
83         : m_cursor(0), m_preeditCursor(0), m_cursorWidth(0), m_layoutDirection(Qt::LayoutDirectionAuto),
84         m_hideCursor(false), m_separator(0), m_readOnly(0),
85         m_dragEnabled(0), m_echoMode(0), m_textDirty(0), m_selDirty(0),
86         m_validInput(1), m_blinkStatus(0), m_blinkPeriod(0), m_blinkTimer(0), m_deleteAllTimer(0),
87         m_ascent(0), m_maxLength(32767), m_lastCursorPos(-1),
88         m_tripleClickTimer(0), m_maskData(0), m_modifiedState(0), m_undoState(0),
89         m_selstart(0), m_selend(0), m_passwordEchoEditing(false)
90 #ifdef QT_GUI_PASSWORD_ECHO_DELAY
91         , m_passwordEchoTimer(0)
92 #endif
93     {
94         init(txt);
95     }
96
97     ~QLineControl()
98     {
99         delete [] m_maskData;
100     }
101
102     int nextMaskBlank(int pos)
103     {
104         int c = findInMask(pos, true, false);
105         m_separator |= (c != pos);
106         return (c != -1 ?  c : m_maxLength);
107     }
108
109     int prevMaskBlank(int pos)
110     {
111         int c = findInMask(pos, false, false);
112         m_separator |= (c != pos);
113         return (c != -1 ? c : 0);
114     }
115
116     bool isUndoAvailable() const { return !m_readOnly && m_undoState; }
117     bool isRedoAvailable() const { return !m_readOnly && m_undoState < (int)m_history.size(); }
118     void clearUndo() { m_history.clear(); m_modifiedState = m_undoState = 0; }
119
120     bool isModified() const { return m_modifiedState != m_undoState; }
121     void setModified(bool modified) { m_modifiedState = modified ? -1 : m_undoState; }
122
123     bool allSelected() const { return !m_text.isEmpty() && m_selstart == 0 && m_selend == (int)m_text.length(); }
124     bool hasSelectedText() const { return !m_text.isEmpty() && m_selend > m_selstart; }
125
126     int width() const { return qRound(m_textLayout.lineAt(0).width()) + 1; }
127     int height() const { return qRound(m_textLayout.lineAt(0).height()) + 1; }
128     int ascent() const { return m_ascent; }
129     qreal naturalTextWidth() const { return m_textLayout.lineAt(0).naturalTextWidth(); }
130
131     void setSelection(int start, int length);
132
133     inline QString selectedText() const { return hasSelectedText() ? m_text.mid(m_selstart, m_selend - m_selstart) : QString(); }
134     QString textBeforeSelection() const { return hasSelectedText() ? m_text.left(m_selstart) : QString(); }
135     QString textAfterSelection() const { return hasSelectedText() ? m_text.mid(m_selend) : QString(); }
136
137     int selectionStart() const { return hasSelectedText() ? m_selstart : -1; }
138     int selectionEnd() const { return hasSelectedText() ? m_selend : -1; }
139     bool inSelection(int x) const
140     {
141         if (m_selstart >= m_selend)
142             return false;
143         int pos = xToPos(x, QTextLine::CursorOnCharacter);
144         return pos >= m_selstart && pos < m_selend;
145     }
146
147     void removeSelection()
148     {
149         int priorState = m_undoState;
150         removeSelectedText();
151         finishChange(priorState);
152     }
153
154     int start() const { return 0; }
155     int end() const { return m_text.length(); }
156
157 #ifndef QT_NO_CLIPBOARD
158     void copy(QClipboard::Mode mode = QClipboard::Clipboard) const;
159     void paste(QClipboard::Mode mode = QClipboard::Clipboard);
160 #endif
161
162     int cursor() const{ return m_cursor; }
163     int preeditCursor() const { return m_preeditCursor; }
164
165     int cursorWidth() const { return m_cursorWidth; }
166     void setCursorWidth(int value) { m_cursorWidth = value; }
167
168     Qt::CursorMoveStyle cursorMoveStyle() const { return m_textLayout.cursorMoveStyle(); }
169     void setCursorMoveStyle(Qt::CursorMoveStyle style) { m_textLayout.setCursorMoveStyle(style); }
170
171     void moveCursor(int pos, bool mark = false);
172     void cursorForward(bool mark, int steps)
173     {
174         int c = m_cursor;
175         if (steps > 0) {
176             while (steps--)
177                 c = cursorMoveStyle() == Qt::VisualMoveStyle ? m_textLayout.rightCursorPosition(c)
178                                                              : m_textLayout.nextCursorPosition(c);
179         } else if (steps < 0) {
180             while (steps++)
181                 c = cursorMoveStyle() == Qt::VisualMoveStyle ? m_textLayout.leftCursorPosition(c)
182                                                              : m_textLayout.previousCursorPosition(c);
183         }
184         moveCursor(c, mark);
185     }
186
187     void cursorWordForward(bool mark) { moveCursor(m_textLayout.nextCursorPosition(m_cursor, QTextLayout::SkipWords), mark); }
188     void cursorWordBackward(bool mark) { moveCursor(m_textLayout.previousCursorPosition(m_cursor, QTextLayout::SkipWords), mark); }
189
190     void home(bool mark) { moveCursor(0, mark); }
191     void end(bool mark) { moveCursor(text().length(), mark); }
192
193     int xToPos(int x, QTextLine::CursorPosition = QTextLine::CursorBetweenCharacters) const;
194     QRect cursorRect() const;
195
196     qreal cursorToX(int cursor) const { return m_textLayout.lineAt(0).cursorToX(cursor); }
197     qreal cursorToX() const
198     {
199         int cursor = m_cursor;
200         if (m_preeditCursor != -1)
201             cursor += m_preeditCursor;
202         return cursorToX(cursor);
203     }
204
205     bool isReadOnly() const { return m_readOnly; }
206     void setReadOnly(bool enable) { m_readOnly = enable; }
207
208     QString text() const
209     {
210         QString res = m_maskData ? stripString(m_text) : m_text;
211         return (res.isNull() ? QString::fromLatin1("") : res);
212     }
213     void setText(const QString &txt) { internalSetText(txt, -1, false); }
214     QString displayText() const { return m_textLayout.text(); }
215
216     void backspace();
217     void del();
218     void deselect() { internalDeselect(); finishChange(); }
219     void selectAll() { m_selstart = m_selend = m_cursor = 0; moveCursor(m_text.length(), true); }
220
221     void insert(const QString &);
222     void clear();
223     void undo() { internalUndo(); finishChange(-1, true); }
224     void redo() { internalRedo(); finishChange(); }
225     void selectWordAtPos(int);
226
227     uint echoMode() const { return m_echoMode; }
228     void setEchoMode(uint mode)
229     {
230         cancelPasswordEchoTimer();
231         m_echoMode = mode;
232         m_passwordEchoEditing = false;
233         updateDisplayText();
234     }
235
236     int maxLength() const { return m_maxLength; }
237     void setMaxLength(int maxLength)
238     {
239         if (m_maskData)
240             return;
241         m_maxLength = maxLength;
242         setText(m_text);
243     }
244
245 #ifndef QT_NO_VALIDATOR
246     const QValidator *validator() const { return m_validator; }
247     void setValidator(const QValidator *v) { m_validator = const_cast<QValidator*>(v); }
248 #endif
249
250 #ifndef QT_NO_COMPLETER
251     QCompleter *completer() const { return m_completer; }
252     /* Note that you must set the widget for the completer separately */
253     void setCompleter(const QCompleter *c) { m_completer = const_cast<QCompleter*>(c); }
254     void complete(int key);
255 #endif
256
257     int cursorPosition() const { return m_cursor; }
258     void setCursorPosition(int pos) { if (pos <= m_text.length()) moveCursor(qMax(0, pos)); }
259
260     bool hasAcceptableInput() const { return hasAcceptableInput(m_text); }
261     bool fixup();
262
263     QString inputMask() const { return m_maskData ? m_inputMask + QLatin1Char(';') + m_blank : QString(); }
264     void setInputMask(const QString &mask)
265     {
266         parseInputMask(mask);
267         if (m_maskData)
268             moveCursor(nextMaskBlank(0));
269     }
270
271     // input methods
272 #ifndef QT_NO_IM
273     bool composeMode() const { return !m_textLayout.preeditAreaText().isEmpty(); }
274     void setPreeditArea(int cursor, const QString &text) { m_textLayout.setPreeditArea(cursor, text); }
275 #endif
276
277     QString preeditAreaText() const { return m_textLayout.preeditAreaText(); }
278
279     void updatePasswordEchoEditing(bool editing);
280     bool passwordEchoEditing() const {
281 #ifdef QT_GUI_PASSWORD_ECHO_DELAY
282         if (m_passwordEchoTimer != 0)
283             return true;
284 #endif
285         return m_passwordEchoEditing ;
286     }
287
288     QChar passwordCharacter() const { return m_passwordCharacter; }
289     void setPasswordCharacter(const QChar &character) { m_passwordCharacter = character; updateDisplayText(); }
290
291     Qt::LayoutDirection layoutDirection() const {
292         if (m_layoutDirection == Qt::LayoutDirectionAuto) {
293             if (m_text.isEmpty())
294                 return QApplication::keyboardInputDirection();
295             return m_text.isRightToLeft() ? Qt::RightToLeft : Qt::LeftToRight;
296         }
297         return m_layoutDirection;
298     }
299     void setLayoutDirection(Qt::LayoutDirection direction)
300     {
301         if (direction != m_layoutDirection) {
302             m_layoutDirection = direction;
303             updateDisplayText();
304         }
305     }
306
307     void setFont(const QFont &font) { m_textLayout.setFont(font); updateDisplayText(); }
308
309     void processInputMethodEvent(QInputMethodEvent *event);
310     void processMouseEvent(QMouseEvent* ev);
311     void processKeyEvent(QKeyEvent* ev);
312
313     int cursorBlinkPeriod() const { return m_blinkPeriod; }
314     void setCursorBlinkPeriod(int msec);
315     void resetCursorBlinkTimer();
316
317     bool cursorBlinkStatus() const { return m_blinkStatus; }
318
319     QString cancelText() const { return m_cancelText; }
320     void setCancelText(const QString &text) { m_cancelText = text; }
321
322     const QPalette &palette() const { return m_palette; }
323     void setPalette(const QPalette &p) { m_palette = p; }
324
325     enum DrawFlags {
326         DrawText = 0x01,
327         DrawSelections = 0x02,
328         DrawCursor = 0x04,
329         DrawAll = DrawText | DrawSelections | DrawCursor
330     };
331     void draw(QPainter *, const QPoint &, const QRect &, int flags = DrawAll);
332
333     bool processEvent(QEvent *ev);
334
335     QTextLayout *textLayout()
336     {
337         return &m_textLayout;
338     }
339
340 private:
341     void init(const QString &txt);
342     void removeSelectedText();
343     void internalSetText(const QString &txt, int pos = -1, bool edited = true);
344     void updateDisplayText(bool forceUpdate = false);
345
346     void internalInsert(const QString &s);
347     void internalDelete(bool wasBackspace = false);
348     void internalRemove(int pos);
349
350     inline void internalDeselect()
351     {
352         m_selDirty |= (m_selend > m_selstart);
353         m_selstart = m_selend = 0;
354     }
355
356     void internalUndo(int until = -1);
357     void internalRedo();
358
359     QString m_text;
360     QPalette m_palette;
361     int m_cursor;
362     int m_preeditCursor;
363     int m_cursorWidth;
364     Qt::LayoutDirection m_layoutDirection;
365     uint m_hideCursor : 1; // used to hide the m_cursor inside preedit areas
366     uint m_separator : 1;
367     uint m_readOnly : 1;
368     uint m_dragEnabled : 1;
369     uint m_echoMode : 2;
370     uint m_textDirty : 1;
371     uint m_selDirty : 1;
372     uint m_validInput : 1;
373     uint m_blinkStatus : 1;
374     int m_blinkPeriod; // 0 for non-blinking cursor
375     int m_blinkTimer;
376     int m_deleteAllTimer;
377     int m_ascent;
378     int m_maxLength;
379     int m_lastCursorPos;
380     QList<int> m_transactions;
381     QPoint m_tripleClick;
382     int m_tripleClickTimer;
383     QString m_cancelText;
384
385     void emitCursorPositionChanged();
386
387     bool finishChange(int validateFromState = -1, bool update = false, bool edited = true);
388
389 #ifndef QT_NO_VALIDATOR
390     QPointer<QValidator> m_validator;
391 #endif
392     QPointer<QCompleter> m_completer;
393 #ifndef QT_NO_COMPLETER
394     bool advanceToEnabledItem(int dir);
395 #endif
396
397     struct MaskInputData {
398         enum Casemode { NoCaseMode, Upper, Lower };
399         QChar maskChar; // either the separator char or the inputmask
400         bool separator;
401         Casemode caseMode;
402     };
403     QString m_inputMask;
404     QChar m_blank;
405     MaskInputData *m_maskData;
406
407     // undo/redo handling
408     enum CommandType { Separator, Insert, Remove, Delete, RemoveSelection, DeleteSelection, SetSelection };
409     struct Command {
410         inline Command() {}
411         inline Command(CommandType t, int p, QChar c, int ss, int se) : type(t),uc(c),pos(p),selStart(ss),selEnd(se) {}
412         uint type : 4;
413         QChar uc;
414         int pos, selStart, selEnd;
415     };
416     int m_modifiedState;
417     int m_undoState;
418     QVector<Command> m_history;
419     void addCommand(const Command& cmd);
420
421     inline void separate() { m_separator = true; }
422
423     // selection
424     int m_selstart;
425     int m_selend;
426
427     // masking
428     void parseInputMask(const QString &maskFields);
429     bool isValidInput(QChar key, QChar mask) const;
430     bool hasAcceptableInput(const QString &text) const;
431     QString maskString(uint pos, const QString &str, bool clear = false) const;
432     QString clearString(uint pos, uint len) const;
433     QString stripString(const QString &str) const;
434     int findInMask(int pos, bool forward, bool findSeparator, QChar searchChar = QChar()) const;
435
436     // complex text layout
437     QTextLayout m_textLayout;
438
439     bool m_passwordEchoEditing;
440     QChar m_passwordCharacter;
441 #ifdef QT_GUI_PASSWORD_ECHO_DELAY
442     int m_passwordEchoTimer;
443 #endif
444     void cancelPasswordEchoTimer()
445     {
446 #ifdef QT_GUI_PASSWORD_ECHO_DELAY
447         if (m_passwordEchoTimer != 0) {
448             killTimer(m_passwordEchoTimer);
449             m_passwordEchoTimer = 0;
450         }
451 #endif
452     }
453
454 Q_SIGNALS:
455     void cursorPositionChanged(int, int);
456     void selectionChanged();
457
458     void displayTextChanged(const QString &);
459     void textChanged(const QString &);
460     void textEdited(const QString &);
461
462     void resetInputContext();
463     void updateMicroFocus();
464
465     void accepted();
466     void editingFinished();
467     void updateNeeded(const QRect &);
468
469 #ifdef QT_KEYPAD_NAVIGATION
470     void editFocusChange(bool);
471 #endif
472 protected:
473     virtual void timerEvent(QTimerEvent *event);
474
475 private Q_SLOTS:
476     void _q_clipboardChanged();
477     void _q_deleteSelected();
478
479 };
480
481 QT_END_NAMESPACE
482
483 QT_END_HEADER
484
485 #endif // QT_NO_LINEEDIT
486
487 #endif // QLINECONTROL_P_H