-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStock_Control.h
48 lines (32 loc) · 940 Bytes
/
Stock_Control.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
#ifndef STOCK_CONTROL_H
#define STOCK_CONTROL_H
#include <QDialog>
namespace Ui {
class Stock_Control;
}
class Stock_Control : public QDialog
{
Q_OBJECT
public:
explicit Stock_Control(QWidget *parent = 0);
~Stock_Control();
QString partID;
QString partName;
QString getPartID() const;
void setPartID(const QString &value);
QString getPartName() const;
void setPartName(const QString &value);
private slots:
void on_line_Part_Name_textChanged(const QString &arg1);
void on_buttonBox_rejected();
void on_tbl_Parts_doubleClicked(const QModelIndex &Selected_Part_in_The_Grid);
void on_tbl_Parts_clicked(const QModelIndex &index);
void on_spinBox_Quantity_to_Show_valueChanged();
void on_checkBox_Set_Quantity_toggled();
void on_pushButton_clicked();
private:
Ui::Stock_Control *ui;
void LoadSettings();
void SaveSettings();
};
#endif // STOCKCONTROL_H