#ifndef PROBLEMRECTIFICATIONRESULT_H
|
#define PROBLEMRECTIFICATIONRESULT_H
|
|
#include <QMainWindow>
|
#include "tableitemdelegate.h"
|
#include <QMenu>
|
#include <QAction>
|
|
namespace Ui {
|
class ProblemRectificationResult;
|
}
|
|
class ProblemRectificationResult : public QMainWindow
|
{
|
Q_OBJECT
|
|
public:
|
explicit ProblemRectificationResult(QWidget *parent = 0);
|
~ProblemRectificationResult();
|
|
void initUi();
|
void readCompanyFromSQL();
|
|
private slots:
|
void on_pushButton_addRow_clicked();
|
|
void on_pushButton_save_clicked();
|
|
void showMenuSlot(QPoint);
|
void deleteAction();
|
void on_comboBox_company_currentIndexChanged(const QString &arg1);
|
|
private:
|
Ui::ProblemRectificationResult *ui;
|
QMenu *m_menu;
|
};
|
|
#endif // PROBLEMRECTIFICATIONRESULT_H
|