Add docs for UI views

This commit is contained in:
Andrew nuark G 2021-01-10 21:55:35 +07:00
parent 9306786beb
commit bc591244c4
9 changed files with 342 additions and 3 deletions

View file

@ -10,19 +10,40 @@
#include <QMessageBox>
/**
* @brief Namespace for UI layout MOC to be generated
*
*/
namespace Ui { class AuthWindow; }
/**
* @brief Auth window
*
*/
class AuthWindow : public QMainWindow {
private:
Q_OBJECT
//! Layout object
Ui::AuthWindow *ui;
public:
/**
* @brief Construct a new Auth window
*
* @param parent [ignored]
*/
explicit AuthWindow(QWidget *parent = nullptr);
/**
* @brief Destroy the Auth window
*
*/
~AuthWindow();
private:
/**
* @brief Action to be called, then user pressed login button
*
*/
void on_auth_requested();
};