#include "widget.h" #include "ui_widget.h" #include <QTime> Widget::Widget(QWidget *parent) : QWidget(parent) , ui(new Ui::Widget) { ui->setupUi(this); //显示系统时间 //实例化对象 this->timer=new QTimer(this); QString curtime=QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss"); //信号和槽函数关联 connect(this->timer,&QTimer::timeout,this,&Widget::update_time); //启动定时器 this->timer->start(1000); //启动计时器 this->count=0; //实例化对象 this->timer2=new QTimer(this); //信号和槽函数关联 connect(this->timer2,&QTimer::timeout,this,&Widget::update_time2); //开始计时 this->timer2->start(1000); } Widget::~Widget() { delete ui; } void Widget::on_home_btn_clicked() { //首页 } void Widget::on_per_btn_clicked() { //上一页 } void Widget::on_next_btn_clicked() { //下一页 } void Widget::on_last_btn_clicked() { //尾页 } void Widget::update_time() { //获取系统时间 QString curtime=QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss"); //显示 this->ui->time_lab->setText(curtime); } void Widget::update_time2() { //计时 this->count++; QTime time(0,0,0,0); //QTime转换成QString QString sec=time.addSecs(this->count).toString("mm:ss"); //更新到LCDNumber显示 this->ui->lcdNumber->display(sec); }增加代码使用QStringList实现电子相册
时间: 2023-06-16 18:07:42 浏览: 95
QT.rar_Qt clock
在Widget类中添加一个QStringList成员变量,用于存储相册中的图片路径:
```c++
private:
Ui::Widget *ui;
QTimer *timer; //系统时间定时器
QTimer *timer2; //计时器
int count; //计时器计数器
QStringList photoList; //相册中的图片路径
```
在Widget类的构造函数中初始化photoList:
```c++
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{
ui->setupUi(this);
//显示系统时间
//实例化对象
this->timer=new QTimer(this);
QString curtime=QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss");
//信号和槽函数关联
connect(this->timer,&QTimer::timeout,this,&Widget::update_time);
//启动定时器
this->timer->start(1000);
//启动计时器
this->count=0;
//实例化对象
this->timer2=new QTimer(this);
//信号和槽函数关联
connect(this->timer2,&QTimer::timeout,this,&Widget::update_time2);
//开始计时
this->timer2->start(1000);
//初始化相册图片路径
this->photoList.append(":/images/photo1.jpg");
this->photoList.append(":/images/photo2.jpg");
this->photoList.append(":/images/photo3.jpg");
this->photoList.append(":/images/photo4.jpg");
this->photoList.append(":/images/photo5.jpg");
this->photoList.append(":/images/photo6.jpg");
}
```
在Widget类的头文件中添加一个私有函数showNextPhoto(),用于显示相册中的下一张照片:
```c++
private:
void showNextPhoto();
```
在showNextPhoto()函数中,使用QPixmap加载相册中的下一张照片,并显示在QLabel控件中:
```c++
void Widget::showNextPhoto()
{
static int index = 0;
if (index >= this->photoList.size()) {
index = 0;
}
QPixmap pixmap(this->photoList.at(index));
this->ui->photo_label->setPixmap(pixmap.scaled(this->ui->photo_label->size(), Qt::KeepAspectRatio));
index++;
}
```
在Widget类的头文件中添加一个私有槽函数on_show_btn_clicked(),用于处理“显示”按钮的点击事件。在该槽函数中调用showNextPhoto()函数显示相册中的下一张照片:
```c++
private slots:
void on_show_btn_clicked();
```
在Widget类的源文件中实现on_show_btn_clicked()槽函数:
```c++
void Widget::on_show_btn_clicked()
{
this->showNextPhoto();
}
```
最后,在widget.ui文件中添加一个QLabel控件用于显示相册中的照片,并添加一个QPushButton控件用于触发显示操作。将QPushButton控件的clicked()信号与Widget类的on_show_btn_clicked()槽函数关联,即可实现电子相册的功能。
阅读全文