Kstars

mosaicrenderer.h
1/*
2 SPDX-FileCopyrightText: 2022 Jasem Mutlaq
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include <QObject>
10#include <QGraphicsScene>
11
12class Projector;
13
14namespace Ekos
15{
16class MosaicTilesManager;
17class MosaicRenderer : public QObject
18{
20 public:
21 explicit MosaicRenderer();
22 bool render(uint16_t w, uint16_t h, QImage *image, const Projector *m_proj);
23
24 signals:
25
26 public slots:
27
28 private:
29
30 Projector *m_Projecter {nullptr};
31 MosaicTilesManager *m_TilesManager {nullptr};
32
33 QGraphicsScene m_TilesScene;
34};
35}
The Projector class is the primary class that serves as an interface to handle projections.
Definition projector.h:58
Ekos is an advanced Astrophotography tool for Linux.
Definition align.cpp:78
Q_OBJECTQ_OBJECT
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:03 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.