2017-03-29 10:18:37 +00:00
|
|
|
#ifndef QHELPERS_H
|
|
|
|
#define QHELPERS_H
|
|
|
|
|
2017-04-13 15:04:30 +00:00
|
|
|
#include <QString>
|
|
|
|
|
2017-04-05 08:56:59 +00:00
|
|
|
class QPlainTextEdit;
|
|
|
|
class QTextEdit;
|
2017-04-18 10:03:47 +00:00
|
|
|
class QString;
|
2017-04-13 15:04:30 +00:00
|
|
|
class QTreeWidget;
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-04-05 08:56:59 +00:00
|
|
|
namespace qhelpers
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
|
|
|
void normalizeFont(QPlainTextEdit *edit);
|
|
|
|
void normalizeEditFont(QTextEdit *edit);
|
2017-04-18 10:03:47 +00:00
|
|
|
|
|
|
|
QString uniqueProjectName(const QString &filename);
|
2017-04-13 15:04:30 +00:00
|
|
|
|
2017-04-13 16:18:56 +00:00
|
|
|
void adjustColumns(QTreeWidget *tw, int columnCount = 0, int padding = 0);
|
2017-04-13 15:04:30 +00:00
|
|
|
|
|
|
|
void appendRow(QTreeWidget *tw, const QString &str, const QString &str2 = QString(),
|
|
|
|
const QString &str3 = QString(), const QString &str4 = QString(), const QString &str5 = QString());
|
|
|
|
|
2017-04-13 15:51:58 +00:00
|
|
|
void setVerticalScrollMode(QTreeWidget *tw);
|
2017-04-05 08:56:59 +00:00
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
#endif // HELPERS_H
|