Kstars

starhopperdialog.h
1/*
2 SPDX-FileCopyrightText: 2014 Utkarsh Simha <utkarshsimha@gmail.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "ui_starhopperdialog.h"
10
11#include "starobject.h"
12
13#include <QDialog>
14
15#include <memory>
16
17class SkyObject;
18class SkyPoint;
19class StarHopper;
20class StarObject;
22
23Q_DECLARE_METATYPE(StarObject *)
24
25class StarHopperDialog : public QDialog, public Ui::StarHopperDialog
26{
28
29 public:
30 explicit StarHopperDialog(QWidget *parent = nullptr);
31 ~StarHopperDialog() override;
32
33 /**
34 * @short Forms a Star Hop route from source to destination and displays on skymap
35 * @param startHop SkyPoint to the start of Star Hop
36 * @param stopHop SkyPoint to destination of StarHop
37 * @param fov Field of view under consideration
38 * @param maglim Magnitude limit of star to search for
39 * @note In turn calls StarHopper to perform computations
40 */
41 void starHop(const SkyPoint &startHop, const SkyPoint &stopHop, float fov, float maglim);
42
43 private slots:
44 void slotNext();
45 void slotGoto();
46 void slotDetails();
47 void slotRefreshMetadata();
48
49 private:
50 SkyObject *getStarData(QListWidgetItem *);
51 void setData(StarObject *);
52 TargetListComponent *getTargetListComponent();
53
54 QList<SkyObject *> *m_skyObjList { nullptr };
55 std::unique_ptr<StarHopper> m_sh;
56 Ui::StarHopperDialog *ui { nullptr };
57 QListWidget *m_lw { nullptr };
58 QStringList *m_Metadata { nullptr };
59};
Provides all necessary information about an object in the sky: its coordinates, name(s),...
Definition skyobject.h:42
The sky coordinates of a point in the sky.
Definition skypoint.h:45
Helps planning star hopping.
Definition starhopper.h:25
This is a subclass of SkyObject.
Definition starobject.h:33
Highlights objects present in certain lists by drawing "target" symbols around them.
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:04 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.