标题:【原创】Qt4中演示Flash中源代码
作者:acefunware
日期:2005-08-22 20:56
内容:
flash:http://www.qtcn.org/bbs/read.php?tid=95&fpage=1
main.cpp
#include "ui_browser.h"
#include
int main(int argc,char * argv[])
{
QApplication app(argc,argv);
app.setQuitOnLastWindowClosed(true);
QMainWindow * form =new QMainWindow;
Ui::MainWindow ui;
ui.setupUi(form);
ui.textBrowser->setSource(QString("..\\html\\index.html"));
form->show();
return app.exec();
}
borwser.ui
MainWindow
0
0
400
252
MainWindow
8
6
0
6
& ..
#1 [guostar 03-27 15:36]
我自己编译,在make时提示错误:
着不到安装目录下的相应文件,不知是什么原因