Stellarium
0.20.4
|
Allows for creation of custom markers on objects or coordinates. More...
#include <MarkerMgr.hpp>
Public Slots | |
int | markerObject (const QString &objectName, bool visible=true, const QString &mtype="cross", const QString &color="#ffff66", const float size=6.f, bool autoDelete=false, int autoDeleteTimeoutMs=0) |
Create a marker which is attached to a StelObject. More... | |
int | markerEquatorial (const QString &RA, const QString &Dec, bool j2000epoch=true, bool visible=true, const QString &mtype="cross", const QString &color="#ffff66", const float size=6.f, bool autoDelete=false, int autoDeleteTimeoutMs=0) |
Create a marker with equatorial coordinates. More... | |
int | markerHorizon (const QString &az, const QString &alt, bool visible=true, const QString &mtype="cross", const QString &color="#ffff66", const float size=6.f, bool autoDelete=false, int autoDeleteTimeoutMs=0) |
Create a marker with horizontal coordinates. More... | |
bool | getMarkerShow (int id) const |
find out if a marker identified by id is presently shown | |
void | setMarkerShow (int id, bool show) |
set a marker identified by id to be shown or not | |
void | deleteMarker (int id) |
Delete a marker by the ID. More... | |
int | deleteAllMarkers (void) |
Delete all markers. More... | |
Public Member Functions | |
MarkerMgr () | |
Construct a MarkerMgr object. | |
virtual void | init () |
Initialize the MarkerMgr object. | |
virtual void | draw (StelCore *core) |
Draw user labels. | |
virtual void | update (double deltaTime) |
Update time-dependent parts of the module. | |
virtual double | getCallOrder (StelModuleActionName actionName) const |
Defines the order in which the various modules are drawn. | |
Public Member Functions inherited from StelModule | |
virtual void | deinit () |
Called before the module will be delete, and before the openGL context is suppressed. More... | |
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... | |
virtual bool | configureGui (bool show=true) |
Detect or show the configuration GUI elements for the module. More... | |
Additional Inherited Members | |
Public Types inherited from StelModule | |
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... | |
Protected Member Functions inherited from StelModule | |
class StelAction * | addAction (const QString &id, const QString &groupId, const QString &text, QObject *target, const char *slot, const QString &shortcut="", const QString &altShortcut="") |
convenience methods to add an action (call to slot) to the StelActionMgr object. More... | |
class StelAction * | addAction (const QString &id, const QString &groupId, const QString &text, const char *slot, const QString &shortcut="", const QString &altShortcut="") |
convenience methods to add an action (call to own slot) to the StelActionMgr object. More... | |
StelAction * | addAction (const QString &id, const QString &groupId, const QString &text, QObject *contextObject, std::function< void()> lambda, const QString &shortcut="", const QString &altShortcut="") |
convenience methods to add an action (call to Lambda functor) to the StelActionMgr object. More... | |
Because this class is intended for use in scripting (although other uses are also fine), all marker types and so on are specified by QString descriptions. The markers are painted very late, i.e. also sky object markers will be written over the landscape.
|
slot |
|
slot |
|
slot |
RA | right ascension (e.g. 5h10m31s) |
Dec | declination (e.g. 25d30m30s) |
j2000epoch | if true, the marker starts displayed in equatorial coordinates for epoch J2000.0 |
visible | if true, the marker starts displayed, else it starts hidden |
mtype | the type of marker. Keys:
|
color | HTML-like color spec, e.g. "#ffff00" for yellow |
size | the size of marker. |
autoDelete | the marker will be automatically deleted after it is displayed once |
autoDeleteTimeoutMs | if not zero, the marker will be automatically deleted after autoDeleteTimeoutMs ms |
|
slot |
az | azimuth (e.g. 125d30m30s) |
alt | altitude (e.g. 25d30m30s) |
visible | if true, the marker starts displayed, else it starts hidden |
mtype | the type of marker. Keys:
|
color | HTML-like color spec, e.g. "#ffff00" for yellow |
size | the size of marker. |
autoDelete | the marker will be automatically deleted after it is displayed once |
autoDeleteTimeoutMs | if not zero, the marker will be automatically deleted after autoDeleteTimeoutMs ms |
|
slot |
objectName | the English name of the object to attach to |
visible | if true, the marker starts displayed, else it starts hidden |
mtype | the type of marker. Keys:
|
color | HTML-like color spec, e.g. "#ffff00" for yellow |
size | the size of marker. |
autoDelete | the marker will be automatically deleted after it is displayed once |
autoDeleteTimeoutMs | if not zero, the marker will be automatically deleted after autoDeleteTimeoutMs ms |