feat: loading indicator

This commit is contained in:
2025-08-07 01:12:03 +02:00
parent 44f2753ae9
commit 289db0cbd8
10 changed files with 197 additions and 18 deletions
+16
View File
@@ -0,0 +1,16 @@
/*
* @Author: Uyanide pywang0608@foxmail.com
* @Date: 2025-08-07 00:32:25
* @LastEditTime: 2025-08-07 01:09:49
* @Description: A loading indicator widget with a progress bar.
*/
#include "loading_indicator.h"
LoadingIndicator::LoadingIndicator(QWidget *parent) : QWidget(parent),
ui(new Ui::LoadingIndicator) {
ui->setupUi(this);
}
LoadingIndicator::~LoadingIndicator() {
delete ui;
}