gpt4 book ai didi

c++ - 如何将 Qt 组合框与按钮和某种显示图片的小部件连接起来?

转载 作者:太空宇宙 更新时间:2023-11-04 13:08:11 25 4
gpt4 key购买 nike

我刚开始学习 Qt,我想做一个简单的程序,我可以在其中选择一个图片名称(在组合框中),然后单击按钮,所选图片将出现在小部件中(?)(在同一窗口中,如果这是可能的)。 It should look like this:

到目前为止,我遇到的最大问题是将所有这些对象连接在一起,我无法使它们正常工作。

我也试过将图片上传到小部件,但它只显示为全尺寸,我的程序变成了图片,没有别的。

编辑:

我正在努力让它发挥作用,但我无法实现......这是我的代码:

主窗口.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}

MainWindow::~MainWindow()
{
delete ui;
}

void MainWindow::on_comboBox_currentIndexChanged(int index)
{
connect(ui->comboBox, SIGNAL(currentIndexChanged(int index)), this, SLOT(on_pushButton_clicked(int index)));
}
void MainWindow::choiceChanged(int index)
{

switch (index) {
case 0:
firstPicture();
break;
case 1:
secondPicture();
break;
case 2:
thirdPicture();
break;
}
}

void MainWindow::on_pushButton_clicked(int index)
{
connect(ui->pushButton, SIGNAL(on_pushButton_clicked(int)), this, SLOT(choiceChanged(int)));
}
void MainWindow::firstPicture(){
QPixmap image("C:/Documents/Aaaa.png");
ui->label->setPixmap(image);
}
void MainWindow::secondPicture(){
QPixmap image("C:/Documents/Bbbb.png");
ui->label->setPixmap(image);
}
void MainWindow::thirdPicture(){
QPixmap image("C:/Documents/Cccc.png");
ui->label->setPixmap(image);
}

main.cpp

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{

QApplication a(argc, argv);
MainWindow w;
w.show();

return a.exec();
}

主窗口.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
Q_OBJECT

public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();

private slots:
void on_pushButton_clicked(int index);

void choiceChanged(int index);

void on_comboBox_currentIndexChanged(int index);

void firstPicture();

void secondPicture();

void thirdPicture();

private:
Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H

最佳答案

你的布局没问题,但我建议你使用 QLabel 来显示图像。

这就是我要做的:

  1. 在 Controller 类上创建一个属性来存储当前的组合框选择,可能是整数或字符串。
  2. 连接到组合框插槽的信号变化。 (简单方法:右键单击编辑器中的组合框并选择“转到插槽”,然后选择 currentIndexChanged(int index) 或字符串变体。参见 documentation)
  3. 在插槽中保持我们的变量更新,以便每次更改组合框上的值时,您也会更改将存储其当前状态的变量。
  4. 为按钮创建一个插槽(与组合框相同。使用信号 clicked())。在插槽中,您可以在 QLabel 中插入图片。
  5. 设置图片:

    QPixmap image("/path/to/image/chosen/image.jpg"); //choose the path accordingly to the variable stored that mirrors the state of the combobox.
    ui->imageLabel->setPixmap(image); //change imageLabel to the name of your label.
  6. 一切顺利。

关于c++ - 如何将 Qt 组合框与按钮和某种显示图片的小部件连接起来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41210917/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com