Warning, file /pim/kalarm/src/templatelistview.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002  *  templatelistview.h  -  widget showing list of alarm templates
0003  *  Program:  kalarm
0004  *  SPDX-FileCopyrightText: 2007-2021 David Jarvie <djarvie@kde.org>
0005  *
0006  *  SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 
0009 #pragma once
0010 
0011 #include "eventlistview.h"
0012 
0013 
0014 class TemplateListView : public EventListView
0015 {
0016     Q_OBJECT
0017 public:
0018     explicit TemplateListView(QWidget* parent = nullptr);
0019 
0020 protected Q_SLOTS:
0021     void initSections() override;
0022 };
0023 
0024 
0025 class TemplateListDelegate : public EventListDelegate
0026 {
0027     Q_OBJECT
0028 public:
0029     explicit TemplateListDelegate(TemplateListView* parent = nullptr)
0030                : EventListDelegate(parent) {}
0031     void edit(KAEvent&, EventListView*) override;
0032 };
0033 
0034 // vim: et sw=4: