mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
76 lines
2.2 KiB
C++
76 lines
2.2 KiB
C++
/*
|
|
* templatedlg.h - dialog to create, edit and delete alarm templates
|
|
* Program: kalarm
|
|
* Copyright © 2004,2006,2007,2010 by David Jarvie <djarvie@kde.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
#ifndef TEMPLATEDLG_H
|
|
#define TEMPLATEDLG_H
|
|
|
|
#include "editdlg.h"
|
|
#include <kdialog.h>
|
|
|
|
#include <QResizeEvent>
|
|
#include <QPushButton>
|
|
class NewAlarmAction;
|
|
#ifdef USE_AKONADI
|
|
class TemplateListModel;
|
|
#else
|
|
class TemplateListFilterModel;
|
|
#endif
|
|
class TemplateListView;
|
|
|
|
|
|
class TemplateDlg : public KDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
static TemplateDlg* create(QWidget* parent = 0);
|
|
~TemplateDlg();
|
|
|
|
signals:
|
|
void emptyToggled(bool notEmpty);
|
|
|
|
protected:
|
|
virtual void resizeEvent(QResizeEvent*);
|
|
|
|
private slots:
|
|
void slotNew(EditAlarmDlg::Type);
|
|
void slotCopy();
|
|
void slotEdit();
|
|
void slotDelete();
|
|
void slotSelectionChanged();
|
|
|
|
private:
|
|
explicit TemplateDlg(QWidget* parent);
|
|
|
|
static TemplateDlg* mInstance; // the current instance, to prevent multiple dialogues
|
|
|
|
#ifdef USE_AKONADI
|
|
TemplateListModel* mListFilterModel;
|
|
#else
|
|
TemplateListFilterModel* mListFilterModel;
|
|
#endif
|
|
TemplateListView* mListView;
|
|
QPushButton* mEditButton;
|
|
QPushButton* mCopyButton;
|
|
QPushButton* mDeleteButton;
|
|
NewAlarmAction* mNewAction;
|
|
};
|
|
|
|
#endif // TEMPLATEDLG_H
|
|
|
|
// vim: et sw=4:
|