add preference option to select default and text font

This commit is contained in:
Axel Kohlmeyer
2023-08-08 20:06:05 -04:00
parent 4397e13aaf
commit 7b1c00137a
6 changed files with 76 additions and 8 deletions

View File

@ -24,6 +24,8 @@
// forward declarations
class GeneralTab;
QT_BEGIN_NAMESPACE
namespace Ui {
class LammpsGui;
@ -45,6 +47,7 @@ class LammpsGui : public QMainWindow {
Q_OBJECT
friend class CodeEditor;
friend class GeneralTab;
public:
LammpsGui(QWidget *parent = nullptr, const char *filename = nullptr);
@ -81,8 +84,10 @@ private slots:
void preferences();
void defaults();
private:
protected:
Ui::LammpsGui *ui;
private:
Highlighter *highlighter;
StdCapture *capturer;
QLabel *status;