RedPanda-CPP/RedPandaIDE/settings.h

346 lines
11 KiB
C
Raw Normal View History

#ifndef SETTINGS_H
#define SETTINGS_H
#include <QSettings>
#include <vector>
#include <memory>
2021-06-07 11:02:03 +08:00
#include <QColor>
#include "qsynedit/SynEdit.h"
2021-04-15 11:18:14 +08:00
/**
* use the following command to get gcc's default bin/library folders:
* gcc -print-search-dirs
*/
2021-04-15 21:32:45 +08:00
#define SETTING_DIRS "Dirs"
#define SETTING_EDITOR "Editor"
#define SETTING_COMPILTER_SETS "CompilerSets"
#define SETTING_COMPILTER_SETS_DEFAULT_INDEX "defaultIndex"
#define SETTING_COMPILTER_SETS_COUNT "count"
#define SETTING_COMPILTER_SET "CompilerSet_%1"
2021-04-13 11:23:37 +08:00
#define SETTING_EDITOR_DEFAULT_ENCODING "default_encoding"
#define SETTING_EDITOR_AUTO_INDENT "default_auto_indent"
2021-04-09 17:48:25 +08:00
2021-04-15 11:18:14 +08:00
extern const char ValueToChar[28];
class Settings;
typedef struct {
2021-04-15 11:18:14 +08:00
QString name; // language table index of "Generate debugging info"
QString section; // language table index of "C options"
bool isC;
bool isCpp; // True (C++ option?) - can be both C and C++ option...
bool isLinker; // Is it a linker param
int value; // True
2021-04-15 11:18:14 +08:00
QString setting; // "-g3"
QStringList choices; // replaces "Yes/No" standard choices (max 30 different choices)
} CompilerOption;
using PCompilerOption = std::shared_ptr<CompilerOption>;
using CompilerOptionList=std::vector<std::shared_ptr<CompilerOption>>;
class Settings
{
2021-04-13 11:23:37 +08:00
private:
2021-04-15 11:18:14 +08:00
2021-04-13 11:23:37 +08:00
class _Base {
public:
explicit _Base(Settings* settings, const QString& groupName);
2021-06-07 11:02:03 +08:00
void beginGroup();
void endGroup();
void saveValue(const QString &key, const QVariant &value);
QVariant value(const QString &key, const QVariant& defaultValue);
bool boolValue(const QString &key, bool defaultValue);
int intValue(const QString &key, int defaultValue);
QColor colorValue(const QString &key, const QColor& defaultValue);
QString stringValue(const QString &key, const QString& defaultValue);
void save();
void load();
protected:
virtual void doSave() = 0;
virtual void doLoad() = 0;
2021-04-13 11:23:37 +08:00
protected:
Settings* mSettings;
QString mGroup;
};
2021-04-13 11:23:37 +08:00
public:
class Dirs: public _Base {
public:
explicit Dirs(Settings * settings);
QString app() const;
2021-06-07 11:02:03 +08:00
// _Base interface
protected:
void doSave() override;
void doLoad() override;
2021-04-13 11:23:37 +08:00
};
class Editor: public _Base {
public:
explicit Editor(Settings * settings);
QByteArray defaultEncoding();
2021-06-07 11:02:03 +08:00
void setDefaultEncoding(const QByteArray& value);
2021-04-13 11:23:37 +08:00
bool autoIndent();
2021-06-07 11:02:03 +08:00
void setAutoIndent(bool value);
bool addIndent() const;
void setAddIndent(bool addIndent);
bool tabToSpaces() const;
void setTabToSpaces(bool tabToSpaces);
int tabWidth() const;
void setTabWidth(int tabWidth);
bool showIndentLines() const;
void setShowIndentLines(bool showIndentLines);
QColor indentLineColor() const;
void setIndentLineColor(const QColor &indentLineColor);
bool enhanceHomeKey() const;
void setEnhanceHomeKey(bool enhanceHomeKey);
bool enhanceEndKey() const;
void setEnhanceEndKey(bool enhanceEndKey);
SynEditCaretType caretForInsert() const;
void setCaretForInsert(const SynEditCaretType &caretForInsert);
SynEditCaretType caretForOverwrite() const;
void setCaretForOverwrite(const SynEditCaretType &caretForOverwrite);
QColor caretColor() const;
void setCaretColor(const QColor &caretColor);
bool keepCaretX() const;
void setKeepCaretX(bool keepCaretX);
bool autoHideScrollbar() const;
void setAutoHideScrollbar(bool autoHideScrollbar);
bool scrollPastEof() const;
void setScrollPastEof(bool scrollPastEof);
bool scrollPastEol() const;
void setScrollPastEol(bool scrollPastEol);
bool scrollByOneLess() const;
void setScrollByOneLess(bool scrollByOneLess);
bool halfPageScroll() const;
void setHalfPageScroll(bool halfPageScroll);
2021-06-07 11:02:03 +08:00
private:
QByteArray mDefaultEncoding;
// indents
bool mAutoIndent;
bool mAddIndent;
bool mTabToSpaces;
int mTabWidth;
bool mShowIndentLines;
QColor mIndentLineColor;
// caret
bool mEnhanceHomeKey;
bool mEnhanceEndKey;
bool mKeepCaretX;
SynEditCaretType mCaretForInsert;
SynEditCaretType mCaretForOverwrite;
QColor mCaretColor;
//scroll
bool mAutoHideScrollbar;
bool mScrollPastEof;
bool mScrollPastEol;
bool mScrollByOneLess;
bool mHalfPageScroll;
2021-06-07 11:02:03 +08:00
// _Base interface
protected:
void doSave() override;
void doLoad() override;
2021-04-13 11:23:37 +08:00
};
2021-04-15 11:18:14 +08:00
class CompilerSet {
public:
2021-04-15 11:18:14 +08:00
explicit CompilerSet(const QString& compilerFolder = QString());
explicit CompilerSet(const CompilerSet& set);
CompilerSet& operator= (const CompilerSet& ) = delete;
CompilerSet& operator= (const CompilerSet&& ) = delete;
2021-04-16 22:04:48 +08:00
2021-04-15 11:18:14 +08:00
void addOption(const QString& name, const QString section, bool isC,
bool isCpp, bool isLinker,
int value, const QString& setting,
const QStringList& choices = QStringList());
2021-04-15 21:32:45 +08:00
PCompilerOption findOption(const QString& setting);
2021-04-15 11:18:14 +08:00
char getOptionValue(const QString& setting);
void setOption(const QString& setting, char valueChar);
void setOption(PCompilerOption& option, char valueChar);
2021-04-16 22:04:48 +08:00
bool dirsValid(QString& msg);
//properties
const QString& CCompiler() const;
void setCCompiler(const QString& name);
const QString& cppCompiler() const;
void setCppCompiler(const QString& name);
const QString& make() const;
void setMake(const QString& name);
const QString& debugger() const;
void setDebugger(const QString& name);
const QString& profiler() const;
void setProfiler(const QString& name);
const QString& resourceCompiler() const;
void setResourceCompiler(const QString& name);
2021-04-15 11:18:14 +08:00
QStringList& binDirs();
QStringList& CIncludeDirs();
QStringList& CppIncludeDirs();
2021-04-17 22:38:46 +08:00
QStringList& libDirs();
2021-04-15 11:18:14 +08:00
const QString& dumpMachine();
void setDumpMachine(const QString& value);
const QString& version();
void setVersion(const QString& value);
const QString& type();
void setType(const QString& value);
2021-04-15 21:32:45 +08:00
const QString& name();
void setName(const QString& value);
2021-04-15 11:18:14 +08:00
QStringList& defines();
const QString& target();
void setTarget(const QString& value);
bool useCustomCompileParams();
void setUseCustomCompileParams(bool value);
bool useCustomLinkParams();
void setUseCustomLinkParams(bool value);
const QString& customCompileParams();
void setCustomCompileParams(const QString& value);
const QString& customLinkParams();
void setCustomLinkParams(const QString& value);
bool autoAddCharsetParams();
void setAutoAddCharsetParams(bool value);
CompilerOptionList& options();
2021-04-15 21:32:45 +08:00
//Converts options to and from memory format
QByteArray iniOptions() const;
void setIniOptions(const QByteArray& value);
//load hard defines
void setDefines();
2021-04-15 11:18:14 +08:00
private:
int charToValue(char valueChar);
// Initialization
void setProperties(const QString& binDir);
void setExecutables();
void setDirectories(const QString& folder);
2021-04-15 11:18:14 +08:00
void setUserInput();
void setOptions();
QString findProgramInBinDirs(const QString name);
2021-04-15 11:18:14 +08:00
QByteArray getCompilerOutput(const QString& binDir, const QString& binFile,
const QStringList& arguments);
private:
// Executables, most are hardcoded
QString mCCompiler;
QString mCppCompiler;
QString mMake;
QString mDebugger;
QString mProfiler;
QString mResourceCompiler;
// Directories, mostly hardcoded too
QStringList mBinDirs;
QStringList mCIncludeDirs;
2021-04-15 11:18:14 +08:00
QStringList mCppIncludeDirs;
QStringList mLibDirs;
// Misc. properties
QString mDumpMachine; // "x86_64-w64-mingw32", "mingw32" etc
QString mVersion; // "4.7.1"
QString mType; // "TDM-GCC", "MinGW"
QString mName; // "TDM-GCC 4.7.1 Release"
2021-04-15 11:18:14 +08:00
QStringList mDefines; // list of predefined constants
QString mTarget; // 'X86_64' / 'i686'
// User settings
2021-04-15 11:18:14 +08:00
bool mUseCustomCompileParams;
bool mUseCustomLinkParams;
QString mCustomCompileParams;
QString mCustomLinkParams;
2021-04-15 11:18:14 +08:00
bool mAutoAddCharsetParams;
// Options
2021-04-15 11:18:14 +08:00
CompilerOptionList mOptions;
};
2021-04-15 21:32:45 +08:00
typedef std::shared_ptr<CompilerSet> PCompilerSet;
typedef std::vector<PCompilerSet> CompilerSetList;
class CompilerSets {
public:
explicit CompilerSets(Settings* settings);
PCompilerSet addSet(const CompilerSet& set);
PCompilerSet addSet(const QString& folder=QString());
void addSets(const QString& folder);
void clearSets();
void findSets();
void saveSets();
void loadSets();
2021-04-18 11:41:41 +08:00
void saveDefaultIndex();
2021-04-16 22:04:48 +08:00
void deleteSet(int index);
2021-04-15 21:32:45 +08:00
//properties
CompilerSetList& list();
int size() const;
int defaultIndex() const;
void setDefaultIndex(int value);
2021-04-16 22:04:48 +08:00
PCompilerSet defaultSet();
2021-04-15 21:32:45 +08:00
private:
void savePath(const QString& name, const QString& path);
void savePathList(const QString& name, const QStringList& pathList);
2021-04-15 21:32:45 +08:00
void saveSet(int index);
QString loadPath(const QString& name);
void loadPathList(const QString& name, QStringList& list);
2021-04-15 21:32:45 +08:00
PCompilerSet loadSet(int index);
CompilerSetList mList;
int mDefaultIndex;
Settings* mSettings;
};
public:
explicit Settings(const QString& filename);
explicit Settings(Settings&& settings) = delete;
explicit Settings(const Settings& settings) = delete;
Settings& operator= (const Settings& settings) = delete;
Settings& operator= (const Settings&& settings) = delete;
2021-06-07 11:02:03 +08:00
void beginGroup(const QString& group);
void endGroup();
void saveValue(const QString& group, const QString &key, const QVariant &value);
void saveValue(const QString &key, const QVariant &value);
QVariant value(const QString& group, const QString &key, const QVariant& defaultValue);
QVariant value(const QString &key, const QVariant& defaultValue);
2021-04-13 11:23:37 +08:00
Dirs& dirs();
Editor& editor();
2021-04-15 21:32:45 +08:00
CompilerSets& compilerSets();
private:
QSettings mSettings;
2021-04-13 11:23:37 +08:00
Dirs mDirs;
Editor mEditor;
2021-04-15 21:32:45 +08:00
CompilerSets mCompilerSets;
};
2021-04-13 11:23:37 +08:00
extern Settings* pSettings;
#endif // SETTINGS_H