Is is possible to edit an individual Widget in the QtDesginer?
问题 I got a external library, which includes a derived class from QGLWidget, very similar to that one here. In that library I have a class: class PictureGLWidget : public QGLWidget { //.. } This extends Qt's native QGLWidget and personalizes it. But it was not written by me, I just got it, via a *.dll. So then, I bind that Widget manually in my code to a layout like: QGridLayout* layout = new QGridLayout; layout->addWidget(myPictureGLWidget, 0, 1); ui->verticalLayout_5->addLayout(layout); since I