cutter/src/helpers.h
Hugo Teso ca821e1064 First code commit
First commit with the app code
2017-03-29 12:18:37 +02:00

25 lines
371 B
C++

#ifndef QHELPERS_H
#define QHELPERS_H
#include <QObject>
#include <QTextEdit>
#include <QPlainTextEdit>
#include "mainwindow.h"
class QHelpers : public QObject
{
Q_OBJECT
public:
explicit QHelpers(QObject *parent = 0);
void normalizeFont(QPlainTextEdit *edit);
void normalizeEditFont(QTextEdit *edit);
signals:
public slots:
};
#endif // HELPERS_H