Kstars

constellationlines.h
1 /*
2  SPDX-FileCopyrightText: 2005 Jason Harris <[email protected]>
3 
4  SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 
7 #pragma once
8 
9 #include "ksnumbers.h"
10 #include "linelistindex.h"
11 
12 class CultureList;
13 
14 /**
15  * @class ConstellationLines
16  * Collection of lines making the 88 constellations
17  *
18  * @author Jason Harris
19  * @version 0.1
20  */
21 
23 {
24  public:
25  /**
26  * @short Constructor
27  * @p parent Pointer to the parent SkyComposite object
28  *
29  * Constellation lines data is read from clines.dat.
30  * Each line in the file contains a command character ("M" means move to
31  * this position without drawing a line, "D" means draw a line from
32  * the previous position to this one), followed by the genetive name of
33  * a star, which marks the position of the constellation node.
34  */
36 
37  void reindex(KSNumbers *num);
38 
39  bool selected() override;
40 
41  protected:
42  const IndexHash &getIndexHash(LineList *lineList) override;
43 
44  /**
45  * @short we need to override the update routine because stars are
46  * updated differently from mere SkyPoints.
47  */
48  void JITupdate(LineList *lineList) override;
49 
50  /** @short Set the QColor and QPen for drawing. */
51  void preDraw(SkyPainter *skyp) override;
52 
53  private:
54  KSNumbers m_reindexNum;
55  double m_reindexInterval { 0 };
56 };
void JITupdate(LineList *lineList) override
we need to override the update routine because stars are updated differently from mere SkyPoints.
bool selected() override
SkyComposite * parent()
Definition: skycomponent.h:137
Store several time-dependent astronomical quantities.
Definition: ksnumbers.h:42
Draws things on the sky, without regard to backend.
Definition: skypainter.h:39
void preDraw(SkyPainter *skyp) override
Set the QColor and QPen for drawing.
ConstellationLines(SkyComposite *parent, CultureList *cultures)
Constructor parent Pointer to the parent SkyComposite object.
const IndexHash & getIndexHash(LineList *lineList) override
Returns an IndexHash from the SkyMesh that contains the set of trixels that cover lineList.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Tue Oct 3 2023 04:02:49 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.