@prasad2023 said in Cross platform compatible GUI application with C++ core logic:
Are qt gui and c++ backend are right technologies to develop such application?
Obviously, you will get a "yes" here.
There is a very large number of applications written using Qt that are similar to what you describe.
With "similar" I don't specifically mean trading applications, I mean professional desktop applications that use high-volumes of data and aim at a great user interface.
@prasad2023 said in Cross platform compatible GUI application with C++ core logic:
afaik, qt apis are wrappers around native os apis. will it impact performance?
This is not a good description. Qt is a toolkit and covers a LOT of ground and provides a very large number of features.
Any other toolkits, including the ones from Windows or Mac will basically have the same approach that Qt has for most of these features.
Therefore it won't be slower than those.
The term "wrapped" I have mostly seen used for widgets. The point there is that a Qt app can look identical to a native Windows or Mac application. If you so choose. I don't think you need to worry about that being slow.
@prasad2023 said in Cross platform compatible GUI application with C++ core logic:
is there any alternative for c++ for this requirement.
I don't think there is anything out there that will be good enough for such an application.