|
|
void | setImageEnabled (bool enable) |
| |
|
void | setDialogVisible (bool enable) |
| |
|
void | setImageAxesEnabled (bool enabled) |
| |
|
void | setPointMarkersEnabled (bool enabled) |
| |
|
void | setProjectionCenterMarkerEnabled (bool enabled) |
| |
|
void | setImgPosResetOnLoadingEnabled (bool enabled) |
| |
|
void | setProjectionCenterMarkerColor (const Vec3f &color) |
| |
|
void | setSelectedPointMarkerColor (const Vec3f &color) |
| |
|
void | setPointMarkerColor (const Vec3f &color) |
| |
|
void | setImageAxesColor (const Vec3f &color) |
| |
|
|
void | imageToggled (bool enabled) |
| |
|
void | dialogToggled (bool enabled) |
| |
|
void | imageAxesToggled (bool enabled) |
| |
|
void | pointMarkersToggled (bool enabled) |
| |
|
void | imgPosResetOnLoadingToggled (bool enabled) |
| |
|
void | projectionCenterMarkerToggled (bool enabled) |
| |
|
void | projectionCenterMarkerColorChanged (const Vec3f &color) |
| |
|
void | selectedPointMarkerColorChanged (const Vec3f &color) |
| |
|
void | pointMarkerColorChanged (const Vec3f &color) |
| |
|
void | imageAxesColorChanged (const Vec3f &color) |
| |
|
| void | init () override |
| | Initialize itself. More...
|
| |
| void | draw (StelCore *core) override |
| | Execute all the drawing functions for this module. More...
|
| |
| double | getCallOrder (StelModuleActionName actionName) const 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...
|
| |
| void | handleMouseClicks (QMouseEvent *event) override |
| | Handle mouse clicks. More...
|
| |
| bool | handleMouseMoves (int x, int y, Qt::MouseButtons) override |
| | Handle mouse moves. More...
|
| |
| bool | configureGui (bool show=true) override |
| | Detect or show the configuration GUI elements for the module. More...
|
| |
|
bool | arePointMarkersEnabled () const |
| |
|
bool | isProjectionCenterMarkerEnabled () const |
| |
|
bool | isImgPosResetOnLoadingEnabled () const |
| |
|
bool | areImageAxesEnabled () const |
| |
|
bool | isImageEnabled () const |
| |
|
bool | isDialogVisible () const |
| |
|
QCursor | getPointPickCursor () const |
| |
|
Vec3f | getProjectionCenterMarkerColor () const |
| |
|
Vec3f | getSelectedPointMarkerColor () const |
| |
|
Vec3f | getPointMarkerColor () const |
| |
|
Vec3f | getImageAxesColor () const |
| |
|
void | restoreDefaultSettings () |
| |
|
| StelModule () |
| | Constructor. Every derived class MUST call setObjectName(className) in its constructor.
|
| |
| virtual void | deinit () |
| | Called before the module will be deleted, and before the OpenGL context is suppressed. More...
|
| |
| virtual QSettings * | getSettings () |
| | Return module-specific settings. More...
|
| |
| virtual void | update (double deltaTime) |
| | Update the module with respect to the time. 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 address of the module author.
|
| |
| virtual void | handleMouseWheel (class QWheelEvent *) |
| | Handle mouse wheel. More...
|
| |
| virtual void | handleKeys (class QKeyEvent *e) |
| | Handle key events. More...
|
| |
| virtual bool | handlePinch (qreal scale, bool started) |
| | Handle pinch gesture events. More...
|
| |
|
|
bool | dialogVisible = false |
| |
|
bool | imageEnabled = true |
| |
|
bool | imageAxesEnabled = false |
| |
|
bool | pointMarkersEnabled = true |
| |
|
bool | projectionCenterMarkerEnabled = false |
| |
|
bool | imgPosResetOnLoadingEnabled = true |
| |
|
Vec3f | selectedPointMarkerColor = Vec3f(0,0,0) |
| |
|
Vec3f | pointMarkerColor = Vec3f(0,0,0) |
| |
|
Vec3f | projectionCenterMarkerColor = Vec3f(0,0,0) |
| |
|
Vec3f | imageAxesColor = Vec3f(0,0,0) |
| |
|
| 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...
|
| |