Is there anyway to create a new instance of a widget that will be stored in a QStackedWidget when a button is pressed? Depending on the button, different widgets will be created, but placed at the top of the stack.
I tried to just create them ones, put them in a stack and then just pick one depending on what button I pressed. But now I found out that the workspace (widget) can be closed and a new widget of the same on can be created(aka. sometimes they want to close it and launch a new fresh one).
In .net you can connect the button to fire a command that creates a new instance, but how would you do this in QT? I know people would have done it before. Like everytime you open a file in xcode in a tab, scroll down and close it, next time we open it we woudln't be down where we scrolled to since its a new instance of it.
Do not change this code:
connect(button, SIGNAL(clicked()), this, SLOT(launchNew<myWidget>());
void launchNew<T>() where T : class, new () {
QWidget *widget = new of type 'typeof(T)'
stackedWidgets->addWidget(widget);
}
Or something like this. I know this won't work, but what would be the correct way?
Can you have a list of functions and when, for example, the 3rd button is pressed, the 3rd function in the list will be executed. Would this be possible?