2013-06-17 15:58:26 -07:00
|
|
|
#ifndef QTHELPER_H
|
|
|
|
#define QTHELPER_H
|
|
|
|
|
|
|
|
#include <QMultiMap>
|
|
|
|
#include <QString>
|
|
|
|
#include <stdint.h>
|
2013-10-04 21:39:33 +03:00
|
|
|
#include "dive.h"
|
2013-11-26 15:44:18 -02:00
|
|
|
#include "divelist.h"
|
2013-10-08 22:25:02 -07:00
|
|
|
#include <QTranslator>
|
2015-02-26 14:39:42 +01:00
|
|
|
#include <QDir>
|
2013-10-08 22:25:02 -07:00
|
|
|
|
|
|
|
// global pointers for our translation
|
|
|
|
extern QTranslator *qtTranslator, *ssrfTranslator;
|
2013-06-17 15:58:26 -07:00
|
|
|
|
2013-10-04 21:39:33 +03:00
|
|
|
QString weight_string(int weight_in_grams);
|
2014-06-02 18:13:50 -07:00
|
|
|
bool gpsHasChanged(struct dive *dive, struct dive *master, const QString &gps_text, bool *parsed_out = 0);
|
2015-02-14 17:50:48 -08:00
|
|
|
extern "C" const char *printGPSCoords(int lat, int lon);
|
2013-11-26 15:44:18 -02:00
|
|
|
QList<int> getDivesInTrip(dive_trip_t *trip);
|
2015-05-28 16:23:49 -03:00
|
|
|
QString get_gas_string(struct gasmix gas);
|
|
|
|
QString get_divepoint_gas_string(const divedatapoint& dp);
|
2015-02-26 14:39:42 +01:00
|
|
|
void read_hashes();
|
|
|
|
void write_hashes();
|
|
|
|
void updateHash(struct picture *picture);
|
|
|
|
QByteArray hashFile(const QString filename);
|
2015-02-26 14:44:27 +01:00
|
|
|
void learnImages(const QDir dir, int max_recursions, bool recursed);
|
2015-03-02 16:17:51 +01:00
|
|
|
void add_hash(const QString filename, QByteArray hash);
|
2015-02-26 14:39:42 +01:00
|
|
|
QString localFilePath(const QString originalFilename);
|
|
|
|
QString fileFromHash(char *hash);
|
2015-03-02 16:18:16 +01:00
|
|
|
void learnHash(struct picture *picture, QByteArray hash);
|
2015-05-28 17:17:09 -03:00
|
|
|
weight_t string_to_weight(const char *str);
|
|
|
|
depth_t string_to_depth(const char *str);
|
|
|
|
pressure_t string_to_pressure(const char *str);
|
|
|
|
volume_t string_to_volume(const char *str, pressure_t workp);
|
|
|
|
fraction_t string_to_fraction(const char *str);
|
2015-06-01 13:09:45 -07:00
|
|
|
int getCloudURL(QString &filename);
|
2013-06-17 15:58:26 -07:00
|
|
|
#endif // QTHELPER_H
|