aboutsummaryrefslogtreecommitdiff
path: root/src/corelib/widgets/mtexteditmodel.h
blob: 87159e23b9da4989c49250cfa4ec833649c6760c (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
/***************************************************************************
**
** 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 MTEXTEDITMODEL_H
#define MTEXTEDITMODEL_H

#include <mwidgetmodel.h>
#include <limits>
#include <QTextDocument>
#include "mnamespace.h"

class M_CORE_EXPORT MTextEditModel : public MWidgetModel
{
    Q_OBJECT
    M_MODEL_INTERNAL(MTextEditModel)

public:

    //! Edit mode for MTextEdit
    enum EditMode {
        //! The main mode of operation, no selection or preedit
        EditModeBasic,

        //! preedit editing initiated
        EditModeActive,

        //! Text selected
        EditModeSelect
    };

    //! Line mode for MTextEdit, single line or multiline
    enum LineMode {
        //! Only one line allowed, no more can be created
        SingleLine,

        //! May have arbitrary number of lines
        MultiLine
    };

    enum EchoMode {
        //! Display characters as they are entered, default.
        Normal,

        //! Do not display entered characters.
        NoEcho,

        //! Entered characters are replaced by mask characters.
        Password,

        //! Input is displayed clear text while doing input, replaced by mask characters afterwards.
        PasswordEchoOnEdit
    };

private:

    M_MODEL_PROPERTY(MTextEditModel::EditMode, edit, Edit, true, MTextEditModel::EditModeBasic)
    M_MODEL_PROPERTY(MTextEditModel::LineMode, line, Line, true, MTextEditModel::SingleLine)
    M_MODEL_PTR_PROPERTY(QTextDocument *, document, Document, true, NULL)
    M_MODEL_PTR_PROPERTY(QTextCursor *, cursor, Cursor, true, NULL)

    M_MODEL_PROPERTY(QString, text, Text, true, QString())
    M_MODEL_PROPERTY(M::TextContentType, type, Type, true, M::FreeTextContentType)
    M_MODEL_PROPERTY(Qt::TextInteractionFlags, textInteractionFlags, TextInteractionFlags, true, Qt::TextEditorInteraction)

    M_MODEL_PROPERTY(bool, inputMethodCorrectionEnabled, InputMethodCorrectionEnabled, true, true)
    M_MODEL_PROPERTY(bool, isReadOnly, ReadOnly, true, false)
    M_MODEL_PROPERTY(bool, inputMethodAutoCapitalizationEnabled, InputMethodAutoCapitalizationEnabled, true, true)
    M_MODEL_PROPERTY(bool, autoSelectionEnabled, AutoSelectionEnabled, true, false)
    M_MODEL_PROPERTY(bool, inputMethodPredictionEnabled, InputMethodPredictionEnabled, true, false)
    M_MODEL_PROPERTY(int,  maxLength, MaxLength, true, std::numeric_limits<int>::max())
    M_MODEL_PROPERTY(QString, prompt, Prompt, true, QString())
    M_MODEL_PROPERTY(QString, toolbar, Toolbar, true, QString())
    M_MODEL_PROPERTY(int, toolbarId, ToolbarId, true, -1)
    M_MODEL_PROPERTY(MTextEditModel::EchoMode, echo, Echo, true, MTextEditModel::Normal)
    M_MODEL_PROPERTY(bool, isAutoSipEnabled, AutoSipEnabled, true, true)

    M_MODEL_PROPERTY(int, preeditCursor, PreeditCursor, true, -1)
public:
    void updateCursor()   {
        memberModified(MTextEditModel::Cursor);
    }
};

#endif