Kstars

notifyupdatesui.h
1/*
2 SPDX-FileCopyrightText: 2012 Samikshan Bairagya <samikshan@gmail.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "skyobjects/skyobject.h"
10
11#include <QDialog>
12
13namespace Ui
14{
15class NotifyUpdatesUI;
16}
17
18class NotifyUpdatesUI : public QDialog
19{
21
22 public:
23 explicit NotifyUpdatesUI(QWidget *parent = 0);
24 ~NotifyUpdatesUI();
25 void addItems(QList<SkyObject *> updatesList);
26
27 private slots:
28 void slotCenter();
29
30 private:
31 Ui::NotifyUpdatesUI *ui;
32};
33
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.