Author Archives: admin

Copy Folder on Mac and Windows

Developers can often encounter next problem: there is required files and folders manipulations which needed to be implemented in application. For one side there is enough API to do it Qt, but maybe it is too much code to handle all reads/writes, then you need to worry about some progress message, then it could be […]
Posted in Blog, Qt | Leave a comment

Show in Finder / Show in Explorer

It happens often when for integration purposes or for making easy way to navigate to files you need to have such action “Show in Finder” on mac or “Show in Explorer” on windows. Well, the code is pretty simple:
Posted in Blog, Qt | 1 Comment

Styling Lists on Mac

Here is QTreeView on Mac that I usually use for lists in my applications. Actually it is designed to be in Mac style, but still it is different and you feel that it is not good and looks like alien in Mac. Let’s do something with style sheets:
Posted in Blog, Qt | Leave a comment

Continue Preferences Window

Let’s continue our previous blog post regarding preferences window. Of course it looks great and native look-and-feel on Mac, but what about having styles for both platforms to make user feel comfortably. I tried to apply Firefox-like style of preferences window, you can see screenshot above. Code:
Posted in Blog, Qt | Leave a comment

Preferences Window

How to implement Preferences Window in Qt that look and feel like pure Mac application? Well, first problem is, that it should be window instead of dialog, even QMainWindow to have unifiedTitleAndToolBarOnMac property (allowed only for QMainWindow now). So let’s define and implement it as QMainWindow. Problem #2: We have empty menu bar when activates […]
Posted in Blog, Qt | Leave a comment

Lists and Top Right corner

QListView Mac If you have lists or tables in your application you can see that Qt widgets have scroll bar for full height of widget instead of only viewport area. What to do to make it looks like native mac widget? It is easy. Remember that QAbstractScrollArea has method: addScrollBarWidget()
Posted in Blog, Qt | 1 Comment

List Headers in Mac style

Using QListView or QTableView you can see that style is not what you can expect on Mac platform. As solution you can use next qstylesheet code to apply to your widgets:
Posted in Blog, Qt | Leave a comment