I want to derive a child class from an already customized widget in qt creator:
MyCustomWidget.h:
class MyCustomWidget : public QOpenGLWidget
{
Q_OBJECT
...
MyChildCustomWidget.h:
class MyChildCustomWidget : public MyCustomWidget
{
Q_OBJECT
...
Ok this is easy.
But how do I tell qt creator/designer to use MyChildCustomWidget?? It only allows me to use MyCustomWidget in the list of custom widget.