QTushView中的QPushButton

时间:2012-09-10 22:05:25

标签: c++ qt user-interface

我正在开发一个项目,我正在尝试将QPushButton添加到QTableView中。 我也希望连接该按钮以从数据库中打开文档。到目前为止,我添加了按钮,我为它编写了连接语句,但是当我点击按钮时没有发生任何事情。

这是我的代码

void MainWindow::DocumentTable()
{
tableview = new QTableView;
query = new QSqlQueryModel(this);
signalMapper = new QSignalMapper(this);

foreach(it,treeWidget->selectedItems())
{
    for (int col=0; col< it->columnCount(); ++col)
    {
        qDebug() << col << it->text(col);

QSqlQuery qry;
qry.prepare("select * from document where Folno=:Folno");
qry.bindValue(":Folno", it->text(col));
qry.exec();


query->setQuery(qry);
tableview->setModel(query);
tableview->setEditTriggers(QAbstractItemView::NoEditTriggers);

for (int i = 0; i< 1000; i++)
{
    button= new QPushButton("Open Document");
    tableview->setIndexWidget(tableview->model()->index(i, 0), button);
    signalMapper->setMapping(button, i);
}

connect(signalMapper, SIGNAL(mapped(int)), this, SLOT(imageFROMdatabase()));

tableview->show();

Docwidget= new QDockWidget(this);
Docwidget->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);

Docwidget->setWidget(tableview);
addDockWidget(Qt::RightDockWidgetArea,Docwidget);

Docwidget->show();

if(!query->submit())
  {
     QMessageBox::warning(0,"Error",query->lastError().text());

  }

 db.close();

}

         }
          }

这是插槽功能

   void MainWindow::imageFROMdatabase()
 {


QSqlQuery imageQuery;

imageQuery.prepare("SELECT * from doc_page where doc_no=:doc_no and f_number=:f_number");
imageQuery.bindValue(":doc_no", 1);
imageQuery.bindValue(":f_number",1);
imageQuery.exec();
imageQuery.next();

if( imageQuery.lastError().isValid())
    {
    QMessageBox::warning(0,"Error",imageQuery.lastError().text());

  //  QSqlDatabase::database().rollback();
     }
else
{
   // QByteArray ba1 = imageQuery.value(1).toByteArray();
    QPixmap pic;
    pic.loadFromData( ba);

scrollArea = new QScrollArea;
scrollArea->setBackgroundRole(QPalette::Dark);
scrollArea->setEnabled(true);

QString fileName = QFileDialog::getOpenFileName(this,"Open Image File",QDir::currentPath());
QImage image(fileName);

scene = new QGraphicsScene();
view = new QGraphicsView(scene);
item = new QGraphicsPixmapItem(QPixmap::fromImage(image));
scene->addItem(item);

     xwidget= new QDockWidget(this);
     xwidget->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);

     xwidget->setWidget(view);
     addDockWidget(Qt::RightDockWidgetArea,xwidget);
     xwidget->show();

     db.close();
     }
 }

请告知这些代码是否有任何错误。

1 个答案:

答案 0 :(得分:0)

插槽方法与信号方法不同。他们应该有完全相同的签名。 qDebug()应该为你生成一些警告。仔细阅读输出。 imageFROMDatabase()方法也应该接受一个整数作为输入。信号不是真正的功能。它们用于触发另一个与它们签名匹配的函数。

connect(signalMapper, SIGNAL(mapped(int)), this, SLOT(imageFROMdatabase()));

像这样改变:

connect(signalMapper, SIGNAL(mapped(int)), this, SLOT(imageFROMdatabase(int)));

ans也是:

void MainWindow::imageFROMdatabase( int x ) { ... }

如果信号和插槽不在线程中,请阅读手册enum Qt::ConnectionType