32 lines
504 B
C++
32 lines
504 B
C++
#ifndef PRESCRIPTIONDIALOG_H
|
|
#define PRESCRIPTIONDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class PrescriptionDialog;
|
|
}
|
|
|
|
class PrescriptionDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
explicit PrescriptionDialog(QWidget *parent = nullptr);
|
|
~PrescriptionDialog();
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
virtual void changeEvent(QEvent* event);
|
|
|
|
private slots:
|
|
void on_confirm_Btn_clicked();
|
|
|
|
private:
|
|
Ui::PrescriptionDialog *ui;
|
|
};
|
|
|
|
#endif // PRESCRIPTIONDIALOG_H
|