mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Arguably, string handling in C is painful. Move the function that formats the "tooltip" of the current spot on the profile to the C++ string-format.cpp. Note: the actual code stays C with a few necessary adaptions concerning the translation machinery. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
// Various functions that format data into QStrings or QStringLists
|
|
#ifndef STRING_FORMAT_H
|
|
#define STRING_FORMAT_H
|
|
|
|
#include <utility>
|
|
#include <QStringList>
|
|
|
|
struct dive;
|
|
struct dive_trip;
|
|
struct plot_info;
|
|
|
|
QString formatSac(const dive *d);
|
|
QString formatNotes(const dive *d);
|
|
QString format_gps_decimal(const dive *d);
|
|
QStringList formatGetCylinder(const dive *d);
|
|
QStringList formatStartPressure(const dive *d);
|
|
QStringList formatEndPressure(const dive *d);
|
|
QStringList formatFirstGas(const dive *d);
|
|
QString formatGas(const dive *d);
|
|
QStringList formatFullCylinderList();
|
|
QStringList formatCylinders(const dive *d);
|
|
QString formatSumWeight(const dive *d);
|
|
QString formatWeightList(const dive *d);
|
|
QStringList formatWeights(const dive *d);
|
|
QString formatDiveDuration(const dive *d);
|
|
QString formatDiveGPS(const dive *d);
|
|
QString formatDiveDate(const dive *d);
|
|
QString formatDiveTime(const dive *d);
|
|
QString formatDiveDateTime(const dive *d);
|
|
QString formatDayOfWeek(int day);
|
|
QString formatTripTitle(const dive_trip *trip);
|
|
QString formatTripTitleWithDives(const dive_trip *trip);
|
|
std::pair<QString, int> formatProfileInfo(const dive *d, const plot_info *pi, int time);
|
|
|
|
#endif
|