[doxygen] Fix broken groupings

This commit is contained in:
Mat Sutcliffe
2020-08-01 19:08:08 +01:00
parent faf7f2a2cf
commit 2ae0352e75
115 changed files with 474 additions and 248 deletions

View File

@@ -45,7 +45,8 @@ namespace BlackGui
//! Audio enable/disable
void toggleAudioEnableDisable();
//! Start/stop button @{
//! Start/stop button
//! @{
void setButtons();
void setButtons(int delayMs);
//! @}

View File

@@ -42,17 +42,20 @@ namespace BlackGui
//! Destructor
virtual ~CAudioDeviceVolumeSetupComponent() override;
//! Get input and output volume values @{
//! Get input and output volume values
//! @{
int getInValue(int from = BlackMisc::Audio::CSettings::InMin, int to = BlackMisc::Audio::CSettings::InMax) const;
int getOutValue(int from = BlackMisc::Audio::CSettings::OutMin, int to = BlackMisc::Audio::CSettings::OutMax) const;
//! @}
//! Set input and output volume values @{
//! Set input and output volume values
//! @{
void setInValue(int value, int from = BlackMisc::Audio::CSettings::InMin, int to = BlackMisc::Audio::CSettings::InMax);
void setOutValue(int value, int from = BlackMisc::Audio::CSettings::OutMin, int to = BlackMisc::Audio::CSettings::OutMax);
//! @}
//! Set input and output level values 0..1 @{
//! Set input and output level values 0..1
//! @{
void setInLevel(double value);
void setOutLevel(double value);
//! @}
@@ -127,7 +130,8 @@ namespace BlackGui
BlackMisc::Audio::CAudioDeviceInfo getSelectedInputDevice() const;
BlackMisc::Audio::CAudioDeviceInfo getSelectedOutputDevice() const;
//! Transmit and receive state @{
//! Transmit and receive state
//! @{
void setTransmitReceiveInUi(bool tx1, bool rec1, bool tx2, bool rec2, bool integrated);
void setTransmitReceiveInUiFromVoiceClient();
//! @}

View File

@@ -32,7 +32,8 @@ namespace BlackGui
//! Dtor
virtual ~CCGSourceSelector() override;
//! Get/set value @{
//! Get/set value
//! @{
BlackMisc::Simulation::Settings::CSimulatorSettings::CGSource getValue() const;
void setValue(const BlackMisc::Simulation::Settings::CSimulatorSettings &settings);
void setValue(BlackMisc::Simulation::Settings::CSimulatorSettings::CGSource source);

View File

@@ -57,7 +57,8 @@ namespace BlackGui
//! \copydoc BlackGui::Components::CTransponderModeSelector::transponderStateIdentEnded
void transponderStateIdentEnded();
//! Request COM text messages @{
//! Request COM text messages
//! @{
void requestCom1TextMessage();
void requestCom2TextMessage();
//! @}

View File

@@ -64,7 +64,8 @@ namespace BlackGui
//! Toggle area on show/hide details
void toggleShowHideDetails(bool show, bool considerCurrentSize);
//! Request text message COM1 @{
//! Request text message COM1
//! @{
void onRequestTextMessageCom1();
void onRequestTextMessageCom2();
//! @}

View File

@@ -44,7 +44,8 @@ namespace BlackGui
//! Copy assignment operator
CDbMappingComponentAware &operator =(const CDbMappingComponentAware &) = default;
//! Overlay messages @{
//! Overlay messages
//! @{
bool showMappingComponentOverlayMessage(const BlackMisc::CStatusMessage &message, int timeoutMs = -1);
bool showMappingComponentOverlayHtmlMessage(const BlackMisc::CStatusMessage &message, int timeoutMs = -1);
//! @}

View File

@@ -87,7 +87,8 @@ namespace BlackGui
//! Reset state
void resetState();
//! Selected server @{
//! Selected server
//! @{
bool isVatsimServerSelected() const;
bool isOtherServerSelected() const;
//! @}

View File

@@ -44,7 +44,8 @@ namespace BlackGui
//! Style
void setStyle(const QString &style) { m_style = style; }
//! Font size @{
//! Font size
//! @{
void fontSizeMinus();
void fontSizePlus();
//! @}

View File

@@ -55,7 +55,8 @@ namespace BlackGui
//! \remark takes the messages, turns it into a ".msg" command, and emits it
bool handleGlobalCommandLineText(const QString &commandLine, const BlackMisc::CIdentifier &originator);
//! Font size @{
//! Font size
//! @{
void fontSizeMinus();
void fontSizePlus();
//! @}
@@ -167,7 +168,8 @@ namespace BlackGui
//! Network connected?
bool isNetworkConnected() const;
//! Show current frequencies @{
//! Show current frequencies
//! @{
void showCurrentFrequenciesFromCockpit();
void showCurrentFrequenciesFromCockpit(const BlackMisc::Simulation::CSimulatedAircraft &ownAircraft);
//! @}