#### Brief overview of PR changes/additions
Ran clang-format on all 134 CPP files in src/ using the project's
.clang-format config
#### Motivation for adding to Mudlet
Ensures consistent code formatting across the codebase.
#### Other info (issues closed, discussion etc)
None
**Test case:** Build the project and verify it compiles successfully.
<!-- Keep the title short & concise so anyone non-technical can
understand it,
the title appears in PTB changelogs -->
#### Brief overview of PR changes/additions
Declare that single clicks should select but not not activate items in
the editor list.
#### Motivation for adding to Mudlet
#6829 made things feel broken on Linux using KDE specifically using the
single-click to activate item mode.
There is `QStyle::SH_ItemView_ActivateItemOnSingleClick` which is taken
from system but application can override it instead. For most setups it
gets 0, and for some setups it gets 1. This change should make it do 0
regardless.
Most should see absolutely no change with this.
The odd setups I'm aware of are that of [eternaleye with unknown
OS](https://github.com/Mudlet/Mudlet/pull/6829#issuecomment-1639403026)
and [SlySven with
FreeBSD](https://github.com/Mudlet/Mudlet/pull/7011#issuecomment-1848681252).
#### Other info (issues closed, discussion etc)
This is so they all have each member initialiser on a single line - so
that changes can be more easily seen/comprehended in Git differences (as
opposed to them all being on a long single line...!)
This is a response to the comment:
https://github.com/Mudlet/Mudlet/pull/6379#issuecomment-1287238558
Signed-off-by: Stephen Lyons <slysven@virginmedia.com>
* take on alt focus menu bar disable
* correct key_alt case
* add altfocusmenudisable style
* code clean up
put AltFocusMenuBarDisable object creation into Host and make it preference dependant
* make constructor explicit
* correct access to preferences of current profile
* flip condition to be correct
* revert change in TCommandLine
* revert change in dlgProfilePreferences.cpp
* remove alt focus title bar disable preference - just disable it completely
* add new files to mudlet.pro and correct order in CMakeList
* restore parenthesis
Co-authored-by: Piotr Wilczynski <piotr.wilczynski@bisnode.com>