##// END OF EJS Templates
[VisualizationGraphWidget] Restored box zoom and zones plus refac...
[VisualizationGraphWidget] Restored box zoom and zones plus refac - Box zoom is mostly working - Zones can be drawn again but can't be moved - started to move QCP in pimpl VisualizationGraphWidget shouldn't have to deal with QCP even know that we use QCP Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r4:e36aaa65e079
r1364:60a7242b38cd
Show More
.clang-format
26 lines | 637 B | text/plain | TextLexer
---
# See http://clang.llvm.org/docs/ClangFormatStyleOptions.html for a definition
# of the options
Language: Cpp
BasedOnStyle: LLVM
# Line length
ColumnLimit: 100
# Indent with 4 spaces
IndentWidth: 4
AccessModifierOffset: -4 # -IndentWidth
ConstructorInitializerIndentWidth: 8 # 2 * IndentWidth
# Break only before function braces
BreakBeforeBraces: Stroustrup
AllowShortFunctionsOnASingleLine: Inline
AlwaysBreakTemplateDeclarations: true
AlwaysBreakBeforeMultilineStrings: true
BreakBeforeBinaryOperators: true
ConstructorInitializerAllOnOneLineOrOnePerLine: true
IndentCaseLabels: true
MaxEmptyLinesToKeep: 2
Standard: Cpp03