Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Create QLineEdit on QListWidget when double clicked

Create QLineEdit on QListWidget when double clicked

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 2 Posters 290 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    kayakaan02
    wrote on last edited by
    #1

    So here I add a QListWidget to a QTableWidget in a function in mainwindow.cpp

    QListWidget *listWid = new QListWidget;
    ui->tableWidget_2->setIndexWidget(ui->tableWidget_2->model()->index(4, (n - m_list.begin())), listWid);//ignore n-m_list.begin() 
    

    And here I want to add a QLineEdit when user double clicks into an empty area of that list widget.

    So I tried to use this:

    connect(listWid, SIGNAL(doubleClicked(listWid)), listWid, [&](){
        QLineEdit *as = new QLineEdit;
        listWid->addItem(as->text()); 
    });
    

    But it generates "No matching member function for call to 'connect'"

    How can I solve this? thanks in advance.

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi,

      Two things that stand out:

      • use the function pointer version of connect to use it with a lambda
      • your lambda will just add an empty item to your list widget and leak a QLineEdit object every time you call it.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved