File indexing completed on 2025-01-19 04:46:47

0001 /*
0002   This file is part of KOrganizer.
0003   SPDX-FileCopyrightText: 2001 Cornelius Schumacher <schumacher@kde.org>
0004   SPDX-FileCopyrightText: 2007 Loïc Corbasson <loic.corbasson@gmail.com>
0005 
0006   SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #pragma once
0010 
0011 #include <EventViews/CalendarDecoration>
0012 
0013 using namespace EventViews::CalendarDecoration;
0014 
0015 class ThisDayInHistory : public Decoration
0016 {
0017 public:
0018     ThisDayInHistory(QObject *parent = nullptr, const QVariantList &args = {});
0019 
0020     [[nodiscard]] Element::List createDayElements(const QDate &) override;
0021     [[nodiscard]] Element::List createMonthElements(const QDate &) override;
0022 
0023     //    void configure( QWidget *parent );
0024 
0025     [[nodiscard]] QString info() const override;
0026 };