summaryrefslogtreecommitdiff
path: root/src/main-view/RecordEditor.cpp
blob: 3f7a96ce073903b40023ae79e5299ee106129885 (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
#include "RecordEditor.h"

#include <QtDebug>

const float RecordEditor::EditorWidthIncrease = 1.5;

RecordEditor::RecordEditor(QWidget* parent, const QRect& cellRect) :
    QTextEdit(parent), cellRect(cellRect),
    enabledSizeUpdates(true)
{
    setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
    setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
    setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
    connect( this, SIGNAL(textChanged()), SLOT(updateEditor()) );
}

void RecordEditor::startDrawing()
{
    clear();
    enabledSizeUpdates = false;
}

void RecordEditor::endDrawing()
{
    enabledSizeUpdates = true;
    updateEditor();
}

void RecordEditor::drawText(const QString& text)
{
    textCursor().insertText(text);
}

void RecordEditor::drawImage(const QString& filePath)
{
    QTextImageFormat format;
    format.setVerticalAlignment(QTextCharFormat::AlignBaseline);
    format.setName(filePath);
    format.setHeight(ThumbnailSize);
    textCursor().insertImage(format);
}

void RecordEditor::insertImage(int cursorPos, const QString& filePath)
{
    moveCursor(cursorPos);
    drawImage(filePath);
}

void RecordEditor::moveCursor(int cursorPos)
{
    QTextCursor cursor = textCursor();
    cursor.setPosition(cursorPos);
    setTextCursor(cursor);
}

QString RecordEditor::getText() const
{
    QString text;
    QTextBlock block = document()->begin();
    while(block.isValid())
    {
        for(QTextBlock::iterator it = block.begin(); !it.atEnd(); it++)
        {
            QTextCharFormat format = it.fragment().charFormat();
            if(format.isImageFormat())
                text += QString("<img src=\"") + format.toImageFormat().name() + "\">";
            else
                text += it.fragment().text();
        }
        block = block.next();
    }
    return text;
}

QSize RecordEditor::sizeHint() const
{
    int width = getEditorWidth();
    return QSize(width, getEditorHeight());
}

int RecordEditor::getEditorWidth() const
{
    int horMargins = contentsMargins().left() * 2;
    int textWidth = cellRect.width() - horMargins;
    document()->setTextWidth(textWidth);
    if(textWrapped() && textWidth < MinWidth)
    {
        textWidth = MinWidth;
        document()->setTextWidth(textWidth);
    }
    return textWidth + horMargins;
}

bool RecordEditor::textWrapped() const
{
    return document()->size().height() > cellRect.height();
}

int RecordEditor::getEditorHeight() const
{
    return document()->size().height() + contentsMargins().top() * 2;
}

void RecordEditor::updateEditor()
{
    if(!enabledSizeUpdates)
        return;
    adjustSize();
    updatePos();
}

void RecordEditor::updatePos()
{
    QRect editorRect = cellRect;
    editorRect.setSize(size());
    QSize viewportSize = qobject_cast<QWidget*>(parent())->size();
    if(editorRect.right() > viewportSize.width())
        editorRect.moveRight(viewportSize.width());
    if(editorRect.bottom() > viewportSize.height())
        editorRect.moveBottom(viewportSize.height());
    move(editorRect.topLeft());
}