mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 19:06:10 +00:00
ca821e1064
First commit with the app code
25 lines
371 B
C++
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
|