Qt - Symbian Mobile - 软键菜单无法正确显示

发布于 2024-10-08 01:45:35 字数 1209 浏览 8 评论 0原文

alt text

我创建并显示一个 QWebView,底部带有软键选项。当我单击“选项”时,会出现一个菜单,但它很小,黑色,位于左上角(它应该看起来像标准的蓝色软键,并且位于它们的正上方)。我遵循了这个示例

//create webview
webView = new QWebView;
webView->setUrl(QString(":html/internal.html"));

//create menu
QAction *option1 = new QAction(tr("Back"), webView);
option1->setSoftKeyRole(QAction::PositiveSoftKey);
    connect(option1, SIGNAL(triggered()), this, SLOT(deleteView()));

//create right softkey action to launch the "options" menu
QAction *option2 = new QAction(tr("Options"), webView);
option2->setSoftKeyRole(QAction::NegativeSoftKey);
    connect(option2, SIGNAL(triggered(), this, SLOT(showMenu()));

QMenu *menuOptions = new QMenu(webView);
menuOptions->addAction(tr("Sub Menu 1"), this, SLOT(aboutView()));
menuOptions->addAction(tr("Sub Menu 2"), this, SLOT(aboutView()));
option2->setMenu(menuOptions);

//add softkey menus
QList < QAction* > softKeys;
softKeys.append(option1);
softKeys.append(option2);

webView->addActions(softKeys);
webView->show();

alt text

I create and show a QWebView with soft key options at the bottom. When I click "Options", a menu shows up, but it's tiny, black, and in the upper left hand corner (it should look like the standard blue soft keys and be directly above them). I followed this example.

//create webview
webView = new QWebView;
webView->setUrl(QString(":html/internal.html"));

//create menu
QAction *option1 = new QAction(tr("Back"), webView);
option1->setSoftKeyRole(QAction::PositiveSoftKey);
    connect(option1, SIGNAL(triggered()), this, SLOT(deleteView()));

//create right softkey action to launch the "options" menu
QAction *option2 = new QAction(tr("Options"), webView);
option2->setSoftKeyRole(QAction::NegativeSoftKey);
    connect(option2, SIGNAL(triggered(), this, SLOT(showMenu()));

QMenu *menuOptions = new QMenu(webView);
menuOptions->addAction(tr("Sub Menu 1"), this, SLOT(aboutView()));
menuOptions->addAction(tr("Sub Menu 2"), this, SLOT(aboutView()));
option2->setMenu(menuOptions);

//add softkey menus
QList < QAction* > softKeys;
softKeys.append(option1);
softKeys.append(option2);

webView->addActions(softKeys);
webView->show();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那请放手 2024-10-15 01:45:35

此示例在模拟器和手机上都能很好地工作。从 Qt 4.6.x 开始,它包含在 QTDIR/examples/widgets 文件夹中

This example works well on simulator and also in phone. It is included in the QTDIR/examples/widgets folder since Qt 4.6.x

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文