Intellipap & FP Icon autoscanner Detect() functions

This commit is contained in:
Mark Watkins 2014-04-29 05:24:39 +10:00
parent a155efa878
commit 22a9736598
2 changed files with 44 additions and 12 deletions

View File

@ -20,6 +20,8 @@
extern QProgressBar *qprogress;
const QString FPHCARE = "FPHCARE";
FPIcon::FPIcon(Profile *p, MachineID id)
: CPAP(p, id)
{
@ -39,6 +41,28 @@ FPIconLoader::~FPIconLoader()
{
}
bool FPIconLoader::Detect(const QString & givenpath)
{
QDir dir(givenpath);
if (!dir.exists()) {
return false;
}
// F&P Icon have a folder called FPHCARE in the root directory
if (!dir.exists(FPHCARE)) {
return false;
}
// CHECKME: I can't access F&P ICON data right now
if (!dir.exists("FPCARE/ICON")) {
return false;
}
return true;
}
int FPIconLoader::Open(QString &path, Profile *profile)
{
QString newpath;
@ -49,12 +73,10 @@ int FPIconLoader::Open(QString &path, Profile *profile)
path.chop(1);
}
QString dirtag = "FPHCARE";
if (path.endsWith("/" + dirtag)) {
if (path.endsWith("/" + FPHCARE)) {
newpath = path;
} else {
newpath = path + "/" + dirtag;
newpath = path + "/" + FPHCARE;
}
newpath += "/ICON/";
@ -899,12 +921,6 @@ Machine *FPIconLoader::CreateMachine(QString serial, Profile *profile)
return m;
}
bool FPIconLoader::Detect(const QString & path)
{
return false;
}
bool fpicon_initialized = false;
void FPIconLoader::Register()
{

View File

@ -36,11 +36,27 @@ IntellipapLoader::~IntellipapLoader()
{
}
bool IntellipapLoader::Detect(const QString & path)
bool IntellipapLoader::Detect(const QString & givenpath)
{
QDir dir(givenpath);
if (!dir.exists()) {
return false;
}
// Intellipap has a folder called SL in the root directory
if (!dir.cd("SL")) {
return false;
}
// Check for the settings file inside the SL folder
if (!dir.exists("SET1")) {
return false;
}
return true;
}
int IntellipapLoader::Open(QString &path, Profile *profile)
{
// Check for SL directory