knotes

knotealarmdlg.h
1 /*******************************************************************
2  KNotes -- Notes for the KDE project
3 
4  Copyright (c) 2005, Michael Brade <brade@kde.org>
5 
6  This program is free software; you can redistribute it and/or
7  modify it under the terms of the GNU General Public License
8  as published by the Free Software Foundation; either version 2
9  of the License, or (at your option) any later version.
10 
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with this program; if not, write to the Free Software
18  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 
20  In addition, as a special exception, the copyright holders give
21  permission to link the code of this program with any edition of
22  the TQt library by Trolltech AS, Norway (or with modified versions
23  of TQt that use the same license as TQt), and distribute linked
24  combinations including the two. You must obey the GNU General
25  Public License in all respects for all of the code used other than
26  TQt. If you modify this file, you may extend this exception to
27  your version of the file, but you are not obligated to do so. If
28  you do not wish to do so, delete this exception statement from
29  your version.
30 *******************************************************************/
31 
32 #ifndef KNOTEALARMDLG_H
33 #define KNOTEALARMDLG_H
34 
35 #include <kdialogbase.h>
36 
37 class TQButtonGroup;
38 class KDateEdit;
39 class KTimeEdit;
40 
41 namespace KCal {
42  class Journal;
43 }
44 
45 
46 class KNoteAlarmDlg : public KDialogBase
47 {
48  TQ_OBJECT
49 
50 public:
51  KNoteAlarmDlg( const TQString& caption, TQWidget *parent=0, const char *name=0 );
52 
53  void setIncidence( KCal::Journal *journal );
54 
55 protected:
56  virtual void slotOk();
57 
58 private slots:
59  void slotButtonChanged( int id );
60 
61 private:
62  TQButtonGroup *m_buttons;
63  KCal::Journal *m_journal;
64 
65  KDateEdit *m_atDate;
66  KTimeEdit *m_atTime, *m_inTime;
67 };
68 
69 #endif