~ubuntu-branches/ubuntu/quantal/kdepim/quantal

« back to all changes in this revision

Viewing changes to calendarsupport/archivedialog.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:51 UTC
  • mto: This revision was merged to the branch mainline in revision 193.
  • Revision ID: package-import@ubuntu.com-20111215141751-bmhdpiwl23wd9w26
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
  This file is part of KOrganizer.
3
 
 
4
2
  Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>
5
3
  Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
6
4
 
22
20
  with any edition of Qt, and distribute the resulting executable,
23
21
  without including the source code for Qt in the source distribution.
24
22
*/
25
 
#ifndef ARCHIVEDIALOG_H
26
 
#define ARCHIVEDIALOG_H
 
23
#ifndef CALENDARSUPPORT_ARCHIVEDIALOG_H
 
24
#define CALENDARSUPPORT_ARCHIVEDIALOG_H
27
25
 
28
26
#include "calendarsupport_export.h"
29
 
 
30
 
#include <calendarsupport/incidencechanger.h>
31
 
 
32
 
#include <kdialog.h>
33
 
 
34
 
class QRadioButton;
 
27
#include "incidencechanger.h"
 
28
 
 
29
#include <KDialog>
 
30
 
35
31
class KComboBox;
 
32
class KDateComboBox;
36
33
class KIntNumInput;
37
34
class KUrlRequester;
 
35
 
38
36
class QCheckBox;
 
37
class QRadioButton;
39
38
 
40
 
namespace KPIM {
41
 
class KDateEdit;
42
 
}
43
39
namespace KOrg {
44
 
class IncidenceChanger;
 
40
  class IncidenceChanger;
45
41
}
46
42
 
47
43
namespace CalendarSupport {
52
48
{
53
49
  Q_OBJECT
54
50
  public:
55
 
    explicit ArchiveDialog( CalendarSupport::Calendar *calendar, CalendarSupport::IncidenceChanger* changer, QWidget *parent=0 );
 
51
    explicit ArchiveDialog( CalendarSupport::Calendar *calendar,
 
52
                            CalendarSupport::IncidenceChanger *changer, QWidget *parent=0 );
56
53
    virtual ~ArchiveDialog();
57
54
 
58
55
  signals:
68
65
 
69
66
  private:
70
67
    KUrlRequester *mArchiveFile;
71
 
    KPIM::KDateEdit *mDateEdit;
 
68
    KDateComboBox *mDateEdit;
72
69
    QCheckBox *mDeleteCb;
73
70
    QRadioButton *mArchiveOnceRB;
74
71
    QRadioButton *mAutoArchiveRB;