APVQuiz  1
A multiplayer multithreaded quizzing application
firstwindow.h
Go to the documentation of this file.
1 
9 #ifndef FIRSTWINDOW_H
10 #define FIRSTWINDOW_H
11 
12 #include <QMainWindow>
13 #include "signupdialog.h"
14 #include "mainwindow.h"
15 
16 namespace Ui {
17 class FirstWindow;
18 }
19 
25 class FirstWindow : public QMainWindow
26 {
27  Q_OBJECT
28 
29 public:
35  explicit FirstWindow( QWidget *parent = 0);
36  ~FirstWindow();
37 
38 private slots:
46  void on_loginPushButton_clicked();
47 
53  void on_signUpPushButton_clicked();
54 
55 private:
56 
57  Ui::FirstWindow *ui;
58  SignUpDialog *sd;
59  Mainwindow *mw;
60 };
61 
62 #endif // FIRSTWINDOW_H
Definition: contribute.h:16
SignUpDialog class.
Definition: signupdialog.h:23
manages the openning main window
manages the openning first window
Mainwindow class.
Definition: mainwindow.h:26
Firstwindow class.
Definition: firstwindow.h:25
FirstWindow(QWidget *parent=0)
Constructor for firstwindow.
Definition: firstwindow.cpp:22