aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/referenceexamples/extended/lineedit.cpp
blob: 802f47ef035749d3e01195c4430fa8062c15da82 (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include "lineedit.h"
#include <qqml.h>

LineEditExtension::LineEditExtension(QObject *object)
: QObject(object), m_lineedit(qobject_cast<QLineEdit *>(object))
{
}

int LineEditExtension::leftMargin() const
{
    return m_lineedit->textMargins().left();
}

void LineEditExtension::setLeftMargin(int l)
{
    QMargins m = m_lineedit->textMargins();
    if (m.left() != l) {
        m.setLeft(l);
        m_lineedit->setTextMargins(m);
        emit marginsChanged();
    }
}

int LineEditExtension::rightMargin() const
{
    return m_lineedit->textMargins().right();
}

void LineEditExtension::setRightMargin(int r)
{
    QMargins m = m_lineedit->textMargins();
    if (m.right() != r) {
        m.setRight(r);
        m_lineedit->setTextMargins(m);
        emit marginsChanged();
    }
}

int LineEditExtension::topMargin() const
{
    return m_lineedit->textMargins().top();
}

void LineEditExtension::setTopMargin(int t)
{
    QMargins m = m_lineedit->textMargins();
    if (m.top() != t) {
        m.setTop(t);
        m_lineedit->setTextMargins(m);
        emit marginsChanged();
    }
}

int LineEditExtension::bottomMargin() const
{
    return m_lineedit->textMargins().bottom();
}

void LineEditExtension::setBottomMargin(int b)
{
    QMargins m = m_lineedit->textMargins();
    if (m.bottom() != b) {
        m.setBottom(b);
        m_lineedit->setTextMargins(m);
        emit marginsChanged();
    }
}