mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
d1572a8d95
strdup(qPrintable(s)) and copy_string(qPrintable(s)) were such common occurrences that they seem worthy of a short helper-function. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
102 lines
3.5 KiB
C
102 lines
3.5 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QTHELPER_H
|
|
#define QTHELPER_H
|
|
|
|
#include <stdint.h>
|
|
#include "dive.h"
|
|
#include "divelist.h"
|
|
|
|
// 1) Types and macros
|
|
|
|
#ifdef __GNUC__
|
|
#define __printf(x, y) __attribute__((__format__(__printf__, x, y)))
|
|
#else
|
|
#define __printf(x, y)
|
|
#endif
|
|
|
|
enum inertgas {N2, HE};
|
|
|
|
// 2) Functions visible only to C++ parts
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include <QMultiMap>
|
|
#include <QString>
|
|
#include <QTranslator>
|
|
#include <QDir>
|
|
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);
|
|
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);
|
|
QString hashString(const char *filename);
|
|
void learnImages(const QDir dir, int max_recursions);
|
|
void add_hash(const QString &filename, const QByteArray &hash);
|
|
void hashPicture(struct picture *picture);
|
|
extern "C" char *hashstring(const char *filename);
|
|
QString localFilePath(const QString &originalFilename);
|
|
void learnHash(const QString &originalName, const QString &localName, const QByteArray &hash);
|
|
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(const QByteArray &state);
|
|
void init_proxy();
|
|
QString getUUID();
|
|
QStringList imageExtensionFilters();
|
|
char *intdup(int index);
|
|
char *copy_qstring(const QString &);
|
|
__printf(1, 2) QString asprintf_loc(const char *cformat, ...);
|
|
__printf(1, 0) QString vasprintf_loc(const char *cformat, va_list ap);
|
|
#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);
|
|
void register_hash(const char *filename, const char *hash);
|
|
bool picture_exists(struct picture *picture);
|
|
char *move_away(const char *path);
|
|
const char *local_file_path(struct picture *picture);
|
|
void savePictureLocal(struct picture *picture, const char *hash, const char *data, int len);
|
|
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);
|
|
const char *get_current_date();
|
|
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();
|
|
__printf(3, 4) int snprintf_loc(char *dst, size_t size, const char *cformat, ...);
|
|
__printf(3, 0) int vsnprintf_loc(char *dst, size_t size, const char *cformat, va_list ap);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // QTHELPER_H
|