cutter/src/helpers.h

29 lines
730 B
C
Raw Normal View History

#ifndef QHELPERS_H
#define QHELPERS_H
2017-04-13 15:04:30 +00:00
#include <QString>
class QPlainTextEdit;
class QTextEdit;
class QString;
2017-04-13 15:04:30 +00:00
class QTreeWidget;
class QTreeWidgetItem;
class QAbstractItemView;
namespace qhelpers
{
void normalizeFont(QPlainTextEdit *edit);
void normalizeEditFont(QTextEdit *edit);
QString uniqueProjectName(const QString &filename);
2017-04-13 15:04:30 +00:00
void adjustColumns(QTreeWidget *tw, int columnCount = 0, int padding = 0);
2017-04-13 15:04:30 +00:00
QTreeWidgetItem *appendRow(QTreeWidget *tw, const QString &str, const QString &str2 = QString(),
2017-04-13 15:04:30 +00:00
const QString &str3 = QString(), const QString &str4 = QString(), const QString &str5 = QString());
void setVerticalScrollMode(QAbstractItemView *tw);
}
#endif // HELPERS_H