Standardize Doxygen documentation (#6885)

This commit is contained in:
DawnFire42 2026-05-21 16:58:07 -04:00 committed by GitHub
parent 03d54265fe
commit 33e0f8699b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
306 changed files with 539 additions and 487 deletions

View file

@ -63,19 +63,19 @@ public:
CardDatabaseModel *_cardDatabaseModel,
CardDatabaseDisplayModel *_cardDatabaseDisplayModel);
/// Add a new tab with a widget and title.
/** @brief Add a new tab with a widget and title. */
void addNewTab(QWidget *widget, const QString &title);
/// Remove the currently active tab.
/** @brief Remove the currently active tab. */
void removeCurrentTab();
/// Set the title of a specific tab.
/** @brief Set the title of a specific tab. */
void setTabTitle(int index, const QString &title);
/// Get the currently active tab widget.
/** @brief Get the currently active tab widget. */
[[nodiscard]] QWidget *getCurrentTab() const;
/// Get the total number of tabs.
/** @brief Get the total number of tabs. */
[[nodiscard]] int getTabCount() const;
VisualDeckEditorWidget *visualDeckView; ///< Visual deck editor widget.