在QTableView中添加QLineEdit,并且该QLineEdit是需要填入IP地址,因此输入的数据必须遵循IP地址的规则。这时可以使用QT中的委托。
委托的一篇文章http://blog.csdn.net/hello_world_lvlcoder/article/details/59478712
QLineEdit *editor = new QLineEdit(parent);
QRegExp rx("^((2[0-4]\\d|25[0-5]|[01]?\\d\\d?)\\.){3}(2[0-4]\\d|25[0-5]|[01]?\\d\\d?)$");
editor->setValidator(new QRegExpValidator(rx,parent));
editor->setInputMask("000.000.000.000;0");//必须加;0否则前面的正则表达式失效,;0”表示删除时默认填充为0