first commit

This commit is contained in:
2026-01-26 22:26:19 +03:00
commit 31fccd85f2
95 changed files with 115400 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
#ifndef FFONTSETTING_H
#define FFONTSETTING_H
#include "qspinbox.h"
#include <QWidget>
#include <QFontComboBox>
#include <QComboBox>
namespace Ui {
class FFontSetting;
}
class FFontSetting : public QWidget
{
Q_OBJECT
public:
explicit FFontSetting(QWidget *parent = nullptr);
~FFontSetting();
QFontComboBox *cbFontStyle;
QComboBox *cbFontColor;
QSpinBox *sbFontSize;
private:
Ui::FFontSetting *ui;
void setupColorComboBox(QComboBox* comboBox);
void loadFonts(); // Убедитесь, что метод объявлен как public или private
};
#endif // FFONTSETTING_H