encfs/vendor/github.com/muflihun/easyloggingpp/samples/Qt/fast-dictionary/mainwindow.cc
Valient Gough 5f0806c5cc Add "easylogging" from "https://github.com/muflihun/easyloggingpp@master"
git-vendor-name: easylogging
git-vendor-dir: vendor/github.com/muflihun/easyloggingpp
git-vendor-repository: https://github.com/muflihun/easyloggingpp
git-vendor-ref: master
2017-08-05 23:23:41 -07:00

99 lines
3.7 KiB
C++

#include "mainwindow.hh"
#include "ui_mainwindow.h"
#include "listwithsearch.hh"
#include "../../../src/easylogging++.h"
#include <QFile>
#include <QTextStream>
#include <QMessageBox>
class LogTerminal : public el::LogDispatchCallback {
public:
void setTerminalBox(QPlainTextEdit* t)
{
m_terminalBox = t;
}
protected:
void handle(const el::LogDispatchData* data) noexcept override
{
dispatch(data->logMessage()->logger()->logBuilder()->build(data->logMessage(), false));
}
private:
QPlainTextEdit* m_terminalBox;
void dispatch(el::base::type::string_t&& logLine) noexcept
{
m_terminalBox->appendPlainText(QString::fromStdString(logLine));
m_terminalBox->ensureCursorVisible();
}
};
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
this->setWindowTitle("Fast Dictionary Sample - Easylogging++");
list = new ListWithSearch(ListWithSearch::kCaseInsensative, this);
this->setGeometry(0, 0, 800, 600);
initializeDictionary("words.txt");
list->setFocus();
connect(list, SIGNAL(selectionMade(QString)), this, SLOT(onSelectionMade(QString)));
ui->labelAbout->setText("Easylogging++ v" + QString::fromStdString(el::VersionInfo::version()));
el::Helpers::installLogDispatchCallback<LogTerminal>("LogTerminal");
LogTerminal* logTerminal = el::Helpers::logDispatchCallback<LogTerminal>("LogTerminal");
logTerminal->setTerminalBox(ui->plainTextEdit);
}
MainWindow::~MainWindow()
{
el::Helpers::uninstallLogDispatchCallback<LogTerminal>("LogTerminal");
delete list;
delete ui;
}
void MainWindow::resizeEvent(QResizeEvent *)
{
list->setGeometry(0, 0, 300, height() - 100);
int contentsX = list->geometry().x() + list->geometry().width() + 10;
ui->wordLabel->setGeometry(contentsX, 0, width() - list->width(), height());
ui->labelAbout->setGeometry(contentsX, height() - 150, width(), 50);
ui->plainTextEdit->setGeometry(0, height() - 100, width(), 100);
ui->buttonInfo->setGeometry (width() - ui->buttonInfo->width() - 5, height() - ui->buttonInfo->height() - 105, ui->buttonInfo->width(), ui->buttonInfo->height());
}
void MainWindow::onSelectionMade(const QString &word)
{
ui->wordLabel->setText(word);
}
void MainWindow::initializeDictionary(const QString& wordsFile) {
TIMED_FUNC(initializeDictionaryTimer);
QFile file("<Words_file_path>/easyloggingpp/samples/Qt/fast-dictionary/" + wordsFile);
if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
QTextStream inStream(&file);
while (!file.atEnd()) {
VLOG_EVERY_N(10000, 1) << "Still loading dictionary, this is iteration #" << ELPP_COUNTER_POS ;
list->add(inStream.readLine());
}
} else {
LOG(ERROR) << "Unable to open words.txt";
}
}
void MainWindow::on_buttonInfo_clicked()
{
QString infoText = QString("") +
QString("This sample is to demonstrate a some usage of Easylogging++ and other possibilities.") +
QString("You may use this sample as starting point of how you may log your Qt/C++ application.") +
QString("Dictionary application has nothing to do with what happens internally in Easylogging++, in fact") +
QString("this is just another application made for sample purpose.\n\n") +
QString("This sample was originally made on 16G ram and 3.9GHz processor running Linux Mint 14 (Cinnamon) so it might") +
QString("perform slow on your machine. But regardless of performance of this sample, Easylogging++") +
QString(" itself should perform pretty good.");
QMessageBox::information(this, "Information about this sample", infoText);
}