This application can be used to display image and is completely written in Qt c++. main.cpp The very first line includes the QApplication class.then we create an instance imageViewer of ImageViewer class that we define in imageviewer.cpp. imageViewer.show()is to display that instance.The last line passes control of the application to Qt. imageviewer.cpp Explanation of imageviewer.cpp:Continue reading “Image Viewer In Qt”
Monthly Archives: October 2011
Analog Clock in Qt
My aim was to built an application in Qt.I thought Analog clock will be a good and small application.The code is given below. main.cpp analogclock.cpp analogclock.h OUTPUT WINDOW
My Application in Qt
This application just add what we have typed on the lineEdit to the listWidget by clicking Add. main.cpp mainwindow.cpp mainwindow.h OUTPUTWINDOW