-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
46 lines (40 loc) · 1.06 KB
/
mainwindow.cpp
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
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
void MainWindow::on_textEdit_textChanged()
{
QString result;
QString text = ui->textEdit->toPlainText();
QStringList lines = text.split("\n");
for(const QString &l: lines)
{
for(qint32 i=l.count()-1; i >= 0; i--)
{
QChar ch = l.at(i);
if(ch.direction() != QChar::DirAL && result.count() > 0)
{
qint32 lastIdx = result.count()-1;
while(lastIdx >= 0 && result.at(lastIdx).direction() != QChar::DirAL && result.at(lastIdx) != '\n')
lastIdx--;
if(lastIdx == -1)
result += ch;
else
result.insert(lastIdx+1, ch);
}
else
result += ch;
}
result += "\n";
}
ui->textBrowser->setText(result);
}
MainWindow::~MainWindow()
{
delete ui;
}