Add docs for UI views
This commit is contained in:
parent
9306786beb
commit
bc591244c4
9 changed files with 342 additions and 3 deletions
|
|
@ -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();
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue