aboutsummaryrefslogtreecommitdiff
path: root/src/corelib/widgets/mtextedit_p.h
blob: 971939e2ecebe71719b3968b8185a6ddfd926150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/***************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (directui@nokia.com)
**
** This file is part of libmeegotouch.
**
** If you have questions regarding the use of this file, please contact
** Nokia at directui@nokia.com.
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation
** and appearing in the file LICENSE.LGPL included in the packaging
** of this file.
**
****************************************************************************/

#ifndef MTEXTEDIT_P_H
#define MTEXTEDIT_P_H

#include <QTextCursor>
#include <QString>
#include <QList>
#include <QInputMethodEvent>
#include <QTime>

class QGraphicsSceneMouseEvent;
class QValidator;
class MCompleter;

#include "private/mwidgetcontroller_p.h"
#include "mtextedit.h"

class MNavigationBar;

class MTextEditPrivate : public MWidgetControllerPrivate
{
    Q_DECLARE_PUBLIC(MTextEdit)

public:
    MTextEditPrivate();
    virtual ~MTextEditPrivate();

    void init();

    QTextCursor *cursor() const;
    bool moveCursor(QTextCursor::MoveOperation moveOp,
                    QTextCursor::MoveMode moveMode = QTextCursor::MoveAnchor, int n = 1);

    bool smartMoveCursor(QTextCursor::MoveOperation moveOp,
                         QTextCursor::MoveMode moveMode = QTextCursor::MoveAnchor, int n = 1);

    bool doBackspace();
    bool doDelete();
    bool doTab();
    bool doTextInsert(const QString &text, bool usePreeditStyling = false);
    bool onReturnPressed(QKeyEvent *event);
    bool doSignCycle();

    bool validateCurrentBlock();

    bool validate();

    bool setCursorPosition(int index);

    void setPreeditText(const QString &text,
                        const QList<QInputMethodEvent::Attribute> &attributes);
    void commitPreedit();
    void removePreedit();
    bool isPositionOnPreedit(int cursorPosition) const;
    bool isPreediting() const;

    void requestSip();
    void requestAutoSip();
    void closeAutoSip();

    void setMode(MTextEditModel::EditMode mode);

    void notifyInputContextMouseHandler(int position, QGraphicsSceneMouseEvent *event);

    void sendCopyAvailable(bool yes);

    static QEvent::Type translateGraphicsSceneMouseTypeToQMouse(QEvent::Type input);

    enum StyleType
    {
        Bold,
        Italic,
        Underline
    };

    struct styleData
    {
        QTextCharFormat charFormat;
        int count;
    };
    QList<styleData> preeditStyling;

    void storePreeditTextStyling(int start, int end);
    void addStyleToPreeditStyling(StyleType currentStyleType, bool setValue);
    void insertTextWithPreeditStyling(const QString &text, int &currentListIndex, int &currentCount);
    void clearUnusedPreeditStyling(int currentListIndex, int currentCount);
    virtual bool copy();
    QString replaceLineBreaks(QString text, QString replacement);
    void _q_confirmCompletion(const QString &);

    //! \brief Disable MTextEdit::updateMicroFocus().
    //!
    //! Can be called multiple times without calling \a enableUpdateMicroFocus in between.  In such a case
    //! \a enableUpdateMicroFocus must be called equally many times.
    void disableUpdateMicroFocus();
    //! \param flush call updateMicroFocus() automatically if true and updateMicroFocus was called
    //! while being disabled
    void enableUpdateMicroFocus(bool flush = false);
    //! \brief updateMicroFocus() wrapper that can be disabled
    //! \sa disableUpdateMicroFocus
    //! \sa enableUpdateMicroFocus
    void updateMicroFocus();

    //! Call QInputContext::update() if input context exists
    //! and widget has focus
    void icUpdate();

    //! \brief Reset IC if we have focus.  Disable handling of input method events during reset().
    void safeReset();

    enum FocusEventStateType {
        NoFocusEventReceivedYet,
        FocusInEventReceived,
        FocusOutEventReceived
    };

    //! Used to keep track of focus events, ie., to determine whether a
    //! focusIn event got its corresponding focusOut event.
    //! Works around NB#186087 - QGraphicsItem never gets focusOutEvent on hide.
    FocusEventStateType focusEventState;

private:
    const QValidator *validator;
    bool ownValidator; // setting content type creates a validator that the widget owns

    MCompleter *completer;
    int registeredToolbarId;

    bool editActive; // true if editing started after getting focus

    // protection from input methods that send something on QInputContext::reset()
    bool omitInputMethodEvents;

    int updateMicroFocusDisabled;
    bool pendingMicroFocusUpdate;
    QTime lastMousePressTime;
    // was the last mouse press event a double click event?
    bool doubleClick;
    // start and end indices of the word over which the mouse was released the last time
    int previousReleaseWordStart;
    int previousReleaseWordEnd;
    // the last time when double click selection was done
    QTime doubleClickSelectionTime;
};

#endif