finish of close fiche button and add of start menu
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#ifndef TEXTFORMATUTILS_H
|
||||
#define TEXTFORMATUTILS_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QPlainTextEdit>
|
||||
#include <QFontDialog>
|
||||
#include <QColorDialog>
|
||||
#include <QInputDialog>
|
||||
|
||||
|
||||
class TextFormatUtils
|
||||
{
|
||||
public:
|
||||
static void changeFontSize(QWidget* parent);
|
||||
static void changeFontColor(QWidget* parent);
|
||||
static void changeFont(QWidget* parent);
|
||||
static void toggleBold();
|
||||
static void toggleItalic();
|
||||
static void toggleUnderline();
|
||||
static void toggleOverline();
|
||||
|
||||
private:
|
||||
static QPlainTextEdit* getFocusedPlainTextEdit();
|
||||
};
|
||||
|
||||
#endif // TEXTFORMATUTILS_H
|
||||
Reference in New Issue
Block a user