2019-06-23 19:04:53 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-06-21 16:41:22 +02:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2019-06-23 19:04:53 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CODEEDITSTYLEDIALOG_H
|
|
|
|
#define CODEEDITSTYLEDIALOG_H
|
|
|
|
|
|
|
|
#include "codeeditorstyle.h"
|
|
|
|
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QColor>
|
2022-02-02 16:17:28 +01:00
|
|
|
#include <QDialog>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QFont>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2022-02-02 16:17:28 +01:00
|
|
|
|
2020-04-13 13:44:48 +02:00
|
|
|
class CodeEditor;
|
|
|
|
class SelectColorButton;
|
|
|
|
class SelectFontWeightCombo;
|
2021-04-03 21:30:50 +02:00
|
|
|
class QPushButton;
|
2022-04-13 12:24:00 +02:00
|
|
|
class QWidget;
|
2020-04-13 13:44:48 +02:00
|
|
|
|
2023-04-08 16:08:47 +02:00
|
|
|
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
|
|
|
|
class QStringList;
|
|
|
|
#endif
|
|
|
|
|
2019-06-25 15:29:15 +02:00
|
|
|
class StyleEditDialog : public QDialog {
|
2019-06-23 19:04:53 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-06-25 15:29:15 +02:00
|
|
|
explicit StyleEditDialog(const CodeEditorStyle& newStyle,
|
|
|
|
QWidget *parent = nullptr);
|
2019-06-23 19:04:53 +02:00
|
|
|
|
|
|
|
CodeEditorStyle getStyle();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void updateControls();
|
|
|
|
void updateStyle();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void resetStyle();
|
|
|
|
void setStyleDefaultLight();
|
|
|
|
void setStyleDefaultDark();
|
2019-07-24 08:30:36 +02:00
|
|
|
void colorChangedWidgetFG(const QColor& newColor);
|
|
|
|
void colorChangedWidgetBG(const QColor& newColor);
|
|
|
|
void colorChangedHighlightBG(const QColor& newColor);
|
|
|
|
void colorChangedLineNumFG(const QColor& newColor);
|
|
|
|
void colorChangedLineNumBG(const QColor& newColor);
|
|
|
|
void colorChangedKeywordFG(const QColor& newColor);
|
2023-09-11 20:40:39 +02:00
|
|
|
void weightChangedKeyword(QFont::Weight newWeight);
|
2019-07-24 08:30:36 +02:00
|
|
|
void colorChangedClassFG(const QColor& newColor);
|
2023-09-11 20:40:39 +02:00
|
|
|
void weightChangedClass(QFont::Weight newWeight);
|
2019-07-24 08:30:36 +02:00
|
|
|
void colorChangedQuoteFG(const QColor& newColor);
|
2023-09-11 20:40:39 +02:00
|
|
|
void weightChangedQuote(QFont::Weight newWeight);
|
2019-07-24 08:30:36 +02:00
|
|
|
void colorChangedCommentFG(const QColor& newColor);
|
2023-09-11 20:40:39 +02:00
|
|
|
void weightChangedComment(QFont::Weight newWeight);
|
2019-07-24 08:30:36 +02:00
|
|
|
void colorChangedSymbolFG(const QColor& newColor);
|
|
|
|
void colorChangedSymbolBG(const QColor& newColor);
|
2023-09-11 20:40:39 +02:00
|
|
|
void weightChangedSymbol(QFont::Weight newWeight);
|
2019-06-23 19:04:53 +02:00
|
|
|
|
|
|
|
private:
|
2021-08-07 20:51:18 +02:00
|
|
|
CodeEditorStyle mStyleIncoming;
|
|
|
|
CodeEditorStyle mStyleOutgoing;
|
2019-06-23 19:04:53 +02:00
|
|
|
|
|
|
|
CodeEditor *mSampleEditor;
|
|
|
|
|
|
|
|
SelectColorButton *mBtnWidgetColorFG;
|
|
|
|
SelectColorButton *mBtnWidgetColorBG;
|
|
|
|
SelectColorButton *mBtnHighlightBG;
|
|
|
|
SelectColorButton *mBtnLineNumFG;
|
|
|
|
SelectColorButton *mBtnLineNumBG;
|
|
|
|
SelectColorButton *mBtnKeywordFG;
|
|
|
|
SelectFontWeightCombo *mCBKeywordWeight;
|
|
|
|
SelectColorButton *mBtnClassFG;
|
|
|
|
SelectFontWeightCombo *mCBClassWeight;
|
|
|
|
SelectColorButton *mBtnQuoteFG;
|
|
|
|
SelectFontWeightCombo *mCBQuoteWeight;
|
|
|
|
SelectColorButton *mBtnCommentFG;
|
|
|
|
SelectFontWeightCombo *mCBCommentWeight;
|
|
|
|
SelectColorButton *mBtnSymbolFG;
|
|
|
|
SelectColorButton *mBtnSymbolBG;
|
|
|
|
SelectFontWeightCombo *mCBSymbolWeight;
|
|
|
|
|
|
|
|
QPushButton *mBtnDefaultLight;
|
|
|
|
QPushButton *mBtnDefaultDark;
|
|
|
|
|
2021-08-07 20:51:18 +02:00
|
|
|
static const QString mSampleDocument;
|
2019-06-23 19:04:53 +02:00
|
|
|
static const QStringList mErrSymbolsList;
|
2021-08-07 20:51:18 +02:00
|
|
|
static const int mErrLineNum;
|
2019-06-23 19:04:53 +02:00
|
|
|
};
|
|
|
|
|
2019-06-30 21:43:25 +02:00
|
|
|
#endif //CODEEDITSTYLEDIALOG_H
|
|
|
|
|