3

我刚刚开始使用 Qt 库。我正在尝试使用以下标头编译我的第一个测试脚本:

#include <qwebview.h>

但是它不会编译:

g++ main.cpp -o run.main
main.cpp:2:22: error: qwebview.h: No such file or directory
main.cpp: In function ‘int main()’:
main.cpp:10: error: ‘QWebView’ was not declared in this scope

我的 Linux Kubuntu 机器上确实安装了这些库:

$ locate qwebview
/usr/include/qt4/Qt/qwebview.h
/usr/include/qt4/QtWebKit/qwebview.h
/usr/lib/qt4/plugins/designer/libqwebview.so

我跑了ldconfig一次以确保(我认为)可以看到这些库,但显然,这还不够。

如何设置我的机器以便我可以开始使用 Qt 编译软件?

4

3 回答 3

6

在你[your_library].pro文件中添加

QT       +=  webkit

然后

#include <QWebView>

应该足以获得此代码:

QWebView *view = new QWebView(parent);
view->load(QUrl("http://qt.nokia.com/"));

编译

希望这会有所帮助,问候

于 2010-11-20T03:51:45.077 回答
4

首先,为包含使用正确的大小写:

#include <QWebView>

然后将正确的包含路径添加到编译器:

g++ -c -I /usr/include/qt4 main.cpp

然后链接到适当的库:

g++ -o main.run main.o -lQtCore -lQtGui -lQtWebKit

如果这对您来说太复杂了,请尝试使用 qmake ...

于 2010-11-20T03:27:31.943 回答
1
#include <QWebView> should work.
于 2010-11-20T02:32:16.707 回答