Main class of the Navigational Stars plugin.
- Author
- Alexander Wolf
-
Andy Kirkham
Public Types |
enum | NavigationalStarsSet { AngloAmerican,
French,
Russian,
German
} |
|
enum | StelModuleSelectAction { AddToSelection,
ReplaceSelection,
RemoveFromSelection
} |
| Enum used when selecting objects to define whether to add to, replace, or remove from the existing selection list. More...
|
|
enum | StelModuleActionName {
ActionDraw,
ActionUpdate,
ActionHandleMouseClicks,
ActionHandleMouseMoves,
ActionHandleKeys
} |
| Define the possible action for which an order is defined. More...
|
|
Public Slots |
void | setNavStarsMarks (const bool b) |
| Set flag of displaying markers of the navigational stars Emits navStarsMarksChanged() if the value changes.
|
|
bool | getNavStarsMarks (void) const |
| Get flag of displaying markers of the navigational stars.
|
|
void | setEnableAtStartup (bool b) |
|
bool | getEnableAtStartup (void) const |
|
void | setHighlightWhenVisible (bool b) |
|
bool | getHighlightWhenVisible (void) const |
|
void | setLimitInfoToNavStars (bool b) |
|
bool | getLimitInfoToNavStars (void) const |
|
void | setUpperLimb (bool b) |
|
bool | getUpperLimb (void) const |
|
void | setTabulatedDisplay (bool b) |
|
bool | getTabulatedDisplay (void) const |
|
void | setShowExtraDecimals (bool b) |
|
bool | getShowExtraDecimals (void) const |
|
void | setFlagUseUTCTime (bool b) |
|
bool | getFlagUseUTCTime (void) const |
|
void | setCurrentNavigationalStarsSet (NavigationalStarsSet nsset) |
| Set the set of navigational stars.
|
|
NavStars::NavigationalStarsSet | getCurrentNavigationalStarsSet () const |
| Get the set of navigational stars.
|
|
QString | getCurrentNavigationalStarsSetKey (void) const |
| Get the key of current set of navigational stars.
|
|
QString | getCurrentNavigationalStarsSetDescription (void) const |
|
void | setCurrentNavigationalStarsSetKey (QString key) |
| Set the set of navigational stars from its key.
|
|
void | addExtraInfo (StelCore *core) |
| For the currently select object add the extraString info in a format that matches the Nautical Almanac. More...
|
|
void | extraInfo (StelCore *core, const StelObjectP &selectedObject) |
| For the currently select object add the extraString info in a format that matches the Nautical Almanac.
|
|
void | displayStandardInfo (const StelObjectP &selectedObject, NavStarsCalculator &calc, const QString &extraText) |
| Used to display the extraInfoStrings in standard "paired" lines (for example gha/dev)
|
|
void | displayTabulatedInfo (const StelObjectP &selectedObject, NavStarsCalculator &calc, const QString &extraText) |
| Used to display the extraInfoStrings in tabulated form more suited to students of CN as found when using Nautical Almanacs.
|
|
QString | oneRowTwoCells (const QString &a, const QString &b, const QString &extra, bool tabulatedView) |
| Given two QStrings return in a format consistent with the property setting of "withTables". More...
|
|
bool | isPermittedObject (const QString &s) |
|
Signals |
void | navStarsMarksChanged (bool b) |
| Emitted when display of markers have been changed.
|
|
void | enableAtStartupChanged (bool b) |
|
void | highlightWhenVisibleChanged (bool b) |
|
void | limitInfoToNavStarsChanged (bool b) |
|
void | upperLimbChanged (bool b) |
|
void | tabulatedDisplayChanged (bool b) |
|
void | showExtraDecimalsChanged (bool b) |
|
void | flagUseUTCTimeChanged (bool b) |
|
Public Member Functions |
virtual void | init () Q_DECL_OVERRIDE |
| Initialize itself. More...
|
|
virtual void | deinit () Q_DECL_OVERRIDE |
| Called before the module will be deleted, and before the OpenGL context is suppressed. More...
|
|
virtual void | update (double deltaTime) Q_DECL_OVERRIDE |
| Update the module with respect to the time. More...
|
|
virtual void | draw (StelCore *core) Q_DECL_OVERRIDE |
| Execute all the drawing functions for this module. More...
|
|
virtual double | getCallOrder (StelModuleActionName actionName) const Q_DECL_OVERRIDE |
| Return the value defining the order of call for the given action For example if stars.callOrder[ActionDraw] == 10 and constellation.callOrder[ActionDraw] == 11, the stars module will be drawn before the constellations. More...
|
|
virtual bool | configureGui (bool show) Q_DECL_OVERRIDE |
| Detect or show the configuration GUI elements for the module. More...
|
|
void | restoreDefaultConfiguration (void) |
| Set up the plugin with default values. More...
|
|
void | loadConfiguration (void) |
| Read (or re-read) settings from the main config file. More...
|
|
void | saveConfiguration (void) |
| Save the settings to the main configuration file.
|
|
void | populateNavigationalStarsSet (void) |
|
QList< int > | getStarsNumbers (void) |
|
| StelModule () |
| Constructor. Every derived class MUST call setObjectName(className) in its constructor.
|
|
virtual QSettings * | getSettings () |
| Return module-specific settings. More...
|
|
virtual QString | getModuleVersion () const |
| Get the version of the module, default is stellarium main version.
|
|
virtual QString | getAuthorName () const |
| Get the name of the module author.
|
|
virtual QString | getAuthorEmail () const |
| Get the email adress of the module author.
|
|
virtual void | handleMouseClicks (class QMouseEvent *) |
| Handle mouse clicks. More...
|
|
virtual void | handleMouseWheel (class QWheelEvent *) |
| Handle mouse wheel. More...
|
|
virtual bool | handleMouseMoves (int x, int y, Qt::MouseButtons b) |
| Handle mouse moves. More...
|
|
virtual void | handleKeys (class QKeyEvent *e) |
| Handle key events. More...
|
|
virtual bool | handlePinch (qreal scale, bool started) |
| Handle pinch gesture events. More...
|
|
Properties |
bool | navStarsVisible |
|
bool | displayAtStartup |
|
bool | highlightWhenVisible |
|
bool | limitInfoToNavStars |
|
bool | upperLimb |
|
bool | tabulatedDisplay |
|
bool | showExtraDecimals |
|
bool | useUTCTime |
|