-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.h
66 lines (57 loc) · 2.2 KB
/
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
61
62
63
64
65
66
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QDebug>
#include <QItemDelegate>
#include <QMessageBox>
#include <QDate>
#include <QStyle>
#include "addDialog.h"
#include "aboutdialog.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
QDomElement findNecessaryNode(const QDomNode& node,
const QString& necessaryName,
const QString& number,
const QString& code);
private:
Ui::MainWindow *ui;
addDialog *dlg;
public slots:
void quitSlot(); // Слот выхода из программы
void addSlot(); // Добавить контракт
void changeSlot(); // Изменить контракт
void deleteSlot(); // Удалить контракт
void copySlot(); // Скопировать контракт
void updateTables(); // Обновить таблицы
void updateDownTable(); // Обновление подчинённой таблицы
void setDelayColor(int row); // Покраска строки таблицы
void setSendColor(int row);
void setDelayColorTable();
void menuControl();
void clearSendContracts(); // Слот для обработки сигнала очистки всех отправленных протоколов
bool getRowStatus(QString currentPayDate, QString urgent); // Получить статус текущего элемента по оплате
void viewAboutDialog(); // Слот обработки пункта меню "О программе"
signals:
void delayContract(int);
void sendContract(int);
};
class NonEditTableColumnDelegate : public QItemDelegate
{
Q_OBJECT
public:
NonEditTableColumnDelegate(QObject * parent = 0) : QItemDelegate(parent) {}
virtual QWidget * createEditor ( QWidget *, const QStyleOptionViewItem &,
const QModelIndex &) const
{
return 0;
}
};
#endif // MAINWINDOW_H