Move source files to src directory

This commit is contained in:
2025-05-30 16:45:35 +02:00
parent ce67b35bfa
commit a0422683bd
64 changed files with 90 additions and 41 deletions
+28
View File
@@ -0,0 +1,28 @@
#ifndef PLATESOLVINGSETTINGS_H
#define PLATESOLVINGSETTINGS_H
#include <QDialog>
#include <QFileSystemWatcher>
#include "httpdownloader.h"
namespace Ui {
class PlateSolvingSettings;
}
class PlateSolvingSettings : public QDialog
{
Q_OBJECT
HttpDownloader *_download;
QFileSystemWatcher *_watcher;
public:
explicit PlateSolvingSettings(QWidget *parent = nullptr);
~PlateSolvingSettings();
void checkIndexFiles();
QString indexDirectory() const;
protected slots:
void progress(int percent, int files);
private:
Ui::PlateSolvingSettings *_ui;
};
#endif // PLATESOLVINGSETTINGS_H