Compare commits

...

14 Commits

Author SHA1 Message Date
Giovanni-Josserand f08d7c5cbc Merge pull request 'dev' (#2) from dev into main
Reviewed-on: Giovanni-Josserand/FicheJDR#2
2025-07-14 21:32:56 +00:00
Giovanni 22e56df104 finish of close fiche button and add of start menu 2025-07-14 23:31:12 +02:00
Giovanni 24c4685cb2 add of fiche button 2025-07-10 17:53:53 +02:00
Giovanni 646ec2fb0c remove of visualisation and backPackTextEdit functional 2025-06-27 15:19:36 +02:00
Giovanni-Josserand 04a2663a46 Merge pull request 'feature/menuUi' (#1) from feature/menuUi into dev
Reviewed-on: Giovanni-Josserand/FicheJDR#1
2025-06-25 17:47:38 +00:00
Giovanni f872ca13c2 blocknote fonctionnel 2025-06-25 19:44:38 +02:00
Giovanni 78cd25df39 add of blocNote 2025-06-25 00:12:34 +02:00
Giovanni c8a253e690 add of open, create, save, save as, exit) 2025-06-23 23:10:43 +02:00
Giovanni 9167faedee add off open, create, save, save, as 2025-06-23 23:09:12 +02:00
iutbgdin 7a61aace20 improve ui 2025-06-23 20:13:27 +02:00
iutbgdin a7dadefb1a improve ui 2025-06-23 14:19:17 +02:00
Giovanni ffa4cb0d1d update ui 2025-06-23 11:54:48 +02:00
Giovanni 7d3f97fddd add of topFrame of edition mod 2025-06-22 19:28:57 +02:00
Giovanni bd23eb5793 add of menu ui, structures and declaration of Chracter class 2025-06-22 18:22:32 +02:00
623 changed files with 3583 additions and 6 deletions
+13 -3
View File
@@ -9,16 +9,26 @@ CONFIG += c++17
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \ SOURCES += \
character.cpp \
main.cpp \ main.cpp \
mainwindow.cpp mainwindow.cpp \
notepad.cpp \
textformatutils.cpp
HEADERS += \ HEADERS += \
mainwindow.h character.h \
mainwindow.h \
notepad.h \
textformatutils.h
FORMS += \ FORMS += \
mainwindow.ui mainwindow.ui \
notepad.ui \
# Default rules for deployment. # Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target !isEmpty(target.path): INSTALLS += target
RESOURCES += \
data.qrc
@@ -0,0 +1,21 @@
QMAKE_CXX.QT_COMPILER_STDCXX = 201703L
QMAKE_CXX.QMAKE_GCC_MAJOR_VERSION = 13
QMAKE_CXX.QMAKE_GCC_MINOR_VERSION = 1
QMAKE_CXX.QMAKE_GCC_PATCH_VERSION = 0
QMAKE_CXX.COMPILER_MACROS = \
QT_COMPILER_STDCXX \
QMAKE_GCC_MAJOR_VERSION \
QMAKE_GCC_MINOR_VERSION \
QMAKE_GCC_PATCH_VERSION
QMAKE_CXX.INCDIRS = \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++ \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32 \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed \
C:/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include
QMAKE_CXX.LIBDIRS = \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0 \
C:/Qt/Tools/mingw1310_64/lib/gcc \
C:/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib \
C:/Qt/Tools/mingw1310_64/lib

Some files were not shown because too many files have changed in this diff Show More