Hi,
I'm trying to design software which is split into multiple perspectives, each perspective being, in essence, like a program of its own. The layout I have is actually similar to that of QT Creator, with a sidebar of buttons which should switch to the chosen perspective.
Given that each perspective is very complex, they shall be programmed separately as individual programs. I've been trying to find a way to accomplish this in as neat, and fast a way as possible. One of my ideas would be to create new form classes which inherit from perhaps QFrame and then just load the appropriate one beside the toolbar. I've also tried inheriting from QMainWindow, but it seems that I cannot load these within my actual MainWindow, but rather only as a brand new pop up. I wonder if in fact I can even have the two as separate projects, and therefore separate EXEs, with some way of loading those into my MainForm.
I'm very new to QT (started about a week and half ago!), so I'm looking for some expert suggestions and help on what the best move would be.
Thanks a lot