简体   繁体   中英

How can i add new row to the existing QTablewidget

Problem in getting mouseEvent on QTableWidget , this code is to create a window with tabelwidget and mouseclickevent , when i click right button of mouse then i got two action event options named "add" and "delete", i want to add new rows with 3 columns when i click "add" event function, and delete the last row when i click on "delete" event function,

(sorry for my english), any help is appreciated.

 #include "notepad.h"
    #include <QMessageBox>
    #include <QTableView>
    #include <QMouseEvent>

    Notepad::Notepad() 
    {

         test() ;

        add_action = new QAction(tr("Add cell"), this);
        add_action->setIcon(QIcon("add.jpg"));
        Delete_action = new QAction(tr("Delete cell"), this);
        Delete_action->setIcon(QIcon("delete.jpg"));

        connect(Delete_action, SIGNAL(triggered()), this, SLOT(Delete()));
        connect(add_action, SIGNAL(triggered()), this, SLOT(add()));

        centralWidget()->setAttribute(Qt::WA_TransparentForMouseEvents);
        centralWidget()->setAttribute(Qt::WA_MouseTracking,true);

        setMouseTracking(true);

    }
    void Notepad::test() 
    {       
        QTableWidget* table = new QTableWidget();
        QTableWidgetItem* tableItem = new QTableWidgetItem();

        table->setRowCount(1);
        table->setColumnCount(3);
        table->setItem(0,0,new QTableWidgetItem());
        table->setItem(0,1,new QTableWidgetItem());
        table->setItem(0,2,new QTableWidgetItem());

        table->setMouseTracking(true);
        table->viewport()->setMouseTracking(true);
        table->installEventFilter(this);
        table->viewport()->installEventFilter(this);

        table->setSelectionBehavior(QAbstractItemView::SelectRows);
        table->setSelectionMode(QAbstractItemView::SingleSelection);

        tableItem->setFlags(tableItem->flags() ^ Qt::ItemIsEditable);
        table->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
        setCentralWidget(table);


    }

    void Notepad::mouseReleaseEvent (QMouseEvent * event )
    {   


        QMessageBox* msgBox;
        if(event->button() == Qt::RightButton)
          {
    QMouseEvent *mouseEvent = static_cast<QMouseEvent*> (event);
           QMenu *menu = new QMenu(this);
           menu->addAction(add_action);
           menu->addAction(Delete_action);
           menu->exec(mouseEvent->globalPos());

        } 
    }
    void Notepad::add() 
    {
        QTableWidget* table = new QTableWidget();
        test();

        table->setColumnCount(3);*/


        int newRow = table->rowCount();
        int newcol = table->columnCount();
        qDebug() << newRow;  
        for (int row ; row < newRow+1 ; ++row)
        {
            QWidget *parent;
            QStyleOptionViewItem option;
            for (int column = 0; column < 3; ++column)
            {

            table->insertRow( table->rowCount());
            table->insertColumn( newcol );
            }
        }

        setCentralWidget(table);
        centralWidget()->setAttribute(Qt::WA_TransparentForMouseEvents);
        setMouseTracking(true);
    }
    void Notepad::Delete() 
    {
        QTableWidget* table = new QTableWidget();

        add();

        int row=table->rowCount();


    if (int i= row){
        table->removeRow(i);

    }
        setCentralWidget(table);
        centralWidget()->setAttribute(Qt::WA_TransparentForMouseEvents);
        setMouseTracking(true);
    }

You have 2 questions in one: how to create a context menu and how to add a row.

How to create a context menu.

Step 1: create a menu once. In constructor, for example.

// _menu is a class member.
_menu = new QMenu(this);
_menu->addAction(add_action);
_menu->addAction(Delete_action);

Step 2: show it in corresponding event:

void Notepad::contextMenuEvent(QContextMenuEvent *event)
{
    _menu->exec(event->globalPos());
}

How to add a row.

At first, you need a table as a class member. Why do you create a new instance every time? They are different objects! You create a new table widget on each add call!

At second, you need to increase rows count and to fill a new row:

void Notepad::add()
{
    const int newIndex = _table->rowCount();
    _table->setRowCount(newIndex + 1);
    // Fill data in row with index newIndex.
    ...
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM