cutter/src/helpers.cpp

88 lines
2.4 KiB
C++
Raw Normal View History

#include "helpers.h"
#include <QPlainTextEdit>
#include <QTextEdit>
#include <QFileInfo>
#include <QCryptographicHash>
2017-04-13 15:04:30 +00:00
#include <QTreeWidget>
#include <QString>
#include <QAbstractItemView>
2017-04-13 15:04:30 +00:00
static QAbstractItemView::ScrollMode scrollMode()
{
2017-04-13 15:04:30 +00:00
const bool use_scrollperpixel = true;
return use_scrollperpixel ? QAbstractItemView::ScrollPerPixel : QAbstractItemView::ScrollPerItem;
}
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-04-09 19:55:06 +00:00
void normalizeFont(QPlainTextEdit *edit)
{
#ifdef Q_OS_LINUX
QFont anonFont("Inconsolata", 12);
QTextDocument *out_doc = edit->document();
out_doc->setDefaultFont(anonFont);
2017-04-09 19:55:06 +00:00
#endif
}
2017-04-09 19:55:06 +00:00
void normalizeEditFont(QTextEdit *edit)
{
#ifdef Q_OS_LINUX
QFont anonFont("Inconsolata", 12);
QTextDocument *out_doc = edit->document();
out_doc->setDefaultFont(anonFont);
2017-04-09 19:55:06 +00:00
#endif
}
QString uniqueProjectName(const QString &filename)
{
const QByteArray fullHash(QCryptographicHash::hash(filename.toUtf8(), QCryptographicHash::Sha1));
return QFileInfo(filename).fileName() + "_" + fullHash.toHex().left(10);
}
void adjustColumns(QTreeWidget *tw, int columnCount, int padding)
2017-04-13 15:04:30 +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);
if (padding > 0)
{
int width = tw->columnWidth(i);
tw->setColumnWidth(i, width + padding);
}
2017-04-13 15:04:30 +00:00
}
}
QTreeWidgetItem *appendRow(QTreeWidget *tw, const QString &str, const QString &str2,
2017-04-13 15:51:58 +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);
return tempItem;
2017-04-13 15:04:30 +00:00
}
void setVerticalScrollMode(QAbstractItemView *tw)
2017-04-13 15:04:30 +00:00
{
tw->setVerticalScrollMode(scrollMode());
}
} // end namespace