AUI Framework
develop
Cross-platform base for C++ UI apps
|
clang-format is a de facto standard tool to auto format (C++) code with style described by .clang-format
file that typically located inside your project's root directory. AUI has such file.
Since AUI abuses C++'s syntax, it's important to set up appropriate auto formatting, or you will often find yourself struggling with AUI's DSL especially in large portions of layout, despite the fact we recommend to decompose large AUI DSLs into smaller pieces (i.e., functions). For your project, we recommend to start with AUI's formatting configuration listed below. AUI's App Template has .clang-format
already. Your IDE should pick up it without further configuration.
When it comes to clang-format
there's one an unobvious feature when using AUI's DSL. Consider the example:
With Trailing Comma | Without Trailing Comma |
---|---|
setContents(Vertical {
Button { "Up" },
Button { "Down" },
});
| setContents(Vertical {
Button { "Up" },
Button { "Down" }
});
|
See the difference? The second example lacks one comma. If we try to trigger clang-format
(ALT+CTRL+L in CLion), we'll get the following results (assuming AUI's .clang-format):
With Trailing Comma | Without Trailing Comma |
---|---|
setContents(Vertical {
Button { "Up" },
Button { "Down" },
});
| setContents(Vertical {
Button { "Up" }, Button { "Down" } });
|
The first example left as is (correct), the second example formatted confusingly.
When using any kind of AUI's DSL with initializer lists please always use trailing comma. Not only it helps with reordering, git diffs, etc..., but also .clang-format
makes proper formatting for lists with trailing commas.
In some scenarios clang-format may fight against you, especially with complicated syntax. You can use // clang-format off
and // clang-format on
to disable and enable clang-format, respectively.
Place this .clang-format
file in root of your project.