mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 19:36:11 +00:00
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
|