Implementing the File Menu


当最后一个窗体被关闭,应用程序就结束了。QApplication' 的quitOnLastWindowClosed 属性设为 false,程序会一直运行,直到我们调用QApplication::quit()

一个对话框如果调用 show() 就是非模态的(如果之前调用了setModal() 则是模态的 );如果调用exec() 则是模态的。

QDialog::exec() 返回true (if the dialog is accepted) 或false (otherwise),通常OK 按钮连接 accept() ,Cancel 连接 reject()

QTableWidget::setCurrentCell() 接受两个参数,一个是行index, 一个是列index

QString::mid() 返回从start position 到尾部的字符串。

void MainWindow::goToCell()
{
    GoToCellDialog *dialog = new GoToCellDialog(this);
    if (dialog->exec()) {
        QString str = dialog->lineEdit->text().toUpper();
        spreadsheet->setCurrentCell(str.mid(1).toInt() - 1,
                                    str[0].unicode() - 'A');
    }
    delete dialog;
}


模态对话框一般用完就销毁

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值