Add export, fix scrollbar, fix dialog name

This commit is contained in:
Aurélie Delhaie
2022-11-04 22:51:12 +01:00
parent 7b17dfb044
commit 3626ffa54e
9 changed files with 267 additions and 44 deletions

View File

@@ -4,8 +4,8 @@ greaterThan(QT_MAJOR_VERSION, 5): QT += widgets
CONFIG += c++17
win32:VERSION = 2.0.0.0 # major.minor.patch.build
else:VERSION = 2.0.0 # major.minor.patch
win32:VERSION = 2.1.0.0 # major.minor.patch.build
else:VERSION = 2.1.0 # major.minor.patch
DEFINES += APP_VERSION=\"\\\"$${VERSION}\\\"\"
DEFINES += APP_NAME=\"\\\"WorkPad\\\"\"
@@ -69,6 +69,7 @@ linux-* {
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
src/frames/exportdialog.cpp \
src/frames/renamedialog.cpp \
src/frames/aboutdialog.cpp \
src/frames/createdialog.cpp \
@@ -80,6 +81,7 @@ SOURCES += \
src/services/savemanager.cpp
HEADERS += \
src/frames/exportdialog.h \
src/frames/renamedialog.h \
src/frames/aboutdialog.h \
src/frames/createdialog.h \
@@ -90,6 +92,7 @@ HEADERS += \
src/services/savemanager.h
FORMS += \
src/frames/exportdialog.ui \
src/frames/renamedialog.ui \
src/frames/aboutdialog.ui \
src/frames/createdialog.ui \