2017-04-27 20:24:53 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-06-17 15:58:26 -07:00
|
|
|
#ifndef QTHELPER_H
|
|
|
|
#define QTHELPER_H
|
|
|
|
|
|
|
|
#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"
|
2018-02-24 23:28:13 +01:00
|
|
|
|
2018-03-14 20:37:19 +01:00
|
|
|
// 1) Types
|
2018-02-24 23:28:13 +01:00
|
|
|
|
|
|
|
enum inertgas {N2, HE};
|
|
|
|
|
|
|
|
// 2) Functions visible only to C++ parts
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
#include <QMultiMap>
|
|
|
|
#include <QString>
|
2013-10-08 22:25:02 -07:00
|
|
|
#include <QTranslator>
|
2015-02-26 14:39:42 +01:00
|
|
|
#include <QDir>
|
2013-10-04 21:39:33 +03:00
|
|
|
QString weight_string(int weight_in_grams);
|
2015-07-14 11:35:04 -07:00
|
|
|
QString distance_string(int distanceInMeters);
|
2014-06-02 18:13:50 -07:00
|
|
|
bool gpsHasChanged(struct dive *dive, struct dive *master, const QString &gps_text, bool *parsed_out = 0);
|
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);
|
2016-07-06 22:40:28 +10:00
|
|
|
QString get_divepoint_gas_string(struct dive *d, const divedatapoint& dp);
|
2018-04-09 10:09:34 +02:00
|
|
|
QString get_taglist_string(struct tag_entry *tag_list);
|
2015-02-26 14:39:42 +01:00
|
|
|
void read_hashes();
|
|
|
|
void write_hashes();
|
|
|
|
void updateHash(struct picture *picture);
|
2018-02-17 15:55:50 +01:00
|
|
|
QByteArray hashFile(const QString &filename);
|
2018-02-18 16:22:34 +01:00
|
|
|
QString hashString(const char *filename);
|
2016-03-06 21:32:12 -03:00
|
|
|
void learnImages(const QDir dir, int max_recursions);
|
2018-02-17 15:55:50 +01:00
|
|
|
void add_hash(const QString &filename, const QByteArray &hash);
|
2016-01-09 16:27:23 +01:00
|
|
|
void hashPicture(struct picture *picture);
|
2018-02-18 14:07:15 +01:00
|
|
|
extern "C" char *hashstring(const char *filename);
|
2018-02-17 15:55:50 +01:00
|
|
|
QString localFilePath(const QString &originalFilename);
|
2018-02-18 14:57:42 +01:00
|
|
|
void learnHash(const QString &originalName, const QString &localName, const 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);
|
2015-07-30 22:38:28 -03:00
|
|
|
bool parseGpsText(const QString &gps_text, double *latitude, double *longitude);
|
2015-08-22 07:05:13 -07:00
|
|
|
QByteArray getCurrentAppState();
|
2018-02-17 15:55:50 +01:00
|
|
|
void setCurrentAppState(const QByteArray &state);
|
2015-11-14 10:43:37 -08:00
|
|
|
void init_proxy();
|
2015-11-18 17:57:13 -08:00
|
|
|
QString getUUID();
|
2017-05-05 21:13:46 +02:00
|
|
|
QStringList imageExtensionFilters();
|
2017-05-07 09:41:27 +03:00
|
|
|
char *intdup(int index);
|
2018-02-28 23:37:09 +01:00
|
|
|
char *copy_qstring(const QString &);
|
2018-02-24 23:28:13 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// 3) Functions visible to C and C++
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const char *printGPSCoords(int lat, int lon);
|
|
|
|
bool in_planner();
|
|
|
|
bool getProxyString(char **buffer);
|
|
|
|
bool canReachCloudServer();
|
|
|
|
void updateWindowTitle();
|
|
|
|
void subsurface_mkdir(const char *dir);
|
|
|
|
char *get_file_name(const char *fileName);
|
|
|
|
void copy_image_and_overwrite(const char *cfileName, const char *path, const char *cnewName);
|
|
|
|
char *hashstring(const char *filename);
|
2018-02-18 16:22:34 +01:00
|
|
|
void register_hash(const char *filename, const char *hash);
|
2018-02-24 23:28:13 +01:00
|
|
|
bool picture_exists(struct picture *picture);
|
|
|
|
char *move_away(const char *path);
|
|
|
|
const char *local_file_path(struct picture *picture);
|
2018-02-18 16:22:34 +01:00
|
|
|
void savePictureLocal(struct picture *picture, const char *hash, const char *data, int len);
|
2018-02-24 23:28:13 +01:00
|
|
|
void cache_picture(struct picture *picture);
|
|
|
|
char *cloud_url();
|
|
|
|
char *hashfile_name_string();
|
|
|
|
char *picturedir_string();
|
|
|
|
const char *subsurface_user_agent();
|
|
|
|
enum deco_mode decoMode();
|
|
|
|
int parse_seabear_header(const char *filename, char **params, int pnr);
|
2018-03-13 22:12:23 +01:00
|
|
|
char *get_current_date();
|
2018-02-24 23:28:13 +01:00
|
|
|
double cache_value(int tissue, int timestep, enum inertgas gas);
|
|
|
|
void cache_insert(int tissue, int timestep, enum inertgas gas, double value);
|
|
|
|
void print_qt_versions();
|
|
|
|
void lock_planner();
|
|
|
|
void unlock_planner();
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-06-17 15:58:26 -07:00
|
|
|
#endif // QTHELPER_H
|