summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/gpssync/gpsbabelbinary.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/gpssync/gpsbabelbinary.h')
-rw-r--r--kipi-plugins/gpssync/gpsbabelbinary.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/kipi-plugins/gpssync/gpsbabelbinary.h b/kipi-plugins/gpssync/gpsbabelbinary.h
new file mode 100644
index 0000000..3dc95ab
--- /dev/null
+++ b/kipi-plugins/gpssync/gpsbabelbinary.h
@@ -0,0 +1,66 @@
+/* ============================================================
+ *
+ * This file is a part of kipi-plugins project
+ * http://www.kipi-plugins.org
+ *
+ * Date : 2006-09-19
+ * Description : Autodetect gpsbabel binary program and version
+ *
+ * Copyright (C) 2006-2008 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ *
+ * This program is free software; you can redistribute it
+ * and/or modify it under the terms of the GNU General
+ * Public License as published by the Free Software Foundation;
+ * either version 2, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * ============================================================ */
+
+#ifndef GPSBABELBINARY_H
+#define GPSBABELBINARY_H
+
+// Qt includes.
+
+#include <qstring.h>
+#include <qobject.h>
+
+class KProcess;
+
+namespace KIPIGPSSyncPlugin
+{
+
+class GPSBabelBinaryPriv;
+
+class GPSBabelBinary : public QObject
+{
+ Q_OBJECT
+
+public:
+
+ GPSBabelBinary();
+ ~GPSBabelBinary();
+
+ static const char *path();
+ bool isAvailable() const;
+ QString version() const;
+ bool versionIsRight() const;
+ QString minimalVersion() const;
+
+ void checkSystem();
+
+private slots:
+
+ void slotReadStdoutFromGPSBabel(KProcess*, char*, int);
+
+private:
+
+ GPSBabelBinaryPriv *d;
+};
+
+} // namespace KIPIGPSSyncPlugin
+
+#endif // GPSBABELBINARY_H