Qt开发:从基础到快速应用
1. Qt功能拓展
在Qt开发中,我们可以进行多方面的功能拓展,下面将详细介绍相关内容。
1.1 创建动作并添加到主窗口
以下代码展示了如何创建动作并将其添加到主窗口:
void MainController::createActions()
{
mBackAction = new WebActionProxy( this );
connect(mBackAction, SIGNAL(triggered()),
this, SLOT(handleItemClosed()));
mShowListAction = new QAction(tr("Show List"), this);
connect(mShowListAction, SIGNAL(triggered()),
this, SLOT(handleShowList()));
mShowMapAction = new QAction(tr("Show Map"), this);
connect(mShowMapAction, SIGNAL(triggered()),
this, SLOT(handleShowMap()));
// Add to the options menu
mMainWindow->menuBar()->addAction(mShowListAction);
超级会员免费看
订阅专栏 解锁全文
5万+

被折叠的 条评论
为什么被折叠?



