Mark2020H

Timer enabled Image Viewer Part1 of 5

Nov 4th, 2020 (edited)
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.10 KB | None | 0 0
  1. # QT Timer enabled Image Viewer MD Harrington Part (1)  Comprising 5 Parts  MD Harrington  Qt project file
  2. # Links for others who may be interested can be found on  git hub at this address
  3. # https://github.com/markh2016/QT_Timer_Imageviewer.git
  4.  
  5.  
  6. /* Special word of thanks to Brian  Cairns  Void-realms  Facebook who put tutorials together for us whom  cant afford much  right now  Working version   / desktop  recording  available  at this link https://www.facebook.com/groups/1400884323467285 */
  7.  
  8.  
  9. QT       += core gui
  10.  
  11. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  12.  
  13. CONFIG += c++11
  14.  
  15. # You can make your code fail to compile if it uses deprecated APIs.
  16. # In order to do so, uncomment the following line.
  17. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
  18.  
  19. SOURCES += \
  20.     main.cpp \
  21.     imagedialog.cpp
  22.  
  23. HEADERS += \
  24.     imagedialog.h
  25.  
  26. FORMS += \
  27.     imagedialog.ui
  28.  
  29. # Default rules for deployment.
  30. qnx: target.path = /tmp/$${TARGET}/bin
  31. else: unix:!android: target.path = /opt/$${TARGET}/bin
  32. !isEmpty(target.path): INSTALLS += target
  33.  
Add Comment
Please, Sign In to add comment