New interface theme, new icon

This commit is contained in:
Alexis Delhaie
2020-10-02 21:29:14 +02:00
parent 4308d9e93a
commit 08dcecbee9
15 changed files with 849 additions and 295 deletions

View File

@@ -3,6 +3,7 @@
#include <QDialog>
#include <QDoubleSpinBox>
#include <QMouseEvent>
#include <math.h>
#include "week.h"
@@ -43,6 +44,16 @@ private:
Identifier get_identifier(QString objectName);
Day modify_value(Day);
void mousePressEvent(QMouseEvent *event);
void mouseMoveEvent(QMouseEvent *event);
int m_nMouseClick_X_Coordinate;
int m_nMouseClick_Y_Coordinate;
int xmax;
int xmin;
int ymax;
int ymin;
inline bool isWidgetIsTitleBar();
public slots:
void edit();
};