QT子窗口中有个按钮和标签,点击按钮,标签中的图片会显示在主窗口中的标签上显示,且自适应标签的大小,C++完成
时间: 2024-02-25 21:56:45 浏览: 146
外部exe程序嵌入到Qt界面,点击按钮在QT中运行显示
这个功能可以通过以下步骤实现:
1.在主窗口中添加一个标签,用于显示图片。
```cpp
QLabel* imageLabel = new QLabel(this);
imageLabel->setScaledContents(true);
```
2.在子窗口中添加一个按钮和标签,用于选择和显示图片。
```cpp
QLabel* subImageLabel = new QLabel(this);
QPushButton* selectButton = new QPushButton("Select Image", this);
```
3.将按钮的clicked()信号连接到槽函数,用于打开文件对话框选择图片文件。
```cpp
connect(selectButton, &QPushButton::clicked, this, &SubWindow::onSelectButtonClicked);
```
4.在槽函数中打开文件对话框选择图片文件,并将选择的图片显示在子窗口中的标签上。
```cpp
void SubWindow::onSelectButtonClicked()
{
QString imagePath = QFileDialog::getOpenFileName(this, "Select Image", ".", "Image Files (*.png *.jpg *.bmp)");
if (!imagePath.isEmpty()) {
QPixmap pixmap(imagePath);
subImageLabel->setPixmap(pixmap);
}
}
```
5.在子窗口中添加一个函数,用于获取选择的图片。
```cpp
QPixmap SubWindow::getSelectedImage()
{
return subImageLabel->pixmap()->scaled(IMAGE_SIZE, Qt::KeepAspectRatio);
}
```
6.在主窗口中添加一个函数,用于显示选择的图片。
```cpp
void MainWindow::showSelectedImage()
{
QPixmap pixmap = subWindow->getSelectedImage();
imageLabel->setPixmap(pixmap);
}
```
7.在主窗口中将子窗口的选择图片信号连接到显示图片的槽函数。
```cpp
connect(subWindow, &SubWindow::imageSelected, this, &MainWindow::showSelectedImage);
```
8.在子窗口中添加一个信号,用于传递选择的图片。
```cpp
signals:
void imageSelected();
```
9.在槽函数中发射信号,将选择的图片传递给主窗口。
```cpp
void SubWindow::onSelectButtonClicked()
{
QString imagePath = QFileDialog::getOpenFileName(this, "Select Image", ".", "Image Files (*.png *.jpg *.bmp)");
if (!imagePath.isEmpty()) {
QPixmap pixmap(imagePath);
subImageLabel->setPixmap(pixmap);
emit imageSelected();
}
}
```
完成以上步骤后,点击子窗口中的选择图片按钮,选择图片后,图片会自适应显示在主窗口中的标签上。
阅读全文