Files
mediasystem/.gitignore
T
Mo Elzubeir 99581bc990 Major port Qt4 to Qt6
- Updated header inclusions from QtGui to QtWidgets for consistency and compatibility with Qt 5 and later.
- Replaced deprecated QApplication::desktop() with QApplication::primaryScreen() for obtaining screen DPI.
- Modified MyOutputHandler to use QMessageLogContext and QString for improved logging.
- Changed QMatrix to QTransform for image rotation in ImageCutout class.
- Updated various debug statements to use toLocal8Bit() instead of toAscii() for better string handling.
- Refactored several classes to use QElapsedTimer instead of QTime for performance measurement.
- Ensured all operator overloads in Section and Tag classes are marked as const for better const-correctness.
2025-10-22 23:04:56 -05:00

98 lines
1.0 KiB
Plaintext

# Qt / C++ typical .gitignore
# Build directories (CMake, qmake, other)
build*/
cmake-build*/
out/
dist/
install/
# CMake files
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
CTestTestfile.cmake
install_manifest.txt
Makefile
Clipping\ Station.app/
Clipping\ Station.app
# qmake / Qt Creator
*.pro.user*
*.qmake.stash
*.qmake.cache
# Qt generated sources
moc_*.cpp
*_moc.cpp
qrc_*.cpp
ui_*.h
ui_*.cpp
# Object, library and binary files
*.o
*.obj
*.lo
*.la
*.al
*.a
*.so
*.dylib
*.dll
*.exe
*.out
# Static analysis / indexing
*.tags
TAGS
tags
cscope.*
*.d
# IDEs and editors
.vscode/
.idea/
*.swp
*~
*.sublime-project
*.sublime-workspace
*.kate-swp
*.kdev4
*.kmproj
*.cbp
*.workspace
# Xcode
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
*.perspectivev3
xcuserdata/
*.xcworkspace
project.xcworkspace/
build/
# Visual Studio
*.vcxproj.user
*.sdf
*.opensdf
*.VC.db
ipch/
*.pdb
# macOS / Windows
.DS_Store
Thumbs.db
ehthumbs.db
# Misc / logs / temp
*.log
*.tmp
*.temp
*.bak
# Generated by tools
*.pro.user.*