更新時(shí)間:2015年12月28日16時(shí)34分 來(lái)源:傳智播客C/C++學(xué)科 瀏覽次數(shù):
Widget::Widget(QWidget *parent) :
QWidget(parent),
ui(new Ui::Widget)
{
ui->setupUi(this);
QStringList textList;
signalMapper = new QSignalMapper(this);
// 布局管理器
QVBoxLayout *vLayout = new QVBoxLayout(this);
textList << "北京" << "上海" << "廣州" << "南京" << "天津";
for(int i=0; i<5; ++i)
{
// 動(dòng)態(tài)創(chuàng)建按鈕
QPushButton* button = new QPushButton(textList[i]);
button->setFixedSize(50, 30);
// 按鈕的信號(hào)和QSignalMapper類(lèi)的map()槽函數(shù)關(guān)聯(lián)
// 原始信號(hào)傳遞給signalMapper
connect(button, SIGNAL(clicked(bool)),
signalMapper, SLOT(map()));
// 設(shè)置signalmapper的轉(zhuǎn)發(fā)規(guī)則, 轉(zhuǎn)發(fā)為參數(shù)為QString類(lèi)型的
// 信號(hào), 并把textList[i]的內(nèi)容作為實(shí)參傳遞。
signalMapper->setMapping(button, textList[i]);
vLayout->addWidget(button);
}
//將轉(zhuǎn)發(fā)的信號(hào)連接到最終的槽函數(shù)
connect(signalMapper, SIGNAL(mapped(QString)),
this, SLOT(slotClicked(QString)));
}
// 自定義槽函數(shù)
void Widget::slotClicked(QString text)
{
QMessageBox::information(this, "Button Clicked", text);
}當(dāng)用戶(hù)點(diǎn)擊不同的按鈕,會(huì)彈出不同的對(duì)話(huà)框,對(duì)話(huà)框中顯示的內(nèi)容為按鈕的標(biāo)題。
北京校區(qū)