OpenCPN Partial API docs
|
Configuration options for date and time formatting. More...
#include <ocpn_plugin.h>
Public Member Functions | |
DateTimeFormatOptions & | SetFormatString (const wxString &fmt) |
Sets the date/time format pattern string. | |
DateTimeFormatOptions & | SetTimezone (const wxString &tz) |
Sets the timezone mode for date/time display. | |
DateTimeFormatOptions & | SetLongitude (double lon) |
Sets the reference longitude for Local Mean Time (LMT) calculations. | |
Public Attributes | |
wxString | format_string = "$weekday_short_date_time" |
The format string for date/time. | |
wxString | time_zone = wxEmptyString |
The timezone to use when formatting the date/time. | |
double | longitude = NAN |
The longitude to use when formatting the date/time in Local Mean Time (LMT). | |
int | version = 1 |
Configuration options for date and time formatting.
This structure holds formatting options that determine how dates and times are displayed throughout the application. It allows configuring format strings, timezone settings, and geographic reference for local time calculations.
The format settings use standard date/time format specifiers (like strftime) for creating custom date/time representations based on user preferences. Timezone settings allow displaying times in UTC, system local time, or a custom zone based on the vessel's current position.
Definition at line 2779 of file ocpn_plugin.h.
|
inline |
Sets the date/time format pattern string.
format | String containing date/time format specifiers. |
This method configures the format pattern used when displaying dates and times. The following predefined format strings are supported:
The default is $weekday_short_date_time.
Definition at line 2843 of file ocpn_plugin.h.
|
inline |
Sets the reference longitude for Local Mean Time (LMT) calculations.
lon | Longitude in decimal degrees (-180 to +180) |
When timezone mode is set to local time at vessel position, this method provides the longitude used to calculate the Local Mean Time (LMT).
LMT is calculated based on the sun's position relative to the local meridian, with solar noon occurring when the sun crosses the meridian. Each 15 degrees of longitude represents approximately 1 hour of time difference.
Unlike standard timezone offsets which use fixed boundaries, LMT provides a continuous time representation based precisely on the vessel's longitude, useful for celestial navigation and traditional maritime timekeeping.
Definition at line 2888 of file ocpn_plugin.h.
|
inline |
Sets the timezone mode for date/time display.
timezone | Specifies the timezone mode:
|
This method configures how time values are adjusted for timezone display.
Definition at line 2866 of file ocpn_plugin.h.
wxString DateTimeFormatOptions::format_string = "$weekday_short_date_time" |
The format string for date/time.
The following predefined format strings are supported:
The default is $weekday_short_date_time.
The descriptors are resolved to localized date/time string representations. For example, $short_date is resolved to "12/31/2021" in the US locale and "31/12/2021" in the UK locale.
Definition at line 2800 of file ocpn_plugin.h.
double DateTimeFormatOptions::longitude = NAN |
The longitude to use when formatting the date/time in Local Mean Time (LMT).
The longitude is required when the time_zone is set to "LMT".
Definition at line 2821 of file ocpn_plugin.h.
wxString DateTimeFormatOptions::time_zone = wxEmptyString |
The timezone to use when formatting the date/time.
Supported options are:
Definition at line 2816 of file ocpn_plugin.h.
int DateTimeFormatOptions::version = 1 |
Definition at line 2823 of file ocpn_plugin.h.