2017-04-27 18:24:53 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-06-17 22:58:26 +00:00
|
|
|
#ifndef QTHELPER_H
|
|
|
|
#define QTHELPER_H
|
|
|
|
|
|
|
|
#include <QMultiMap>
|
|
|
|
#include <QString>
|
|
|
|
#include <stdint.h>
|
2013-10-04 18:39:33 +00:00
|
|
|
#include "dive.h"
|
2013-11-26 17:44:18 +00:00
|
|
|
#include "divelist.h"
|
2013-10-09 05:25:02 +00:00
|
|
|
#include <QTranslator>
|
2015-02-26 13:39:42 +00:00
|
|
|
#include <QDir>
|
2013-10-09 05:25:02 +00:00
|
|
|
|
2013-10-04 18:39:33 +00:00
|
|
|
QString weight_string(int weight_in_grams);
|
2015-07-14 18:35:04 +00:00
|
|
|
QString distance_string(int distanceInMeters);
|
2014-06-03 01:13:50 +00:00
|
|
|
bool gpsHasChanged(struct dive *dive, struct dive *master, const QString &gps_text, bool *parsed_out = 0);
|
2015-02-15 01:50:48 +00:00
|
|
|
extern "C" const char *printGPSCoords(int lat, int lon);
|
2017-03-31 06:14:36 +00:00
|
|
|
extern "C" const char *get_current_date();
|
2013-11-26 17:44:18 +00:00
|
|
|
QList<int> getDivesInTrip(dive_trip_t *trip);
|
2015-05-28 19:23:49 +00:00
|
|
|
QString get_gas_string(struct gasmix gas);
|
2016-07-06 12:40:28 +00:00
|
|
|
QString get_divepoint_gas_string(struct dive *d, const divedatapoint& dp);
|
2015-02-26 13:39:42 +00:00
|
|
|
void read_hashes();
|
|
|
|
void write_hashes();
|
|
|
|
void updateHash(struct picture *picture);
|
|
|
|
QByteArray hashFile(const QString filename);
|
2016-03-07 00:32:12 +00:00
|
|
|
void learnImages(const QDir dir, int max_recursions);
|
2015-03-02 15:17:51 +00:00
|
|
|
void add_hash(const QString filename, QByteArray hash);
|
2016-01-09 15:27:23 +00:00
|
|
|
void hashPicture(struct picture *picture);
|
2015-02-26 13:39:42 +00:00
|
|
|
QString localFilePath(const QString originalFilename);
|
2017-02-21 09:00:16 +00:00
|
|
|
QString fileFromHash(const char *hash);
|
2015-03-02 15:18:16 +00:00
|
|
|
void learnHash(struct picture *picture, QByteArray hash);
|
2015-09-17 14:56:58 +00:00
|
|
|
extern "C" void cache_picture(struct picture *picture);
|
2015-05-28 20:17:09 +00: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 20:09:45 +00:00
|
|
|
int getCloudURL(QString &filename);
|
2015-07-31 01:38:28 +00:00
|
|
|
bool parseGpsText(const QString &gps_text, double *latitude, double *longitude);
|
2015-08-22 14:05:13 +00:00
|
|
|
QByteArray getCurrentAppState();
|
|
|
|
void setCurrentAppState(QByteArray state);
|
2015-08-19 21:12:30 +00:00
|
|
|
extern "C" bool in_planner();
|
2017-01-07 02:01:14 +00:00
|
|
|
extern "C" enum deco_mode decoMode();
|
2015-10-13 18:34:26 +00:00
|
|
|
extern "C" void subsurface_mkdir(const char *dir);
|
2015-11-14 18:43:37 +00:00
|
|
|
void init_proxy();
|
2015-11-19 01:57:13 +00:00
|
|
|
QString getUUID();
|
2017-05-05 19:13:46 +00:00
|
|
|
QStringList imageExtensionFilters();
|
2017-05-07 06:41:27 +00:00
|
|
|
char *intdup(int index);
|
2017-05-07 10:41:09 +00:00
|
|
|
extern "C" int parse_seabear_header(const char *filename, char **params, int pnr);
|
2017-08-25 21:21:27 +00:00
|
|
|
enum inertgas {N2, HE};
|
|
|
|
extern "C" double cache_value(int tissue, int timestep, enum inertgas gas);
|
|
|
|
extern "C" void cache_insert(int tissue, int timestep, enum inertgas gas, double value);
|
2017-11-22 19:42:33 +00:00
|
|
|
extern "C" void lock_planner();
|
|
|
|
extern "C" void unlock_planner();
|
2013-06-17 22:58:26 +00:00
|
|
|
#endif // QTHELPER_H
|