mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
0dfa448d8c
Moving the GUI independent Seabear import functionality to Subsurface core. This will allow Robert to call it directly from download from DC. Tested with H3 against released and daily versions of Subsurface. The result differs somewhat, but it is actually fixing 2 bugs: - Temperature was mis-interpreted previously - Sample interval for a dive with 1 second interval was parsed incorrectly Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
52 lines
1.9 KiB
C
52 lines
1.9 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QTHELPER_H
|
|
#define QTHELPER_H
|
|
|
|
#include <QMultiMap>
|
|
#include <QString>
|
|
#include <stdint.h>
|
|
#include "dive.h"
|
|
#include "divelist.h"
|
|
#include <QTranslator>
|
|
#include <QDir>
|
|
|
|
// global pointers for our translation
|
|
extern QTranslator *qtTranslator, *ssrfTranslator;
|
|
|
|
QString weight_string(int weight_in_grams);
|
|
QString distance_string(int distanceInMeters);
|
|
bool gpsHasChanged(struct dive *dive, struct dive *master, const QString &gps_text, bool *parsed_out = 0);
|
|
extern "C" const char *printGPSCoords(int lat, int lon);
|
|
extern "C" const char *get_current_date();
|
|
QList<int> getDivesInTrip(dive_trip_t *trip);
|
|
QString get_gas_string(struct gasmix gas);
|
|
QString get_divepoint_gas_string(struct dive *d, const divedatapoint& dp);
|
|
void read_hashes();
|
|
void write_hashes();
|
|
void updateHash(struct picture *picture);
|
|
QByteArray hashFile(const QString filename);
|
|
void learnImages(const QDir dir, int max_recursions);
|
|
void add_hash(const QString filename, QByteArray hash);
|
|
void hashPicture(struct picture *picture);
|
|
QString localFilePath(const QString originalFilename);
|
|
QString fileFromHash(const char *hash);
|
|
void learnHash(struct picture *picture, QByteArray hash);
|
|
extern "C" void cache_picture(struct picture *picture);
|
|
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);
|
|
int getCloudURL(QString &filename);
|
|
bool parseGpsText(const QString &gps_text, double *latitude, double *longitude);
|
|
QByteArray getCurrentAppState();
|
|
void setCurrentAppState(QByteArray state);
|
|
extern "C" bool in_planner();
|
|
extern "C" enum deco_mode decoMode();
|
|
extern "C" void subsurface_mkdir(const char *dir);
|
|
void init_proxy();
|
|
QString getUUID();
|
|
char *intdup(int index);
|
|
extern "C" int parse_seabear_header(const char *filename, char **params, int pnr);
|
|
|
|
#endif // QTHELPER_H
|