C ++ Qt如何在滚动区域上添加小部件?

时间:2019-10-07 04:58:59

标签: c++ qt

我试图在滚动区域中显示自定义窗口小部件,但仅显示最后一个。

滚动区域的内容必须根据组合框索引进行动态更改,并且它们也更改并显示最后一个元素。

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    fileMenu = ui->menuBar->addMenu(tr("&Archivo"));
    openFileAction = new QAction(tr("Abir archivo"), this);
    connect(openFileAction,
            SIGNAL(triggered()),
            this,
            SLOT(openFile()));
    fileMenu->addAction(openFileAction);


    scroll = ui-> scrollArea;
    scroll->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
    scroll->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
    scroll->setWidgetResizable(true);


    ui->stackedWidget->setCurrentIndex(0);
}

vector<product> MainWindow::filter(QString cad)
{
    vector <product> tempList;
    QMessageBox message;
    for(size_t i(0);i<products.size();i++){
        if(products.at(i).getId().contains(cad)){
            product *p = new product;
            p->setId(products.at(i).getId());
            p->setName(products.at(i).getName());
            p->setPrice(products.at(i).getPrice());
            tempList.push_back(*p);
        }
    }
    return tempList;
}

void MainWindow::loadproducts(int category){
    QMessageBox message;
    vector <product> tempList;
    switch(category){

    case Alimentos:{
        tempList=filter("AB");
        break;
        }

    case Libros:{
        tempList=filter("L");
        break;
        }

    case Electronicos:{
        tempList=filter("E");
        break;
        }

    case Hogar:{
        tempList=filter("HC");
        break;
        }

    case Deporte:{
        tempList=filter("D");
        break;
        }

    case Todos:{
        tempList=products;
        break;
        }

    default:{
        break;
        }
    }

//THIS FOR IS SUPPOSED TO ADD WIDGETS TO SCROLL AREA

    for(size_t i=0;i<tempList.size();i++){
        ProductWidget *p = new ProductWidget(widget, tempList.at(i).getId(), tempList.at(i).getName(), tempList.at(i).getPrice());
        scroll->setWidget(p);
    }

    tempList.clear();
}

滚动区域必须显示10个小部件,但仅显示最后一个。

1 个答案:

答案 0 :(得分:1)

您只能使用setWidget()方法在QScrollArea中设置一个小部件,如果添加了另一个小部件,它将替换前一个小部件。如果要显示几个窗口小部件,则必须将它们全部放置在一个窗口小部件中,最后一个窗口小部件在QScrollArea中进行设置。例如,您的情况:

// ...
QWidget *container = new QWidget;
scroll->setWidget(container);
QVBoxLayout *lay = new QVBoxLayout(container);

for(size_t i=0;i <tempList.size(); i++){
    ProductWidget *p = new ProductWidget(...);
    lay->addWidget(p);
}
// ...