2019-06-29 11:16:31 +08:00
|
|
|
#include "qtcommon.h"
|
2019-01-23 03:35:34 +08:00
|
|
|
#include "extension.h"
|
|
|
|
#include <QKeyEvent>
|
|
|
|
|
2019-02-28 00:33:17 +08:00
|
|
|
extern const char* THREAD_LINKER;
|
|
|
|
extern const char* LINK;
|
2021-06-05 16:20:04 +08:00
|
|
|
extern const char* UNLINK;
|
2019-02-28 00:33:17 +08:00
|
|
|
extern const char* THREAD_LINK_FROM;
|
|
|
|
extern const char* THREAD_LINK_TO;
|
2019-06-13 16:01:29 +08:00
|
|
|
extern const char* HEXADECIMAL;
|
2019-02-28 00:33:17 +08:00
|
|
|
|
2021-06-05 16:20:04 +08:00
|
|
|
std::unordered_map<int64_t, std::unordered_set<int64_t>> linkedTextHandles;
|
2021-06-05 16:58:53 +08:00
|
|
|
concurrency::reader_writer_lock m;
|
2019-01-23 03:35:34 +08:00
|
|
|
|
2021-01-21 22:07:09 +08:00
|
|
|
class Window : public QDialog, Localizer
|
2019-01-23 03:35:34 +08:00
|
|
|
{
|
2019-06-21 13:29:48 +08:00
|
|
|
public:
|
2021-01-31 03:07:37 +08:00
|
|
|
Window() : QDialog(nullptr, Qt::WindowMinMaxButtonsHint)
|
2019-01-23 03:35:34 +08:00
|
|
|
{
|
2019-06-21 13:29:48 +08:00
|
|
|
connect(&linkButton, &QPushButton::clicked, this, &Window::Link);
|
2021-06-05 16:20:04 +08:00
|
|
|
connect(&unlinkButton, &QPushButton::clicked, this, &Window::Unlink);
|
2019-01-23 03:35:34 +08:00
|
|
|
|
2019-06-21 13:29:48 +08:00
|
|
|
layout.addWidget(&linkList);
|
2021-06-05 16:20:04 +08:00
|
|
|
layout.addLayout(&buttons);
|
|
|
|
buttons.addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding));
|
|
|
|
buttons.addWidget(&linkButton);
|
|
|
|
buttons.addWidget(&unlinkButton);
|
|
|
|
buttons.addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding));
|
2019-01-23 03:35:34 +08:00
|
|
|
|
|
|
|
setWindowTitle(THREAD_LINKER);
|
2019-06-21 13:29:48 +08:00
|
|
|
QMetaObject::invokeMethod(this, &QWidget::show, Qt::QueuedConnection);
|
2019-01-23 03:35:34 +08:00
|
|
|
}
|
|
|
|
|
2019-06-21 13:29:48 +08:00
|
|
|
private:
|
|
|
|
void Link()
|
2019-01-23 03:35:34 +08:00
|
|
|
{
|
2019-06-21 13:29:48 +08:00
|
|
|
bool ok1, ok2, ok3, ok4;
|
|
|
|
int from = QInputDialog::getText(this, THREAD_LINK_FROM, HEXADECIMAL, QLineEdit::Normal, "", &ok1, Qt::WindowCloseButtonHint).toInt(&ok2, 16);
|
|
|
|
int to = QInputDialog::getText(this, THREAD_LINK_TO, HEXADECIMAL, QLineEdit::Normal, "", &ok3, Qt::WindowCloseButtonHint).toInt(&ok4, 16);
|
|
|
|
if (ok1 && ok2 && ok3 && ok4)
|
2019-01-23 03:35:34 +08:00
|
|
|
{
|
2021-01-15 21:07:23 +08:00
|
|
|
std::scoped_lock lock(m);
|
2021-06-05 16:20:04 +08:00
|
|
|
if (linkedTextHandles[from].insert(to).second) linkList.addItem(QString::number(from, 16) + "->" + QString::number(to, 16));
|
2019-06-21 13:29:48 +08:00
|
|
|
}
|
2019-01-23 03:35:34 +08:00
|
|
|
}
|
2019-06-21 13:29:48 +08:00
|
|
|
|
2021-06-05 16:20:04 +08:00
|
|
|
void Unlink()
|
2019-01-23 03:35:34 +08:00
|
|
|
{
|
2021-06-05 16:20:04 +08:00
|
|
|
if (linkList.currentItem())
|
2019-01-23 03:35:34 +08:00
|
|
|
{
|
2019-06-21 13:29:48 +08:00
|
|
|
QStringList link = linkList.currentItem()->text().split("->");
|
|
|
|
linkList.takeItem(linkList.currentRow());
|
2021-01-15 21:07:23 +08:00
|
|
|
std::scoped_lock lock(m);
|
2019-06-21 13:29:48 +08:00
|
|
|
linkedTextHandles[link[0].toInt(nullptr, 16)].erase(link[1].toInt(nullptr, 16));
|
2019-01-23 03:35:34 +08:00
|
|
|
}
|
|
|
|
}
|
2019-06-21 13:29:48 +08:00
|
|
|
|
2021-06-05 16:20:04 +08:00
|
|
|
void keyPressEvent(QKeyEvent* event) override
|
|
|
|
{
|
|
|
|
if (event->key() == Qt::Key_Delete) Unlink();
|
|
|
|
}
|
|
|
|
|
2020-03-16 16:56:04 +08:00
|
|
|
QHBoxLayout layout{ this };
|
2021-06-05 16:20:04 +08:00
|
|
|
QVBoxLayout buttons;
|
2020-03-16 16:56:04 +08:00
|
|
|
QListWidget linkList{ this };
|
2021-06-05 16:20:04 +08:00
|
|
|
QPushButton linkButton{ LINK, this }, unlinkButton{ UNLINK, this };
|
2019-06-21 13:29:48 +08:00
|
|
|
} window;
|
2019-01-23 03:35:34 +08:00
|
|
|
|
|
|
|
bool ProcessSentence(std::wstring& sentence, SentenceInfo sentenceInfo)
|
|
|
|
{
|
2021-06-05 16:58:53 +08:00
|
|
|
concurrency::reader_writer_lock::scoped_lock_read readLock(m);
|
2021-06-05 16:20:04 +08:00
|
|
|
auto links = linkedTextHandles.find(sentenceInfo["text number"]);
|
|
|
|
if (links != linkedTextHandles.end()) for (auto link : links->second)
|
|
|
|
((void(*)(int64_t, const wchar_t*))sentenceInfo["void (*AddText)(int64_t number, const wchar_t* text)"])(link, sentence.c_str());
|
2019-06-17 10:57:41 +08:00
|
|
|
return false;
|
2019-01-23 03:35:34 +08:00
|
|
|
}
|