summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/cppcodestylesettingspage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cpptools/cppcodestylesettingspage.cpp')
-rw-r--r--src/plugins/cpptools/cppcodestylesettingspage.cpp166
1 files changed, 1 insertions, 165 deletions
diff --git a/src/plugins/cpptools/cppcodestylesettingspage.cpp b/src/plugins/cpptools/cppcodestylesettingspage.cpp
index 39517e6e35..981a0bda61 100644
--- a/src/plugins/cpptools/cppcodestylesettingspage.cpp
+++ b/src/plugins/cpptools/cppcodestylesettingspage.cpp
@@ -49,170 +49,6 @@
#include <QTextBlock>
#include <QTextStream>
-static const char *defaultCodeStyleSnippets[] = {
- "#include <math.h>\n"
- "\n"
- "class Complex\n"
- " {\n"
- "public:\n"
- " Complex(double re, double im)\n"
- " : _re(re), _im(im)\n"
- " {}\n"
- " double modulus() const\n"
- " {\n"
- " return sqrt(_re * _re + _im * _im);\n"
- " }\n"
- "private:\n"
- " double _re;\n"
- " double _im;\n"
- " };\n"
- "\n"
- "void bar(int i)\n"
- " {\n"
- " static int counter = 0;\n"
- " counter += i;\n"
- " }\n"
- "\n"
- "namespace Foo\n"
- " {\n"
- " namespace Bar\n"
- " {\n"
- " void foo(int a, int b)\n"
- " {\n"
- " for (int i = 0; i < a; i++)\n"
- " {\n"
- " if (i < b)\n"
- " bar(i);\n"
- " else\n"
- " {\n"
- " bar(i);\n"
- " bar(b);\n"
- " }\n"
- " }\n"
- " }\n"
- " } // namespace Bar\n"
- " } // namespace Foo\n"
- ,
- "#include <math.h>\n"
- "\n"
- "class Complex\n"
- " {\n"
- "public:\n"
- " Complex(double re, double im)\n"
- " : _re(re), _im(im)\n"
- " {}\n"
- " double modulus() const\n"
- " {\n"
- " return sqrt(_re * _re + _im * _im);\n"
- " }\n"
- "private:\n"
- " double _re;\n"
- " double _im;\n"
- " };\n"
- "\n"
- "void bar(int i)\n"
- " {\n"
- " static int counter = 0;\n"
- " counter += i;\n"
- " }\n"
- "\n"
- "namespace Foo\n"
- " {\n"
- " namespace Bar\n"
- " {\n"
- " void foo(int a, int b)\n"
- " {\n"
- " for (int i = 0; i < a; i++)\n"
- " {\n"
- " if (i < b)\n"
- " bar(i);\n"
- " else\n"
- " {\n"
- " bar(i);\n"
- " bar(b);\n"
- " }\n"
- " }\n"
- " }\n"
- " } // namespace Bar\n"
- " } // namespace Foo\n"
- ,
- "namespace Foo\n"
- "{\n"
- "namespace Bar\n"
- "{\n"
- "class FooBar\n"
- " {\n"
- "public:\n"
- " FooBar(int a)\n"
- " : _a(a)\n"
- " {}\n"
- " int calculate() const\n"
- " {\n"
- " if (a > 10)\n"
- " {\n"
- " int b = 2 * a;\n"
- " return a * b;\n"
- " }\n"
- " return -a;\n"
- " }\n"
- "private:\n"
- " int _a;\n"
- " };\n"
- "}\n"
- "}\n"
- ,
- "#include \"bar.h\"\n"
- "\n"
- "int foo(int a)\n"
- " {\n"
- " switch (a)\n"
- " {\n"
- " case 1:\n"
- " bar(1);\n"
- " break;\n"
- " case 2:\n"
- " {\n"
- " bar(2);\n"
- " break;\n"
- " }\n"
- " case 3:\n"
- " default:\n"
- " bar(3);\n"
- " break;\n"
- " }\n"
- " return 0;\n"
- " }\n"
- ,
- "void foo() {\n"
- " if (a &&\n"
- " b)\n"
- " c;\n"
- "\n"
- " while (a ||\n"
- " b)\n"
- " break;\n"
- " a = b +\n"
- " c;\n"
- " myInstance.longMemberName +=\n"
- " foo;\n"
- " myInstance.longMemberName += bar +\n"
- " foo;\n"
- "}\n"
- ,
- "int *foo(const Bar &b1, Bar &&b2, int*, int *&rpi)\n"
- "{\n"
- " int*pi = 0;\n"
- " int*const*const cpcpi = &pi;\n"
- " int*const*pcpi = &pi;\n"
- " int**const cppi = &pi;\n"
- "\n"
- " void (*foo)(char *s) = 0;\n"
- " int (*bar)[] = 0;\n"
- "\n"
- " return pi;\n"
- "}\n"
-};
-
using namespace TextEditor;
namespace CppTools {
@@ -270,7 +106,7 @@ CppCodeStylePreferencesWidget::CppCodeStylePreferencesWidget(QWidget *parent)
<< m_ui->previewTextEditBraces << m_ui->previewTextEditSwitch
<< m_ui->previewTextEditPadding << m_ui->previewTextEditPointerReferences;
for (int i = 0; i < m_previews.size(); ++i)
- m_previews[i]->setPlainText(QLatin1String(defaultCodeStyleSnippets[i]));
+ m_previews[i]->setPlainText(QLatin1String(Constants::DEFAULT_CODE_STYLE_SNIPPETS[i]));
decorateEditors(TextEditorSettings::fontSettings());
connect(TextEditorSettings::instance(), &TextEditorSettings::fontSettingsChanged,