1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : formatoptions.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// 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 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef FORMATOPTIONS_H
#define FORMATOPTIONS_H
#include "serialized_object.h"
enum AstyleOptions {
AS_ANSI = 0x00000001,
AS_GNU = 0x00000002,
AS_KR = 0x00000004,
AS_LINUX = 0x00000008,
AS_JAVA = 0x00000010,
AS_BRACKETS_BREAK = 0x00000020,
AS_BRACKETS_ATTACH = 0x00000040,
AS_BRACKETS_LINUX = 0x00000080,
AS_BRACKETS_BREAK_CLOSING = 0x00000100,
AS_INDENT_CLASS = 0x00000200,
AS_INDENT_SWITCHES = 0x00000400,
AS_INDENT_CASE = 0x00000800,
AS_INDENT_BLOCKS = 0x00001000,
AS_INDENT_BRACKETS = 0x00002000,
AS_INDENT_NAMESPACES = 0x00004000,
AS_INDENT_LABELS = 0x00008000,
AS_INDENT_PREPROCESSORS = 0x00010000,
AS_MAX_INSTATEMENT_INDENT = 0x00020000,
AS_BREAK_BLOCKS = 0x00040000,
AS_BREAK_BLOCKS_ALL = 0x00080000,
AS_BREAK_ELSEIF = 0x00100000,
AS_PAD_OPER = 0x00200000,
AS_PAD_PARENTHESIS = 0x00400000,
AS_PAD_PARENTHESIS_OUT = 0x00800000,
AS_PAD_PARENTHESIS_IN = 0x01000000,
AS_UNPAD_PARENTHESIS = 0x02000000,
AS_ONE_LINE_KEEP_STATEMENT = 0x04000000,
AS_ONE_LINE_KEEP_BLOCKS = 0x08000000,
AS_FILL_EMPTY_LINES = 0x10000000,
AS_MIN_COND_INDENT = 0x20000000,
AS_INDENT_USES_TABS = 0x40000000,
AS_DEFAULT = AS_LINUX | AS_BRACKETS_LINUX | AS_INDENT_PREPROCESSORS,
AS_ALL_INDENT_OPTIONS = AS_INDENT_CLASS | AS_INDENT_BRACKETS | AS_INDENT_SWITCHES | AS_INDENT_NAMESPACES | AS_INDENT_CASE | AS_INDENT_LABELS | AS_INDENT_BLOCKS | AS_INDENT_PREPROCESSORS | AS_MAX_INSTATEMENT_INDENT | AS_MIN_COND_INDENT,
AS_ALL_FORMAT_OPTIONS = AS_BREAK_BLOCKS | AS_PAD_PARENTHESIS | AS_BREAK_BLOCKS_ALL | AS_PAD_PARENTHESIS_OUT | AS_BREAK_ELSEIF | AS_PAD_PARENTHESIS_IN | AS_PAD_OPER | AS_UNPAD_PARENTHESIS | AS_ONE_LINE_KEEP_STATEMENT | AS_FILL_EMPTY_LINES | AS_ONE_LINE_KEEP_BLOCKS,
};
enum FormatterEngine {
kFormatEngineAStyle,
kFormatEngineClangFormat,
};
enum ClangFormatStyle {
kClangFormatLLVM = 0x00000001,
kClangFormatGoogle = 0x00000002,
kClangFormatWebKit = 0x00000004,
kClangFormatChromium = 0x00000008,
kClangFormatMozilla = 0x00000010,
kAlignEscapedNewlinesLeft = 0x00000020,
kAlignTrailingComments = 0x00000040,
kAllowAllParametersOfDeclarationOnNextLine = 0x00000080,
kAllowShortBlocksOnASingleLine = 0x00000100,
kAllowShortLoopsOnASingleLine = 0x00000200,
kAllowShortIfStatementsOnASingleLine = 0x00000400,
kAlwaysBreakBeforeMultilineStrings = 0x00000800,
kAlwaysBreakTemplateDeclarations = 0x00001000,
kBinPackParameters = 0x00002000,
kBreakBeforeBinaryOperators = 0x00004000,
kBreakBeforeTernaryOperators = 0x00008000,
kBreakConstructorInitializersBeforeComma = 0x00010000,
kIndentCaseLabels = 0x00020000,
kIndentFunctionDeclarationAfterType = 0x00040000,
kSpaceBeforeAssignmentOperators = 0x00080000,
kSpaceBeforeParens = 0x00100000,
kSpacesInParentheses = 0x00200000,
kAllowShortFunctionsOnASingleLine = 0x00400000,
};
enum ClangBreakBeforeBraceOpt {
kLinux = 0x00000001,
kAttach = 0x00000002,
kStroustrup = 0x00000004,
kAllman = 0x00000008,
kGNU = 0x00000010,
};
class FormatOptions : public SerializedObject
{
size_t m_astyleOptions;
size_t m_clangFormatOptions;
size_t m_clangBreakBeforeBrace;
wxString m_customFlags;
FormatterEngine m_engine;
wxString m_clangFormatExe;
size_t m_clangColumnLimit; // when indenting, limit the line to fit into a column width
private:
wxString ClangFlagToBool(ClangFormatStyle flag) const;
wxString ClangBreakBeforeBrace() const;
/**
* @brief return the global settings based on the
* editor settings (namely: tab vs spaces, and tab width)
*/
wxString ClangGlobalSettings() const;
public:
FormatOptions();
virtual ~FormatOptions();
wxString AstyleOptionsAsString() const;
wxString ClangFormatOptionsAsString() const;
void Serialize(Archive& arch);
void DeSerialize(Archive& arch);
void SetClangColumnLimit(size_t clangColumnLimit) {
this->m_clangColumnLimit = clangColumnLimit;
}
size_t GetClangColumnLimit() const {
return m_clangColumnLimit;
}
void SetClangFormatExe(const wxString& clangFormatExe) {
this->m_clangFormatExe = clangFormatExe;
}
const wxString& GetClangFormatExe() const {
return m_clangFormatExe;
}
FormatterEngine GetEngine() const {
return m_engine;
}
void SetClangBreakBeforeBrace(size_t clangBreakBeforeBrace) {
this->m_clangBreakBeforeBrace = clangBreakBeforeBrace;
}
size_t GetClangBreakBeforeBrace() const {
return m_clangBreakBeforeBrace;
}
void SetEngine(FormatterEngine engine) {
m_engine = engine;
}
size_t GetOptions() const {
return m_astyleOptions;
}
void SetOption(size_t options) {
m_astyleOptions = options;
}
void SetCustomFlags(const wxString& customFlags) {
this->m_customFlags = customFlags;
}
const wxString& GetCustomFlags() const {
return m_customFlags;
}
void SetClangFormatOptions(size_t clangFormatOptions) {
this->m_clangFormatOptions = clangFormatOptions;
}
size_t GetClangFormatOptions() const {
return m_clangFormatOptions;
}
};
#endif //FORMATOPTIONS_H
|