2013-09-16 07:16:49 +00:00
|
|
|
/* gswe-types.h - Basic types of SWE-GLib
|
|
|
|
*
|
2013-09-22 16:22:13 +00:00
|
|
|
* Copyright © 2013 Gergely Polonkai
|
2013-09-16 07:16:49 +00:00
|
|
|
*
|
2013-09-22 16:22:13 +00:00
|
|
|
* SWE-GLib 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2013-09-16 07:16:49 +00:00
|
|
|
*
|
2013-09-22 16:22:13 +00:00
|
|
|
* SWE-GLib 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.
|
2013-09-16 07:16:49 +00:00
|
|
|
*
|
2013-09-22 16:22:13 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2013-09-16 07:16:49 +00:00
|
|
|
*/
|
2013-09-22 21:18:33 +00:00
|
|
|
#ifndef __SWE_GLIB_GSWE_TYPES_H__
|
|
|
|
#define __SWE_GLIB_GSWE_TYPES_H__
|
2013-09-01 11:52:18 +00:00
|
|
|
|
2013-09-01 20:30:51 +00:00
|
|
|
#include <glib.h>
|
2013-09-16 09:32:33 +00:00
|
|
|
#include <glib-object.h>
|
2013-09-01 20:30:51 +00:00
|
|
|
|
2013-09-16 09:34:32 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gswe-types
|
|
|
|
* @short_description: Base types of SWE-GLib
|
|
|
|
* @title: Base types
|
|
|
|
* @stability: Stable
|
|
|
|
* @include: swe-glib/swe-glib.h
|
|
|
|
*
|
|
|
|
* These are the base types used throughout SWE-GLib.
|
|
|
|
*/
|
|
|
|
|
2013-09-05 17:50:57 +00:00
|
|
|
/**
|
|
|
|
* GswePlanet:
|
|
|
|
* @GSWE_PLANET_NONE: no planet
|
|
|
|
* @GSWE_PLANET_SUN: the Sun
|
|
|
|
* @GSWE_PLANET_MOON: the Moon
|
|
|
|
* @GSWE_PLANET_MERCURY: planet Mercury
|
|
|
|
* @GSWE_PLANET_VENUS: planet Venus
|
|
|
|
* @GSWE_PLANET_EARTH: planet Earth
|
|
|
|
* @GSWE_PLANET_MARS: planet Mars
|
|
|
|
* @GSWE_PLANET_JUPITER: planet Jupiter
|
|
|
|
* @GSWE_PLANET_SATURN: planet Saturn
|
|
|
|
* @GSWE_PLANET_URANUS: planet Uranus
|
|
|
|
* @GSWE_PLANET_NEPTUNE: planet Neptune
|
|
|
|
* @GSWE_PLANET_PLUTO: planet Pluto
|
|
|
|
* @GSWE_PLANET_CHIRON: dwarf planet Chiron
|
|
|
|
* @GSWE_PLANET_CERES: dwarf planet Ceres
|
|
|
|
* @GSWE_PLANET_PALLAS: dwarf planet Pallas
|
|
|
|
* @GSWE_PLANET_JUNO: dwarf planet Juno
|
|
|
|
* @GSWE_PLANET_VESTA: dwarf planet Vesta
|
|
|
|
* @GSWE_PLANET_MOON_NODE: the mean ascending (north) Moon node
|
|
|
|
* @GSWE_PLANET_MOON_APOGEE: the mean Moon apogee (sometimes called Dark Moon,
|
|
|
|
* or Lilith)
|
2013-10-03 21:09:55 +00:00
|
|
|
* @GSWE_PLANET_ASCENDANT: the ascendant
|
2013-09-05 17:50:57 +00:00
|
|
|
* @GSWE_PLANET_MC: midheaven (Medium Coeli)
|
|
|
|
* @GSWE_PLANET_VERTEX: the Vertex (the point where the ecliptic meats the
|
|
|
|
* primal vertical)
|
2013-09-16 11:20:53 +00:00
|
|
|
*
|
|
|
|
* This enum holds the planet identifiers known by SWE-GLib.
|
2013-09-05 17:50:57 +00:00
|
|
|
*/
|
2013-09-01 11:52:18 +00:00
|
|
|
typedef enum {
|
|
|
|
GSWE_PLANET_NONE,
|
|
|
|
GSWE_PLANET_SUN,
|
|
|
|
GSWE_PLANET_MOON,
|
|
|
|
GSWE_PLANET_MERCURY,
|
|
|
|
GSWE_PLANET_VENUS,
|
|
|
|
GSWE_PLANET_EARTH,
|
|
|
|
GSWE_PLANET_MARS,
|
|
|
|
GSWE_PLANET_JUPITER,
|
|
|
|
GSWE_PLANET_SATURN,
|
|
|
|
GSWE_PLANET_URANUS,
|
|
|
|
GSWE_PLANET_NEPTUNE,
|
|
|
|
GSWE_PLANET_PLUTO,
|
|
|
|
GSWE_PLANET_CHIRON,
|
|
|
|
GSWE_PLANET_CERES,
|
|
|
|
GSWE_PLANET_PALLAS,
|
|
|
|
GSWE_PLANET_JUNO,
|
|
|
|
GSWE_PLANET_VESTA,
|
|
|
|
GSWE_PLANET_MOON_NODE,
|
|
|
|
GSWE_PLANET_MOON_APOGEE,
|
2013-10-03 21:09:55 +00:00
|
|
|
GSWE_PLANET_ASCENDANT,
|
2013-09-01 11:52:18 +00:00
|
|
|
GSWE_PLANET_MC,
|
|
|
|
GSWE_PLANET_VERTEX
|
|
|
|
} GswePlanet;
|
|
|
|
|
2013-09-05 17:50:57 +00:00
|
|
|
/**
|
|
|
|
* GsweZodiac:
|
|
|
|
* @GSWE_SIGN_NONE: no sign
|
|
|
|
* @GSWE_SIGN_ARIES: the Aries sign (Ram)
|
|
|
|
* @GSWE_SIGN_TAURUS: the Taurus sign (Bull)
|
|
|
|
* @GSWE_SIGN_GEMINI: the Gemini sign (Twins)
|
|
|
|
* @GSWE_SIGN_CANCER: the Cancer sign (Crab)
|
|
|
|
* @GSWE_SIGN_LEO: the Leo sign (Lion)
|
|
|
|
* @GSWE_SIGN_VIRGO: the Virgo sign (Maid)
|
|
|
|
* @GSWE_SIGN_LIBRA: the Libra sign (Scales)
|
|
|
|
* @GSWE_SIGN_SCORPIO: the Scorpio sign (Scorpion)
|
|
|
|
* @GSWE_SIGN_SAGITTARIUS: the Sagittarius sign (Archer)
|
|
|
|
* @GSWE_SIGN_CAPRICORN: the Capricorn sign (Goat)
|
|
|
|
* @GSWE_SIGN_AQUARIUS: the Aquarius sign (Water Bearer)
|
|
|
|
* @GSWE_SIGN_PISCES: the Pisces sign (Fish)
|
2013-09-16 11:20:53 +00:00
|
|
|
*
|
|
|
|
* The zodiac signs known by SWE-GLib by default.
|
2013-09-05 17:50:57 +00:00
|
|
|
*/
|
2013-09-01 11:52:18 +00:00
|
|
|
typedef enum {
|
|
|
|
GSWE_SIGN_NONE,
|
|
|
|
GSWE_SIGN_ARIES,
|
|
|
|
GSWE_SIGN_TAURUS,
|
|
|
|
GSWE_SIGN_GEMINI,
|
|
|
|
GSWE_SIGN_CANCER,
|
|
|
|
GSWE_SIGN_LEO,
|
|
|
|
GSWE_SIGN_VIRGO,
|
|
|
|
GSWE_SIGN_LIBRA,
|
|
|
|
GSWE_SIGN_SCORPIO,
|
|
|
|
GSWE_SIGN_SAGITTARIUS,
|
|
|
|
GSWE_SIGN_CAPRICORN,
|
|
|
|
GSWE_SIGN_AQUARIUS,
|
|
|
|
GSWE_SIGN_PISCES
|
|
|
|
} GsweZodiac;
|
|
|
|
|
2013-09-06 07:36:09 +00:00
|
|
|
/**
|
|
|
|
* GsweAspect:
|
|
|
|
* @GSWE_ASPECT_NONE: no aspect
|
|
|
|
* @GSWE_ASPECT_CONJUCTION: conjuction (0°)
|
|
|
|
* @GSWE_ASPECT_SEXTILE: sextile (60°)
|
|
|
|
* @GSWE_ASPECT_SQUARE: square (or quadrat; 90°)
|
|
|
|
* @GSWE_ASPECT_TRINE: trine (or trigon; 120°)
|
|
|
|
* @GSWE_ASPECT_OPPOSITION: opposition (180°)
|
|
|
|
* @GSWE_ASPECT_SEMISEXTILE: semi-sextile (30°)
|
|
|
|
* @GSWE_ASPECT_SEMISQUARE: semi-square (45°)
|
|
|
|
* @GSWE_ASPECT_QUINTILE: quintile (72°)
|
|
|
|
* @GSWE_ASPECT_SESQUISQUARE: sesqui-square (135°)
|
|
|
|
* @GSWE_ASPECT_BIQUINTILE: bi-quintile (144°)
|
|
|
|
* @GSWE_ASPECT_QUINCUNX: quincunx (150°)
|
2013-09-16 11:20:53 +00:00
|
|
|
*
|
|
|
|
* The aspects known by SWE-GLib by default.
|
2013-09-06 07:36:09 +00:00
|
|
|
*/
|
2013-09-01 14:07:30 +00:00
|
|
|
typedef enum {
|
|
|
|
GSWE_ASPECT_NONE,
|
|
|
|
GSWE_ASPECT_CONJUCTION,
|
|
|
|
GSWE_ASPECT_SEXTILE,
|
|
|
|
GSWE_ASPECT_SQUARE,
|
|
|
|
GSWE_ASPECT_TRINE,
|
|
|
|
GSWE_ASPECT_OPPOSITION,
|
|
|
|
GSWE_ASPECT_SEMISEXTILE,
|
|
|
|
GSWE_ASPECT_SEMISQUARE,
|
|
|
|
GSWE_ASPECT_QUINTILE,
|
|
|
|
GSWE_ASPECT_SESQUISQUARE,
|
|
|
|
GSWE_ASPECT_BIQUINTILE,
|
|
|
|
GSWE_ASPECT_QUINCUNX
|
|
|
|
} GsweAspect;
|
|
|
|
|
2013-09-06 07:36:09 +00:00
|
|
|
/**
|
2013-09-16 08:13:25 +00:00
|
|
|
* GsweAntiscionAxis:
|
|
|
|
* @GSWE_ANTISCION_AXIS_NONE: no mirror
|
|
|
|
* @GSWE_ANTISCION_AXIS_ARIES: mirror on the Aries/Libra (0°-180°) axis
|
|
|
|
* @GSWE_ANTISCION_AXIS_MID_TAURUS: mirror on the middle of Taurus/Scorpio
|
|
|
|
* (45°-225°) axis
|
|
|
|
* @GSWE_ANTISCION_AXIS_CANCER: mirror on the Cancer/Capricorn (90°-270°) axis
|
|
|
|
* @GSWE_ANTISCION_AXIS_MID_LEO: mirror on the middle of Leo/Aquarius
|
|
|
|
* (135°-315°) axis
|
2013-09-16 11:20:53 +00:00
|
|
|
*
|
|
|
|
* The antiscion axes known by SWE-GLib by default.
|
2013-09-06 07:36:09 +00:00
|
|
|
*/
|
2013-09-03 10:01:08 +00:00
|
|
|
typedef enum {
|
2013-09-16 08:13:25 +00:00
|
|
|
GSWE_ANTISCION_AXIS_NONE,
|
|
|
|
GSWE_ANTISCION_AXIS_ARIES,
|
|
|
|
GSWE_ANTISCION_AXIS_MID_TAURUS,
|
|
|
|
GSWE_ANTISCION_AXIS_CANCER,
|
|
|
|
GSWE_ANTISCION_AXIS_MID_LEO
|
|
|
|
} GsweAntiscionAxis;
|
2013-09-03 10:01:08 +00:00
|
|
|
|
2013-09-06 07:36:09 +00:00
|
|
|
/**
|
|
|
|
* GsweElement:
|
|
|
|
* @GSWE_ELEMENT_NONE: no element
|
|
|
|
* @GSWE_ELEMENT_FIRE: the Fire element
|
|
|
|
* @GSWE_ELEMENT_EARTH: the Earth element
|
|
|
|
* @GSWE_ELEMENT_AIR: the Air element
|
|
|
|
* @GSWE_ELEMENT_WATER: the Water element
|
2013-09-16 11:20:53 +00:00
|
|
|
*
|
|
|
|
* The elements as known by the SWE-GLib library.
|
2013-09-06 07:36:09 +00:00
|
|
|
*/
|
2013-09-01 11:52:18 +00:00
|
|
|
typedef enum {
|
|
|
|
GSWE_ELEMENT_NONE,
|
|
|
|
GSWE_ELEMENT_FIRE,
|
|
|
|
GSWE_ELEMENT_EARTH,
|
|
|
|
GSWE_ELEMENT_AIR,
|
|
|
|
GSWE_ELEMENT_WATER
|
|
|
|
} GsweElement;
|
|
|
|
|
2013-09-06 07:36:09 +00:00
|
|
|
/**
|
|
|
|
* GsweQuality:
|
|
|
|
* @GSWE_QUALITY_NONE: no quality
|
|
|
|
* @GSWE_QUALITY_CARDINAL: Cardinal quality
|
|
|
|
* @GSWE_QUALITY_FIX: Fix quality
|
|
|
|
* @GSWE_QUALITY_MUTABLE: Mutable quality
|
2013-09-16 11:20:53 +00:00
|
|
|
*
|
|
|
|
* The qualities as known by the SWE-GLib library.
|
2013-09-06 07:36:09 +00:00
|
|
|
*/
|
2013-09-01 11:52:18 +00:00
|
|
|
typedef enum {
|
|
|
|
GSWE_QUALITY_NONE,
|
|
|
|
GSWE_QUALITY_CARDINAL,
|
|
|
|
GSWE_QUALITY_FIX,
|
|
|
|
GSWE_QUALITY_MUTABLE
|
|
|
|
} GsweQuality;
|
|
|
|
|
2013-09-06 07:36:09 +00:00
|
|
|
/**
|
|
|
|
* GsweHouseSystem:
|
|
|
|
* @GSWE_HOUSE_SYSTEM_NONE: no house system
|
|
|
|
* @GSWE_HOUSE_SYSTEM_PLACIDUS: Placidus house system
|
|
|
|
* @GSWE_HOUSE_SYSTEM_KOCH: Koch house system
|
2013-09-26 23:35:16 +00:00
|
|
|
* @GSWE_HOUSE_SYSTEM_EQUAL: Equal house system
|
2013-09-16 11:20:53 +00:00
|
|
|
*
|
|
|
|
* The house systems currently known by SWE-GLib.
|
2013-09-06 07:36:09 +00:00
|
|
|
*/
|
2013-09-02 08:28:30 +00:00
|
|
|
typedef enum {
|
|
|
|
GSWE_HOUSE_SYSTEM_NONE,
|
|
|
|
GSWE_HOUSE_SYSTEM_PLACIDUS,
|
|
|
|
GSWE_HOUSE_SYSTEM_KOCH,
|
2013-09-26 23:35:16 +00:00
|
|
|
GSWE_HOUSE_SYSTEM_EQUAL
|
2013-09-02 08:28:30 +00:00
|
|
|
} GsweHouseSystem;
|
|
|
|
|
2013-09-06 07:36:09 +00:00
|
|
|
/**
|
|
|
|
* GsweMoonPhase:
|
2013-09-22 21:46:54 +00:00
|
|
|
* @GSWE_MOON_PHASE_NONE: Moon phase is not defined
|
2013-09-06 07:36:09 +00:00
|
|
|
* @GSWE_MOON_PHASE_NEW: New Moon
|
|
|
|
* @GSWE_MOON_PHASE_WAXING_CRESCENT: Waxing crescent Moon
|
|
|
|
* @GSWE_MOON_PHASE_WAXING_HALF: First half
|
|
|
|
* @GSWE_MOON_PHASE_WAXING_GIBBOUS: Waxing gibbous Moon
|
|
|
|
* @GSWE_MOON_PHASE_FULL: Full Moon
|
|
|
|
* @GSWE_MOON_PHASE_WANING_GIBBOUS: Waning gibbous Moon
|
|
|
|
* @GSWE_MOON_PHASE_WANING_HALF: Second Half
|
|
|
|
* @GSWE_MOON_PHASE_WANING_CRESCENT: Waning crescent Moon
|
|
|
|
* @GSWE_MOON_PHASE_DARK: Dark Moon
|
2013-09-16 11:20:53 +00:00
|
|
|
*
|
|
|
|
* The phases of the Moon.
|
2013-09-06 07:36:09 +00:00
|
|
|
*/
|
2013-09-02 21:12:56 +00:00
|
|
|
typedef enum {
|
2013-09-22 21:46:54 +00:00
|
|
|
GSWE_MOON_PHASE_NONE,
|
2013-09-02 21:12:56 +00:00
|
|
|
GSWE_MOON_PHASE_NEW,
|
|
|
|
GSWE_MOON_PHASE_WAXING_CRESCENT,
|
|
|
|
GSWE_MOON_PHASE_WAXING_HALF,
|
|
|
|
GSWE_MOON_PHASE_WAXING_GIBBOUS,
|
|
|
|
GSWE_MOON_PHASE_FULL,
|
|
|
|
GSWE_MOON_PHASE_WANING_GIBBOUS,
|
|
|
|
GSWE_MOON_PHASE_WANING_HALF,
|
|
|
|
GSWE_MOON_PHASE_WANING_CRESCENT,
|
|
|
|
GSWE_MOON_PHASE_DARK
|
|
|
|
} GsweMoonPhase;
|
|
|
|
|
2013-09-16 09:32:33 +00:00
|
|
|
/**
|
|
|
|
* GsweCoordinates:
|
|
|
|
* @longitude: longitude part of the coordinates
|
|
|
|
* @latitude: latitude part of the coordinates
|
|
|
|
* @altitude: altitude relative to sea level
|
|
|
|
*
|
|
|
|
* GsweCoordinates specifies an exact point on Earth's surface
|
|
|
|
*/
|
|
|
|
typedef struct _GsweCoordinates {
|
|
|
|
gdouble longitude;
|
|
|
|
gdouble latitude;
|
|
|
|
gdouble altitude;
|
|
|
|
} GsweCoordinates;
|
|
|
|
|
|
|
|
GType gswe_coordinates_get_type(void);
|
|
|
|
#define GSWE_TYPE_COORDINATES (gswe_coordinates_get_type())
|
|
|
|
|
2013-09-22 21:18:33 +00:00
|
|
|
#endif /* __SWE_GLIB_GSWE_TYPES_H__ */
|
2013-09-01 11:52:18 +00:00
|
|
|
|