You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
452 B
25 lines
452 B
15 years ago
|
#include "myqt.h"
|
||
|
|
||
|
#include <qapplication.h>
|
||
|
#include <qvbox.h>
|
||
|
#include <qpushbutton.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
|
||
|
QVBox *v = new QVBox;
|
||
|
QPushButton *b = new QPushButton("Show w3.bmp !", v);
|
||
|
MyQT *qt = new MyQT(v);
|
||
|
|
||
|
QVBox::connect(b, SIGNAL(clicked()), qt, SLOT(bind()));
|
||
|
|
||
|
v->setStretchFactor(qt, 1);
|
||
|
|
||
|
a.setMainWidget(v);
|
||
|
v->resize(512, 256);
|
||
|
v->show();
|
||
|
|
||
|
return a.exec();
|
||
|
}
|