File indexing completed on 2024-04-14 14:11:23

0001 /*
0002     SPDX-FileCopyrightText: 2012 Samikshan Bairagya <samikshan@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "skyobjects/skyobject.h"
0010 
0011 #include <QDialog>
0012 
0013 namespace Ui
0014 {
0015 class NotifyUpdatesUI;
0016 }
0017 
0018 class NotifyUpdatesUI : public QDialog
0019 {
0020         Q_OBJECT
0021 
0022     public:
0023         explicit NotifyUpdatesUI(QWidget *parent = 0);
0024         ~NotifyUpdatesUI();
0025         void addItems(QList<SkyObject *> updatesList);
0026 
0027     private slots:
0028         void slotCenter();
0029 
0030     private:
0031         Ui::NotifyUpdatesUI *ui;
0032 };
0033