-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
60 lines (46 loc) · 1013 Bytes
/
mainwindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
* @file
* @author Hardik Prajapati
* @version 1.0
* @section LICENSE
* HNP (R)
* @section DESCRIPTION
* A program that increments and decrements to the LCD
*/
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
/*! \brief Main class
* of my application for project CS340.
*
* Inherits for QMainWindow from Qt
*/
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
/**
* Constructor for MainWindow
*
* @param parent a parent widget, can be null
*/
MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
/**
* 3 Buttons for MainWindow and 1 LCD to display result
*
* @param parent a parent widget, can be null
*/
void on_pushButton_clicked();
void on_pushButton_2_clicked();
void on_lcdNumber_overflow();
void on_pushButton_3_clicked();
private:
Ui::MainWindow *ui;
int count; /*!< an integer value */
};
#endif // MAINWINDOW_H