/usr/include/libgweather-3.0/libgweather/gweather-weather.h is in libgweather-3-dev 3.10.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
/* weather.h - Public header for weather server functions.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see
* <http://www.gnu.org/licenses/>.
*/
#ifndef __WEATHER_H_
#define __WEATHER_H_
#ifndef GWEATHER_I_KNOW_THIS_IS_UNSTABLE
#error "libgweather should only be used if you understand that it's subject to change, and is not supported as a fixed API/ABI or as part of the platform"
#endif
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <libgweather/gweather-enums.h>
#include <libgweather/gweather-location.h>
G_BEGIN_DECLS
/**
* GWeatherProvider:
* @GWEATHER_PROVIDER_NONE: no provider, no weather information available
* @GWEATHER_PROVIDER_METAR: METAR office, providing current conditions worldwide
* @GWEATHER_PROVIDER_IWIN: US weather office, providing 7 days of forecast
* @GWEATHER_PROVIDER_YAHOO: Yahoo Weather Service, worldwide but non commercial only
* @GWEATHER_PROVIDER_YR_NO: Yr.no service, worldwide but requires attribution
* @GWEATHER_PROVIDER_OWM: OpenWeatherMap, worldwide and possibly more reliable, but requires attribution and is limited in the number of queries
* @GWEATHER_PROVIDER_ALL: enable all available providers
*/
typedef enum { /*< flags, underscore_name=gweather_provider >*/
GWEATHER_PROVIDER_NONE = 0,
GWEATHER_PROVIDER_METAR = 1,
GWEATHER_PROVIDER_IWIN = 1 << 2,
GWEATHER_PROVIDER_YAHOO = 1 << 3,
GWEATHER_PROVIDER_YR_NO = 1 << 4,
GWEATHER_PROVIDER_OWM = 1 << 5,
GWEATHER_PROVIDER_ALL = 31
} GWeatherProvider;
typedef struct _GWeatherInfo GWeatherInfo;
typedef struct _GWeatherInfoClass GWeatherInfoClass;
typedef struct _GWeatherInfoPrivate GWeatherInfoPrivate;
#define GWEATHER_TYPE_INFO (gweather_info_get_type ())
#define GWEATHER_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GWEATHER_TYPE_INFO, GWeatherInfo))
#define GWEATHER_IS_INFO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GWEATHER_TYPE_INFO))
#define GWEATHER_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GWEATHER_TYPE_INFO, GWeatherInfoClass))
#define GWEATHER_IS_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GWEATHER_TYPE_INFO))
#define GWEATHER_INFO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GWEATHER_TYPE_INFO, GWeatherInfoClass))
struct _GWeatherInfo {
/*< private >*/
GObject parent_instance;
GWeatherInfoPrivate *priv;
};
struct _GWeatherInfoClass {
/*< private >*/
GObjectClass parent_class;
/*< protected >*/
void (*updated) (GWeatherInfo *info);
};
GType gweather_info_get_type (void) G_GNUC_CONST;
GWeatherInfo * gweather_info_new (GWeatherLocation *location,
GWeatherForecastType type);
void gweather_info_update (GWeatherInfo *info);
void gweather_info_abort (GWeatherInfo *info);
void gweather_info_store_cache (void);
GWeatherProvider gweather_info_get_enabled_providers (GWeatherInfo *info);
void gweather_info_set_enabled_providers (GWeatherInfo *info,
GWeatherProvider providers);
gboolean gweather_info_is_valid (GWeatherInfo *info);
gboolean gweather_info_network_error (GWeatherInfo *info);
const GWeatherLocation * gweather_info_get_location (GWeatherInfo *info);
void gweather_info_set_location (GWeatherInfo *info,
GWeatherLocation *location);
gchar * gweather_info_get_location_name (GWeatherInfo *info);
gchar * gweather_info_get_update (GWeatherInfo *info);
gchar * gweather_info_get_sky (GWeatherInfo *info);
gchar * gweather_info_get_conditions (GWeatherInfo *info);
G_DEPRECATED_FOR(gweather_info_get_forecast_list)
gchar * gweather_info_get_forecast (GWeatherInfo *info);
gchar * gweather_info_get_temp (GWeatherInfo *info);
gchar * gweather_info_get_temp_min (GWeatherInfo *info);
gchar * gweather_info_get_temp_max (GWeatherInfo *info);
gchar * gweather_info_get_dew (GWeatherInfo *info);
gchar * gweather_info_get_humidity (GWeatherInfo *info);
gchar * gweather_info_get_wind (GWeatherInfo *info);
gchar * gweather_info_get_pressure (GWeatherInfo *info);
gchar * gweather_info_get_visibility (GWeatherInfo *info);
gchar * gweather_info_get_apparent (GWeatherInfo *info);
gchar * gweather_info_get_sunrise (GWeatherInfo *info);
gchar * gweather_info_get_sunset (GWeatherInfo *info);
GSList * gweather_info_get_forecast_list (GWeatherInfo *info);
GdkPixbufAnimation * gweather_info_get_radar (GWeatherInfo *info);
const gchar *gweather_info_get_attribution (GWeatherInfo *info);
gchar * gweather_info_get_temp_summary (GWeatherInfo *info);
gchar * gweather_info_get_weather_summary (GWeatherInfo *info);
const gchar * gweather_info_get_icon_name (GWeatherInfo *info);
const gchar * gweather_info_get_symbolic_icon_name (GWeatherInfo *info);
gint gweather_info_next_sun_event (GWeatherInfo *info);
gboolean gweather_info_is_daytime (GWeatherInfo *info);
/* values retrieving functions */
typedef enum { /*< underscore_name=gweather_wind_direction >*/
GWEATHER_WIND_INVALID = -1,
GWEATHER_WIND_VARIABLE,
GWEATHER_WIND_N,
GWEATHER_WIND_NNE,
GWEATHER_WIND_NE,
GWEATHER_WIND_ENE,
GWEATHER_WIND_E,
GWEATHER_WIND_ESE,
GWEATHER_WIND_SE,
GWEATHER_WIND_SSE,
GWEATHER_WIND_S,
GWEATHER_WIND_SSW,
GWEATHER_WIND_SW,
GWEATHER_WIND_WSW,
GWEATHER_WIND_W,
GWEATHER_WIND_WNW,
GWEATHER_WIND_NW,
GWEATHER_WIND_NNW,
GWEATHER_WIND_LAST
} GWeatherWindDirection;
const gchar * gweather_wind_direction_to_string (GWeatherWindDirection wind);
typedef enum { /*< underscore_name=gweather_sky >*/
GWEATHER_SKY_INVALID = -1,
GWEATHER_SKY_CLEAR,
GWEATHER_SKY_BROKEN,
GWEATHER_SKY_SCATTERED,
GWEATHER_SKY_FEW,
GWEATHER_SKY_OVERCAST,
GWEATHER_SKY_LAST
} GWeatherSky;
const gchar * gweather_sky_to_string (GWeatherSky sky);
typedef enum { /*< underscore_name=gweather_phenomenon >*/
GWEATHER_PHENOMENON_INVALID = -1,
GWEATHER_PHENOMENON_NONE,
GWEATHER_PHENOMENON_DRIZZLE,
GWEATHER_PHENOMENON_RAIN,
GWEATHER_PHENOMENON_SNOW,
GWEATHER_PHENOMENON_SNOW_GRAINS,
GWEATHER_PHENOMENON_ICE_CRYSTALS,
GWEATHER_PHENOMENON_ICE_PELLETS,
GWEATHER_PHENOMENON_HAIL,
GWEATHER_PHENOMENON_SMALL_HAIL,
GWEATHER_PHENOMENON_UNKNOWN_PRECIPITATION,
GWEATHER_PHENOMENON_MIST,
GWEATHER_PHENOMENON_FOG,
GWEATHER_PHENOMENON_SMOKE,
GWEATHER_PHENOMENON_VOLCANIC_ASH,
GWEATHER_PHENOMENON_SAND,
GWEATHER_PHENOMENON_HAZE,
GWEATHER_PHENOMENON_SPRAY,
GWEATHER_PHENOMENON_DUST,
GWEATHER_PHENOMENON_SQUALL,
GWEATHER_PHENOMENON_SANDSTORM,
GWEATHER_PHENOMENON_DUSTSTORM,
GWEATHER_PHENOMENON_FUNNEL_CLOUD,
GWEATHER_PHENOMENON_TORNADO,
GWEATHER_PHENOMENON_DUST_WHIRLS,
GWEATHER_PHENOMENON_LAST
} GWeatherConditionPhenomenon;
typedef enum { /*< underscore_name=gweather_qualifier >*/
GWEATHER_QUALIFIER_INVALID = -1,
GWEATHER_QUALIFIER_NONE,
GWEATHER_QUALIFIER_VICINITY,
GWEATHER_QUALIFIER_LIGHT,
GWEATHER_QUALIFIER_MODERATE,
GWEATHER_QUALIFIER_HEAVY,
GWEATHER_QUALIFIER_SHALLOW,
GWEATHER_QUALIFIER_PATCHES,
GWEATHER_QUALIFIER_PARTIAL,
GWEATHER_QUALIFIER_THUNDERSTORM,
GWEATHER_QUALIFIER_BLOWING,
GWEATHER_QUALIFIER_SHOWERS,
GWEATHER_QUALIFIER_DRIFTING,
GWEATHER_QUALIFIER_FREEZING,
GWEATHER_QUALIFIER_LAST
} GWeatherConditionQualifier;
typedef gdouble GWeatherMoonPhase;
typedef gdouble GWeatherMoonLatitude;
gboolean gweather_info_get_value_update (GWeatherInfo *info, time_t *value);
gboolean gweather_info_get_value_sky (GWeatherInfo *info, GWeatherSky *sky);
gboolean gweather_info_get_value_conditions (GWeatherInfo *info, GWeatherConditionPhenomenon *phenomenon, GWeatherConditionQualifier *qualifier);
gboolean gweather_info_get_value_temp (GWeatherInfo *info, GWeatherTemperatureUnit unit, gdouble *value);
gboolean gweather_info_get_value_temp_min (GWeatherInfo *info, GWeatherTemperatureUnit unit, gdouble *value);
gboolean gweather_info_get_value_temp_max (GWeatherInfo *info, GWeatherTemperatureUnit unit, gdouble *value);
gboolean gweather_info_get_value_dew (GWeatherInfo *info, GWeatherTemperatureUnit unit, gdouble *value);
gboolean gweather_info_get_value_apparent (GWeatherInfo *info, GWeatherTemperatureUnit unit, gdouble *value);
gboolean gweather_info_get_value_wind (GWeatherInfo *info, GWeatherSpeedUnit unit, gdouble *speed, GWeatherWindDirection *direction);
gboolean gweather_info_get_value_pressure (GWeatherInfo *info, GWeatherPressureUnit unit, gdouble *value);
gboolean gweather_info_get_value_visibility (GWeatherInfo *info, GWeatherDistanceUnit unit, gdouble *value);
gboolean gweather_info_get_value_sunrise (GWeatherInfo *info, time_t *value);
gboolean gweather_info_get_value_sunset (GWeatherInfo *info, time_t *value);
gboolean gweather_info_get_value_moonphase (GWeatherInfo *info, GWeatherMoonPhase *value, GWeatherMoonLatitude *lat);
gboolean gweather_info_get_upcoming_moonphases (GWeatherInfo *info, time_t *phases);
typedef struct _GWeatherConditions GWeatherConditions;
struct _GWeatherConditions {
gboolean significant;
GWeatherConditionPhenomenon phenomenon;
GWeatherConditionQualifier qualifier;
};
const gchar * gweather_conditions_to_string (GWeatherConditions *conditions);
G_END_DECLS
#endif /* __WEATHER_H_ */
|