mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
8e21a65653
For UI responsiveness, we need to be able to run the planner in the background. This needs the planner state to be localized (and we need to pass a pointer around). In order to not let too many lines overrun (and to save typing in the future) I have renamed instances of struct deco_state to ds. Yes this should have gone to a separate commit but I accidentally commit --amend'ed it. Computing of planner variations is temporarily disabled. Unlock the planner when returning early So we don't deadlock in add dive and recreational mode (which use the planner without actually planning). Signed-off-by: Robert C. Helling <helling@atdotde.de>
57 lines
2.2 KiB
C
57 lines
2.2 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();
|
|
QStringList imageExtensionFilters();
|
|
char *intdup(int index);
|
|
extern "C" int parse_seabear_header(const char *filename, char **params, int pnr);
|
|
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);
|
|
extern "C" void lock_planner();
|
|
extern "C" void unlock_planner();
|
|
#endif // QTHELPER_H
|