initial commit

This commit is contained in:
2019-10-08 16:26:48 +02:00
parent ffc33b6d2a
commit f7593bd416
13 changed files with 490 additions and 16 deletions
+31
View File
@@ -0,0 +1,31 @@
#ifndef CMONTHLYVIEW_H
#define CMONTHLYVIEW_H
#include "cmonthlyitemdelegate.h"
#include <QWidget>
#include <QStandardItemModel>
#include <QMap>
namespace Ui {
class cMonthlyView;
}
class cMonthlyView : public QWidget
{
Q_OBJECT
public:
explicit cMonthlyView(const QDate& date, QWidget *parent = nullptr);
~cMonthlyView();
void setDate(const QDate& date);
private:
Ui::cMonthlyView* ui;
QStandardItemModel* m_lpMonthlyListModel;
QMap<QString, QString> m_code;
};
#endif // CMONTHLYVIEW_H