QStringList images; images.append(":/images/image1.jpg"); images.append(":/images/image2.jpg"); images.append(":/images/image3.jpg"); images.append(":/images/image4.jpg"); images.append(":/images/image5.jpg"); images.append(":/images/image6.jpg"); images.append(":/images/image7.jpg"); images.append(":/images/image8.jpg"); images.append(":/images/image9.jpg"); images.append(":/images/image10.jpg"); //保存图片列表到成员变量中 this->images = images; //设置初始显示图片 this->current_image_index = 0; this->ui->image_label->setPixmap(QPixmap(this->images.at(this->current_image_index))); 然后添加以下槽函数实现图片切换: 复制void Widget::on_previous_btn_clicked() { //切换到上一张图片 this->current_image_index--; if (this->current_image_index < 0) { this->current_image_index = this->images.size() - 1; } this->ui->image_label->setPixmap(QPixmap(this->images.at(this->current_image_index))); } void Widget::on_next_btn_clicked() { //切换到下一张图片 this->current_image_index++; if (this->current_image_index >= this->images.size()) { this->current_image_index = 0; } this->ui->image_label->setPixmap(QPixmap(this->images.at(this->current_image_index))); } 最后在.ui文件中添加两个按钮,命名为previous_btn和next_btn,并将它们分别与on_previous_btn_clicked()和on_next_btn_clicked()槽函数关联即可。补全头文件
时间: 2023-06-16 13:06:03 浏览: 103
#include <QWidget>
#include <QStringList>
#include <QPixmap>
namespace Ui {
class Widget;
}
class Widget : public QWidget {
Q_OBJECT
public:
explicit Widget(QWidget *parent = nullptr);
~Widget();
private slots:
void on_previous_btn_clicked();
void on_next_btn_clicked();
private:
Ui::Widget *ui;
QStringList images;
int current_image_index;
};
相关问题
#include "viewer.h" Viewer::Viewer(QWidget *parent):QLabel{parent} {} //打开 void Viewer::openFile(QString fileName) { m_image.load(fileName); m_pixmap = QPixmap::fromImage(m_image.scaled(size(),Qt::KeepAspectRatio)); setPixmap(m_pixmap); setScaledContents(true); } void Viewer::addPaths(const QStringList &paths) { m_paths.append(paths); // 将传入的图片路径添加到m_paths中 } //void Viewer::displayImage() //{ // m_image.load("../images/01.jpg"); //这里硬编码了要显示图片的路径, //后续开发时需要将load的实参修改为保存了路径的程序对象。 // m_pixmap = QPixmap::fromImage(m_image.scaled(size(),Qt::KeepAspectRatio)); // setPixmap(m_pixmap); // setScaledContents(true); //} //下一张 void Viewer::nextImage() { m_currentIndex = (m_currentIndex + 1) % m_paths.size(); // 计算下一张图片的索引 QPixmap m_pixmap(m_paths[m_currentIndex]); // 创建QPixmap对象 setPixmap(m_pixmap); // 设置QLabel的显示内容为该QPixmap对象 } //上一张 void Viewer::previousImage() { }
在上面的代码中,`Viewer`类的`openFile`方法可以打开指定文件名的图片,并将其显示在`QLabel`上。`addPaths`方法可以将传入的图片路径添加到`m_paths`中。`nextImage`方法可以显示下一张图片,`previousImage`方法可以显示上一张图片,你可以在`previousImage`方法中实现与`nextImage`类似的逻辑,计算出上一张图片的索引并显示该图片:
```cpp
void Viewer::previousImage() {
m_currentIndex = (m_currentIndex - 1 + m_paths.size()) % m_paths.size(); // 计算上一张图片的索引
QPixmap m_pixmap(m_paths[m_currentIndex]); // 创建QPixmap对象
setPixmap(m_pixmap); // 设置QLabel的显示内容为该QPixmap对象
}
```
在上述代码中,`m_currentIndex`表示当前显示的图片在路径列表中的索引。在`previousImage`方法中,通过计算出上一张图片的索引,然后使用该索引获取对应的图片路径并创建QPixmap对象,最后设置QLabel的显示内容为该QPixmap对象即可实现显示上一张图片的效果。
#include "viewer.h" Viewer::Viewer(QWidget *parent):QLabel{parent} {} //打开 void Viewer::openFile(QString fileName) { m_image.load(fileName); m_pixmap = QPixmap::fromImage(m_image.scaled(size(),Qt::KeepAspectRatio)); setPixmap(m_pixmap); setScaledContents(true); } void Viewer::addPaths(const QStringList &paths) { } //void Viewer::displayImage() //{ // m_image.load("../images/01.jpg"); //这里硬编码了要显示图片的路径, //后续开发时需要将load的实参修改为保存了路径的程序对象。 // m_pixmap = QPixmap::fromImage(m_image.scaled(size(),Qt::KeepAspectRatio)); // setPixmap(m_pixmap); // setScaledContents(true); //} //下一张 void Viewer::nextImage() { } //上一张 void Viewer::previousImage() { }
在上述代码中,`Viewer`类的`addPaths`方法需要实现将传入的图片路径添加到`m_paths`成员变量中的功能,具体实现如下:
```cpp
void Viewer::addPaths(const QStringList &paths) {
m_paths.append(paths); // 将传入的图片路径添加到m_paths中
}
```
在`addPaths`方法中,使用`QStringList`类的`append`方法将传入的图片路径列表添加到`m_paths`成员变量中。
另外,`Viewer`类的`nextImage`方法可以实现显示下一张图片的功能,具体实现如下:
```cpp
void Viewer::nextImage() {
if (m_paths.isEmpty()) { // 如果图片路径列表为空,则直接返回
return;
}
m_currentIndex = (m_currentIndex + 1) % m_paths.size(); // 计算下一张图片的索引
m_image.load(m_paths[m_currentIndex]); // 加载对应的图片
m_pixmap = QPixmap::fromImage(m_image.scaled(size(),Qt::KeepAspectRatio)); // 将图片转换为QPixmap对象并缩放
setPixmap(m_pixmap); // 设置QLabel的显示内容为该QPixmap对象
}
```
在上述代码中,`m_paths`存储了所有图片的路径,`m_currentIndex`表示当前显示的图片在路径列表中的索引。在`nextImage`方法中,先判断`m_paths`是否为空,如果为空则直接返回。然后计算出下一张图片的索引,使用该索引获取对应的图片路径并加载该图片。接着,将该图片转换为QPixmap对象并进行缩放,最后设置QLabel的显示内容为该QPixmap对象即可实现显示下一张图片的功能。
阅读全文