|
@@ -26,10 +26,15 @@ MainAndSecondaryCamerasWnd::MainAndSecondaryCamerasWnd(QWidget *parent)
|
|
|
lastLastGroupId = settings.value("LastLastGroupId", 0).toInt();
|
|
|
settings.endGroup();
|
|
|
|
|
|
- QStringList a = getImageslist();
|
|
|
- qDebug() << a;
|
|
|
+ QString buildDirPath = QCoreApplication::applicationDirPath();
|
|
|
+ QDir buildDirectory(buildDirPath);
|
|
|
+ QStringList files = getImageslist(buildDirectory.filePath("photos"));
|
|
|
+ for (const QString& file : files) {
|
|
|
+ qDebug() << file;
|
|
|
+ }
|
|
|
ui->control_r->HideOrShowPage(false);
|
|
|
ui->control_L->HideOrShowPage(false);
|
|
|
+ ui->viewwidgetgroup_L->setBlueBord();
|
|
|
qApp->installEventFilter(this);
|
|
|
}
|
|
|
|
|
@@ -69,7 +74,21 @@ void MainAndSecondaryCamerasWnd::initFrom()
|
|
|
lastIndex = lastWndType;
|
|
|
lastGroupId = LastGroup;
|
|
|
|
|
|
+ QSettings settings("YourCompany", "YourApplication_");
|
|
|
+ int groupId = settings.value("GroupId", 0).toInt();
|
|
|
+ int index = settings.value("Index", 0).toInt();
|
|
|
+
|
|
|
checkSettings();
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ if (lastIndex == 1) {
|
|
|
+ GetCurrentSelectSlots(lastGroupId, lastIndex);
|
|
|
+ }
|
|
|
+ if(index == 1){
|
|
|
+ GetCurrentSelectSlots(groupId, index);
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::InitPage()
|
|
@@ -91,7 +110,7 @@ void MainAndSecondaryCamerasWnd::InitPage()
|
|
|
//JMessageTip::Message_warning("a");
|
|
|
}
|
|
|
QList<int> numbers;
|
|
|
- nSize = 8;
|
|
|
+
|
|
|
for (int i = 1; i <= nSize; i++)
|
|
|
{
|
|
|
numbers.push_back(i);
|
|
@@ -407,7 +426,7 @@ void MainAndSecondaryCamerasWnd::UpdataLightJoystickSwitchPage()
|
|
|
{
|
|
|
bShow = true;
|
|
|
}
|
|
|
- Fun(m_veCurrentSelectGroup[1].pSelectGroup,ui->control_L, ui->viewwidgetgroup_R, bShow);
|
|
|
+ Fun(m_veCurrentSelectGroup[1].pSelectGroup,ui->control_r, ui->viewwidgetgroup_R, bShow);
|
|
|
|
|
|
}
|
|
|
}
|
|
@@ -646,21 +665,19 @@ void MainAndSecondaryCamerasWnd::CheckIs()
|
|
|
showAndHide_L();
|
|
|
}*/
|
|
|
}
|
|
|
-QStringList MainAndSecondaryCamerasWnd::getImageslist() {
|
|
|
- // 指定图片文件夹路径
|
|
|
- QString folderPath = "photos/";
|
|
|
+QStringList MainAndSecondaryCamerasWnd::getImageslist(const QString& path) {
|
|
|
|
|
|
// 创建 QDir 对象
|
|
|
- QDir dir(folderPath);
|
|
|
+ QDir dir(path);
|
|
|
|
|
|
// 检查文件夹是否存在
|
|
|
if (!dir.exists()) {
|
|
|
- qWarning() << "Folder does not exist:" << folderPath;
|
|
|
+ qWarning() << "Folder does not exist:" ;
|
|
|
}
|
|
|
|
|
|
// 获取文件夹中的所有图片文件
|
|
|
QStringList filters;
|
|
|
filters << "*.png" << "*.jpg" << "*.jpeg" << "*.bmp" << "*.gif"; // 添加你需要的图片格式
|
|
|
- QStringList images = dir.entryList(filters, QDir::Files);
|
|
|
- return images;
|
|
|
+ QStringList fileList = dir.entryList(filters, QDir::Files);
|
|
|
+ return fileList;
|
|
|
}
|