Center/Right Align a Widget in QTreeWidget
Qt comes with a class which can be used to show data in a tree view. It can be used to show hierarchical data using either Model/View framework or by manually creating the…
Qt comes with a class which can be used to show data in a tree view. It can be used to show hierarchical data using either Model/View framework or by manually creating the…
SLogLib is a flexible logging library written in C++. It comes with three logging devices: console, file, and memory but often there is a need to show log directly on the user…
Some time back, I developed a data entry application in Qt5. One of the requirements was to let the user select a single string from a predefined list of string. I developed a…
Qt5 support standard dialogs such as QFileDialog, QFontDialog, and QColorDialog, however, it does not provide a color picker to allow a user to pick a color. Recently, I need a…
This week, at work I had to implement a search box for a software I am working on. The search box is to filter some data dynamically as user types a query. I wanted to show a…