Colour targets: Revert an optimisation from almost 18 months ago that actually turned...
[Rockbox.git] / rbutil / rbutilqt / autodetection.h
blob1fbe47f9a79912e903771ce2d3fc1eacf91c1677
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Wenger
10 * $Id$
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
23 #ifndef AUTODETECTION_H_
24 #define AUTODETECTION_H_
26 #include <QtCore>
27 #include "rbsettings.h"
29 #include "../ipodpatcher/ipodpatcher.h"
30 #include "../sansapatcher/sansapatcher.h"
32 class Autodetection :public QObject
34 Q_OBJECT
36 public:
37 Autodetection(QObject* parent=0);
39 void setSettings(RbSettings* sett) {settings = sett;}
41 bool detect();
43 QString getDevice() {return m_device;}
44 QString getMountPoint() {return m_mountpoint;}
45 QString errdev(void) { return m_errdev; }
46 QString incompatdev(void) { return m_incompat; }
48 private:
49 QStringList getMountpoints(void);
50 QString resolveMountPoint(QString);
51 bool detectUsb(void);
52 bool detectAjbrec(QString);
54 QString m_device;
55 QString m_mountpoint;
56 QString m_errdev;
57 QString m_incompat;
58 QList<int> m_usbconid;
59 RbSettings* settings;
63 #endif /*AUTODETECTION_H_*/