2017-10-01 19:09:42 +00:00
|
|
|
#include "utils/Helpers.h"
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-04-05 08:56:59 +00:00
|
|
|
#include <QPlainTextEdit>
|
|
|
|
#include <QTextEdit>
|
2017-04-18 10:03:47 +00:00
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QCryptographicHash>
|
2017-04-13 15:04:30 +00:00
|
|
|
#include <QTreeWidget>
|
|
|
|
#include <QString>
|
|
|
|
#include <QAbstractItemView>
|
2017-10-01 14:36:40 +00:00
|
|
|
#include <QAbstractButton>
|
2017-04-05 08:56:59 +00:00
|
|
|
|
2017-04-13 15:04:30 +00:00
|
|
|
|
|
|
|
static QAbstractItemView::ScrollMode scrollMode()
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
2017-04-13 15:04:30 +00:00
|
|
|
const bool use_scrollperpixel = true;
|
|
|
|
return use_scrollperpixel ? QAbstractItemView::ScrollPerPixel : QAbstractItemView::ScrollPerItem;
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-04-13 15:04:30 +00:00
|
|
|
|
|
|
|
namespace qhelpers
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
// TODO: wouldn't it be enough to setFont on the QWidget?
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
void normalizeFont(QPlainTextEdit *edit)
|
|
|
|
{
|
|
|
|
#ifdef Q_OS_LINUX
|
2017-03-29 10:18:37 +00:00
|
|
|
QFont anonFont("Inconsolata", 12);
|
|
|
|
QTextDocument *out_doc = edit->document();
|
|
|
|
out_doc->setDefaultFont(anonFont);
|
2017-04-09 19:55:06 +00:00
|
|
|
#endif
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
void normalizeEditFont(QTextEdit *edit)
|
|
|
|
{
|
|
|
|
#ifdef Q_OS_LINUX
|
2017-03-29 10:18:37 +00:00
|
|
|
QFont anonFont("Inconsolata", 12);
|
|
|
|
QTextDocument *out_doc = edit->document();
|
|
|
|
out_doc->setDefaultFont(anonFont);
|
2017-04-09 19:55:06 +00:00
|
|
|
#endif
|
|
|
|
}
|
2017-04-05 08:56:59 +00:00
|
|
|
|
2017-04-13 16:18:56 +00:00
|
|
|
void adjustColumns(QTreeWidget *tw, int columnCount, int padding)
|
2017-04-13 15:04:30 +00:00
|
|
|
{
|
2017-04-13 16:18:56 +00:00
|
|
|
const int count = columnCount == 0 ? tw->columnCount() : columnCount;
|
2017-04-13 15:04:30 +00:00
|
|
|
for (int i = 0; i != count; ++i)
|
|
|
|
{
|
|
|
|
tw->resizeColumnToContents(i);
|
2017-04-13 16:18:56 +00:00
|
|
|
if (padding > 0)
|
|
|
|
{
|
|
|
|
int width = tw->columnWidth(i);
|
|
|
|
tw->setColumnWidth(i, width + padding);
|
|
|
|
}
|
2017-04-13 15:04:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-28 13:09:40 +00:00
|
|
|
QTreeWidgetItem *appendRow(QTreeWidget *tw, const QString &str, const QString &str2,
|
2017-04-28 13:38:01 +00:00
|
|
|
const QString &str3, const QString &str4, const QString &str5)
|
2017-04-13 15:04:30 +00:00
|
|
|
{
|
|
|
|
QTreeWidgetItem *tempItem = new QTreeWidgetItem();
|
|
|
|
// Fill dummy hidden column
|
|
|
|
tempItem->setText(0, "0");
|
|
|
|
tempItem->setText(1, str);
|
|
|
|
if (!str2.isNull())
|
|
|
|
tempItem->setText(2, str2);
|
|
|
|
if (!str3.isNull())
|
|
|
|
tempItem->setText(3, str3);
|
|
|
|
if (!str4.isNull())
|
|
|
|
tempItem->setText(4, str4);
|
|
|
|
if (!str5.isNull())
|
|
|
|
tempItem->setText(5, str5);
|
|
|
|
|
|
|
|
tw->insertTopLevelItem(0, tempItem);
|
2017-04-28 13:09:40 +00:00
|
|
|
|
|
|
|
return tempItem;
|
2017-04-13 15:04:30 +00:00
|
|
|
}
|
|
|
|
|
2017-04-28 13:09:40 +00:00
|
|
|
void setVerticalScrollMode(QAbstractItemView *tw)
|
2017-04-13 15:04:30 +00:00
|
|
|
{
|
|
|
|
tw->setVerticalScrollMode(scrollMode());
|
|
|
|
}
|
|
|
|
|
2017-10-01 14:36:40 +00:00
|
|
|
void setCheckedWithoutSignals(QAbstractButton *button, bool checked)
|
|
|
|
{
|
|
|
|
bool blocked = button->signalsBlocked();
|
|
|
|
button->blockSignals(true);
|
|
|
|
button->setChecked(checked);
|
|
|
|
button->blockSignals(blocked);
|
|
|
|
}
|
|
|
|
|
2017-04-05 08:56:59 +00:00
|
|
|
} // end namespace
|